From abd14e037066c69b1b7fa18135c8eb9f1f5b3e15 Mon Sep 17 00:00:00 2001 From: Ivan Razumov Date: Fri, 17 May 2024 12:27:54 +0200 Subject: [PATCH] Add files needed for testing process_pr.py; modify existing tests to play nicely with pytest --- pygithub_wrappers.py | 72 + repos/iarspider_cmssw/__init__.py | 0 repos/iarspider_cmssw/cmssw/__init__.py | 0 repos/iarspider_cmssw/cmssw/categories.py | 205 ++ .../cmssw/category-watchers.yaml | 18 + repos/iarspider_cmssw/cmssw/groups.yaml | 33 + repos/iarspider_cmssw/cmssw/l2.json | 2536 +++++++++++++++++ repos/iarspider_cmssw/cmssw/milestones.py | 69 + repos/iarspider_cmssw/cmssw/releases.py | 32 + repos/iarspider_cmssw/cmssw/repo_config.py | 33 + repos/iarspider_cmssw/cmssw/watchers.yaml | 1825 ++++++++++++ tests/Framework.py | 376 +++ .../TestProcessPr.test_abort.json | 145 + .../TestProcessPr.test_assign.json | 105 + .../TestProcessPr.test_clean_squash.json | 210 ++ .../TestProcessPr.test_close.json | 123 + ...estProcessPr.test_code_check_approved.json | 61 + .../TestProcessPr.test_dirty_squash.json | 213 ++ .../PRActionData/TestProcessPr.test_hold.json | 86 + .../TestProcessPr.test_invalid_type.json | 137 + .../TestProcessPr.test_many_commits.json | 0 .../TestProcessPr.test_many_commits_ok.json | 71 + .../TestProcessPr.test_many_commits_warn.json | 13 + .../TestProcessPr.test_new_pr.json | 69 + .../TestProcessPr.test_partial_reset.json | 99 + .../TestProcessPr.test_reopen.json | 132 + .../TestProcessPr.test_reset_signature.json | 103 + .../TestProcessPr.test_revert.json | 108 + .../TestProcessPr.test_run_test_params.json | 148 + .../TestProcessPr.test_sign_core.json | 61 + .../TestProcessPr.test_sign_reject.json | 204 ++ .../TestProcessPr.test_start_tests.json | 123 + .../TestProcessPr.test_test_params.json | 128 + .../TestProcessPr.test_tests_passed.json | 112 + .../TestProcessPr.test_tests_rejected.json | 75 + .../TestProcessPr.test_too_many_commits.json | 1083 +++++++ .../TestProcessPr.test_unassign.json | 109 + .../TestProcessPr.test_unhold.json | 91 + .../TestProcessPr.test_valid_type.json | 148 + tests/ReplayData/TestProcessPr.test_abort.txt | 110 + .../ReplayData/TestProcessPr.test_assign.txt | 99 + .../TestProcessPr.test_clean_squash.txt | 132 + tests/ReplayData/TestProcessPr.test_close.txt | 99 + ...TestProcessPr.test_code_check_approved.txt | 99 + .../TestProcessPr.test_dirty_squash.txt | 132 + tests/ReplayData/TestProcessPr.test_hold.txt | 99 + .../TestProcessPr.test_invalid_type.txt | 99 + .../TestProcessPr.test_many_commits.txt | 77 + .../TestProcessPr.test_many_commits_ok.txt | 1782 ++++++++++++ .../TestProcessPr.test_many_commits_warn.txt | 132 + .../ReplayData/TestProcessPr.test_new_pr.txt | 121 + .../TestProcessPr.test_partial_reset.txt | 110 + .../ReplayData/TestProcessPr.test_reopen.txt | 99 + .../TestProcessPr.test_reset_signature.txt | 110 + .../ReplayData/TestProcessPr.test_revert.txt | 110 + .../TestProcessPr.test_run_test_params.txt | 99 + .../TestProcessPr.test_sign_core.txt | 99 + .../TestProcessPr.test_sign_reject.txt | 99 + .../TestProcessPr.test_start_tests.txt | 99 + .../TestProcessPr.test_test_params.txt | 99 + .../TestProcessPr.test_tests_passed.txt | 99 + .../TestProcessPr.test_tests_rejected.txt | 99 + .../TestProcessPr.test_too_many_commits.txt | 132 + .../TestProcessPr.test_unassign.txt | 99 + .../ReplayData/TestProcessPr.test_unhold.txt | 99 + .../TestProcessPr.test_valid_type.txt | 99 + tests/conftest.py | 40 + tests/test-requirements.txt | 4 + tests/test_process_pr.py | 269 ++ tests/test_watchers.py | 99 +- 70 files changed, 14055 insertions(+), 45 deletions(-) create mode 100644 pygithub_wrappers.py create mode 100644 repos/iarspider_cmssw/__init__.py create mode 100644 repos/iarspider_cmssw/cmssw/__init__.py create mode 100644 repos/iarspider_cmssw/cmssw/categories.py create mode 100644 repos/iarspider_cmssw/cmssw/category-watchers.yaml create mode 100644 repos/iarspider_cmssw/cmssw/groups.yaml create mode 100644 repos/iarspider_cmssw/cmssw/l2.json create mode 100644 repos/iarspider_cmssw/cmssw/milestones.py create mode 100644 repos/iarspider_cmssw/cmssw/releases.py create mode 100644 repos/iarspider_cmssw/cmssw/repo_config.py create mode 100644 repos/iarspider_cmssw/cmssw/watchers.yaml create mode 100644 tests/Framework.py create mode 100644 tests/PRActionData/TestProcessPr.test_abort.json create mode 100644 tests/PRActionData/TestProcessPr.test_assign.json create mode 100644 tests/PRActionData/TestProcessPr.test_clean_squash.json create mode 100644 tests/PRActionData/TestProcessPr.test_close.json create mode 100644 tests/PRActionData/TestProcessPr.test_code_check_approved.json create mode 100644 tests/PRActionData/TestProcessPr.test_dirty_squash.json create mode 100644 tests/PRActionData/TestProcessPr.test_hold.json create mode 100644 tests/PRActionData/TestProcessPr.test_invalid_type.json create mode 100644 tests/PRActionData/TestProcessPr.test_many_commits.json create mode 100644 tests/PRActionData/TestProcessPr.test_many_commits_ok.json create mode 100644 tests/PRActionData/TestProcessPr.test_many_commits_warn.json create mode 100644 tests/PRActionData/TestProcessPr.test_new_pr.json create mode 100644 tests/PRActionData/TestProcessPr.test_partial_reset.json create mode 100644 tests/PRActionData/TestProcessPr.test_reopen.json create mode 100644 tests/PRActionData/TestProcessPr.test_reset_signature.json create mode 100644 tests/PRActionData/TestProcessPr.test_revert.json create mode 100644 tests/PRActionData/TestProcessPr.test_run_test_params.json create mode 100644 tests/PRActionData/TestProcessPr.test_sign_core.json create mode 100644 tests/PRActionData/TestProcessPr.test_sign_reject.json create mode 100644 tests/PRActionData/TestProcessPr.test_start_tests.json create mode 100644 tests/PRActionData/TestProcessPr.test_test_params.json create mode 100644 tests/PRActionData/TestProcessPr.test_tests_passed.json create mode 100644 tests/PRActionData/TestProcessPr.test_tests_rejected.json create mode 100644 tests/PRActionData/TestProcessPr.test_too_many_commits.json create mode 100644 tests/PRActionData/TestProcessPr.test_unassign.json create mode 100644 tests/PRActionData/TestProcessPr.test_unhold.json create mode 100644 tests/PRActionData/TestProcessPr.test_valid_type.json create mode 100644 tests/ReplayData/TestProcessPr.test_abort.txt create mode 100644 tests/ReplayData/TestProcessPr.test_assign.txt create mode 100644 tests/ReplayData/TestProcessPr.test_clean_squash.txt create mode 100644 tests/ReplayData/TestProcessPr.test_close.txt create mode 100644 tests/ReplayData/TestProcessPr.test_code_check_approved.txt create mode 100644 tests/ReplayData/TestProcessPr.test_dirty_squash.txt create mode 100644 tests/ReplayData/TestProcessPr.test_hold.txt create mode 100644 tests/ReplayData/TestProcessPr.test_invalid_type.txt create mode 100644 tests/ReplayData/TestProcessPr.test_many_commits.txt create mode 100644 tests/ReplayData/TestProcessPr.test_many_commits_ok.txt create mode 100644 tests/ReplayData/TestProcessPr.test_many_commits_warn.txt create mode 100644 tests/ReplayData/TestProcessPr.test_new_pr.txt create mode 100644 tests/ReplayData/TestProcessPr.test_partial_reset.txt create mode 100644 tests/ReplayData/TestProcessPr.test_reopen.txt create mode 100644 tests/ReplayData/TestProcessPr.test_reset_signature.txt create mode 100644 tests/ReplayData/TestProcessPr.test_revert.txt create mode 100644 tests/ReplayData/TestProcessPr.test_run_test_params.txt create mode 100644 tests/ReplayData/TestProcessPr.test_sign_core.txt create mode 100644 tests/ReplayData/TestProcessPr.test_sign_reject.txt create mode 100644 tests/ReplayData/TestProcessPr.test_start_tests.txt create mode 100644 tests/ReplayData/TestProcessPr.test_test_params.txt create mode 100644 tests/ReplayData/TestProcessPr.test_tests_passed.txt create mode 100644 tests/ReplayData/TestProcessPr.test_tests_rejected.txt create mode 100644 tests/ReplayData/TestProcessPr.test_too_many_commits.txt create mode 100644 tests/ReplayData/TestProcessPr.test_unassign.txt create mode 100644 tests/ReplayData/TestProcessPr.test_unhold.txt create mode 100644 tests/ReplayData/TestProcessPr.test_valid_type.txt create mode 100644 tests/conftest.py create mode 100644 tests/test-requirements.txt create mode 100644 tests/test_process_pr.py diff --git a/pygithub_wrappers.py b/pygithub_wrappers.py new file mode 100644 index 000000000000..dd9159f5f393 --- /dev/null +++ b/pygithub_wrappers.py @@ -0,0 +1,72 @@ +import github + +dryRun = False +actions = [] +extra_data = "" + +github__issuecomment__edit = github.IssueComment.IssueComment.edit + + +def comment__edit(self, body): + actions.append({"type": "edit-comment", "data": body}) + if dryRun: + print("DRY RUN: Updating existing comment with text") + print(body.encode("ascii", "ignore").decode()) + else: + return github__issuecomment__edit(self, body) + + +github.IssueComment.IssueComment.edit = comment__edit + + +github__issue__create_comment = github.Issue.Issue.create_comment + + +def issue__create_comment(self, body): + actions.append({"type": "create-comment", "data": body}) + if dryRun: + print("DRY RUN: Creating comment with text") + print(body.encode("ascii", "ignore").decode()) + else: + github__issue__create_comment(self, body) + + +github.Issue.Issue.create_comment = issue__create_comment + + +github__commit__create_status = github.Commit.Commit.create_status + + +def commit__create_status(self, state, target_url=None, description=None, context=None): + actions.append( + { + "type": "status", + "data": { + "commit": commit.sha, + "state": state, + "target_url": target_url, + "description": description, + "context": context, + }, + } + ) + + if target_url is None: + target_url = github.GithubObject.NotSet + + if description is None: + description = github.GithubObject.NotSet + + if context is None: + context = github.GithubObject.NotSet + + if not dryRun: + github__commit__create_status.create_status( + self, state, target_url=target_url, description=description, context=context + ) + else: + print( + "DRY RUN: set commit status state={0}, target_url={1}, description={2}, context={3}".format( + state, target_url, description, context + ) + ) diff --git a/repos/iarspider_cmssw/__init__.py b/repos/iarspider_cmssw/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/repos/iarspider_cmssw/cmssw/__init__.py b/repos/iarspider_cmssw/cmssw/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/repos/iarspider_cmssw/cmssw/categories.py b/repos/iarspider_cmssw/cmssw/categories.py new file mode 100644 index 000000000000..6a63731dcecd --- /dev/null +++ b/repos/iarspider_cmssw/cmssw/categories.py @@ -0,0 +1,205 @@ +# A ridicously long mapping for categories. Good enough for now. +from categories_map import CMSSW_CATEGORIES, CMSSW_LABELS +from cms_static import GH_CMSDIST_REPO as gh_cmsdist +from cms_static import GH_CMSSW_ORGANIZATION as gh_user +from cms_static import GH_CMSSW_REPO as gh_cmssw +from releases import SPECIAL_RELEASE_MANAGERS +from repo_config import CMSBUILD_USER + +authors = {} +# Any Githib user whose comments/requests should be ignored +GITHUB_BLACKLIST_AUTHORS = [] +# CMS Offline Release Planning managers +CMSSW_L1 = ["iarspider"] +# CMS-SDT members who has admin rights to various github organizations and repositories. +# They are also reposionsible to sign for externals +CMS_SDT = ["iarspider"] +# List of gh users who can approve a release build request +APPROVE_BUILD_RELEASE = list(set(["smuzaffar"] + CMSSW_L1 + SPECIAL_RELEASE_MANAGERS)) +# List of gh users who can request to build a release. +REQUEST_BUILD_RELEASE = APPROVE_BUILD_RELEASE +# List og gh users who are allowed to trigger Pull Request testing +TRIGGER_PR_TESTS = list( + set( + [ + "felicepantaleo", + "rovere", + "lgray", + "bsunanda", + "VinInn", + "kpedro88", + "makortel", + "wddgit", + "mtosi", + "gpetruc", + "gartung", + "nsmith-", + "mmusich", + "Sam-Harper", + "sroychow", + "silviodonato", + "slava77", + ] + + REQUEST_BUILD_RELEASE + + [a for a in authors if authors[a] > 10 and a not in GITHUB_BLACKLIST_AUTHORS] + ) +) +# List of on additional release managers +PR_HOLD_MANAGERS = ["kpedro88"] + +COMMON_CATEGORIES = ["orp", "tests", "code-checks"] +EXTERNAL_CATEGORIES = ["externals"] +EXTERNAL_REPOS = ["cms-data", "cms-externals", gh_user, "iarspider-cmssw"] + +CMSSW_REPOS = [gh_user + "/" + gh_cmssw] +CMSDIST_REPOS = [gh_user + "/" + gh_cmsdist] +CMSSW_ISSUES_TRACKERS = list(set(CMSSW_L1 + ["smuzaffar", "Dr15Jones", "makortel"])) +COMPARISON_MISSING_MAP = ["slava77"] + +# CMS L2's and the CMSSW categories they are responsible for. They can also request to start pull requests testing +CMSSW_L2 = { + "Dr15Jones": ["core", "visualization", "geometry"], + "Martin-Grunewald": ["hlt"], + "mmusich": ["hlt"], + "AdrianoDee": ["pdmv"], + "alberto-sanchez": ["generators"], + "alja": ["visualization"], + "bbilin": ["generators"], + "civanch": ["simulation", "geometry", "fastsim"], + "bsunanda": ["geometry"], + "davidlange6": ["operations"], + "emeschi": ["daq"], + "vlimant": ["xpog"], + "hqucms": ["xpog"], + "fwyzard": ["heterogeneous"], + "GurpreetSinghChahal": ["generators"], + "jfernan2": ["reconstruction"], + "kskovpen": ["pdmv"], + "sunilUIET": ["pdmv"], + "miquork": ["pdmv", "jetmet-pog"], + "makortel": ["heterogeneous", "core", "visualization", "geometry"], + "mandrenguyen": ["reconstruction"], + "mdhildreth": ["simulation", "geometry", "fastsim"], + "mkirsano": ["generators"], + "menglu21": ["generators"], + "rappoccio": ["operations"], + "antoniovilela": ["operations"], + "epalencia": ["l1"], + "aloeliger": ["l1"], + "rvenditti": ["dqm"], + "syuvivida": ["dqm"], + "tjavaid": ["dqm"], + "nothingface0": ["dqm"], + "antoniovagnerini": ["dqm"], + "sbein": ["fastsim"], + "SiewYan": ["generators"], + "smorovic": ["daq"], + "smuzaffar": ["core"], + "srimanob": ["upgrade"], + "subirsarkar": ["upgrade"], + "ssekmen": ["fastsim"], + "francescobrivio": ["db"], + "tvami": ["analysis"], + "saumyaphor4252": ["alca", "db"], + "perrotta": ["alca", "db"], + "consuegs": ["alca", "db"], + CMSBUILD_USER: ["tests"], + # dpgs + "connorpa": ["trk-dpg"], + "sroychow": ["trk-dpg"], + "wang0jin": ["ecal-dpg"], + "thomreis": ["ecal-dpg"], + "wang-hui": ["hcal-dpg"], + "jhakala": ["hcal-dpg"], + "abdoulline": ["hcal-dpg"], + "igv4321": ["hcal-dpg"], + "mileva": ["muon-dpg"], + "battibass": ["muon-dpg", "dt-dpg"], + "fcavallo": ["dt-dpg"], + "namapane": ["dt-dpg"], + "ptcox": ["csc-dpg"], + "jhgoh": ["rpc-dpg"], + "andresib": ["rpc-dpg"], + "pavlov": ["rpc-dpg"], + "kamon": ["gem-dpg"], + "jshlee": ["gem-dpg"], + "watson-ij": ["gem-dpg"], + "fabferro": ["ctpps-dpg"], + "jan-kaspar": ["ctpps-dpg"], + "vavati": ["ctpps-dpg"], + "rovere": ["hgcal-dpg"], + "cseez": ["hgcal-dpg"], + "pfs": ["hgcal-dpg"], + "felicepantaleo": ["hgcal-dpg"], + "fabiocos": ["mtd-dpg", "operations"], + "MartinaMalberti": ["mtd-dpg"], + "parbol": ["mtd-dpg"], + # pogs + "bellan": ["pf"], + "kdlong": ["pf"], + "swagata87": ["pf"], + "a-kapoor": ["egamma-pog"], + "RSalvatico": ["egamma-pog"], + "kirschen": ["jetmet-pog"], + "alkaloge": ["jetmet-pog"], + "knollejo": ["lumi-pog"], + "cschwick": ["lumi-pog"], + "gkaratha": ["muon-pog"], + "JanFSchulte": ["muon-pog"], + "SWuchterl": ["btv-pog"], + "mondalspandan": ["btv-pog"], + "michael-pitt": ["proton-pog"], + "kshcheli": ["proton-pog"], + "cardinia": ["tau-pog"], + "danielwinterbottom": ["tau-pog"], + "slava77": ["tracking-pog"], + "kskovpen": ["tracking-pog"], + # PPD + "malbouis": ["ppd"], + "jordan-martins": ["ppd"], + # ML + "valsdav": ["ml"], + "wpmccormack": ["ml"], +} + +# All CMS_SDT members can sign externals ( e.g Pull Requests in cms-sw/cmsdist , cms-data and cms-externals +for user in CMS_SDT: + if user not in CMSSW_L2: + CMSSW_L2[user] = ["externals"] + elif "externals" not in CMSSW_L2[user]: + CMSSW_L2[user].append("externals") + +# All CMSSW L1 can sign for ORP +for user in CMSSW_L1: + if user not in CMSSW_L2: + CMSSW_L2[user] = ["orp"] + else: + CMSSW_L2[user].append("orp") + +USERS_TO_TRIGGER_HOOKS = set(TRIGGER_PR_TESTS + CMSSW_ISSUES_TRACKERS + list(CMSSW_L2.keys())) +CMS_REPOS = set(CMSDIST_REPOS + CMSSW_REPOS + EXTERNAL_REPOS) + +for user in CMSSW_L2: + for cat in CMSSW_L2[user]: + if cat not in CMSSW_CATEGORIES: + CMSSW_CATEGORIES[cat] = [] + + +def external_to_package(repo_fullname): + org, repo = repo_fullname.split("/", 1) + if org == "cms-data": + return repo.replace("-", "/") + return "" + + +# extra labels which bot cn add via 'type label' comment +def get_dpg_pog(): + groups = ["pf", "l1t", "castor"] + for user in CMSSW_L2: + for cat in CMSSW_L2[user]: + if "-" not in cat: + continue + grp, ctype = cat.split("-", 1) + if ctype in ["pog", "dpg"]: + groups.append(grp) + return list(set(groups)) diff --git a/repos/iarspider_cmssw/cmssw/category-watchers.yaml b/repos/iarspider_cmssw/cmssw/category-watchers.yaml new file mode 100644 index 000000000000..2935d31c42bc --- /dev/null +++ b/repos/iarspider_cmssw/cmssw/category-watchers.yaml @@ -0,0 +1,18 @@ +# Map between github username and the list of cmssw categories to watch e.g. alca, db, core etc. +# valid categories are available here http://cms-sw.github.io/categories.html +tocheng: +- alca +mmusich: +- alca +- db +silviodonato: +- hlt +PonIlya: +- db +yuanchao: +- alca +- db +rsreds: +- alca +- db + diff --git a/repos/iarspider_cmssw/cmssw/groups.yaml b/repos/iarspider_cmssw/cmssw/groups.yaml new file mode 100644 index 000000000000..ae640fab62da --- /dev/null +++ b/repos/iarspider_cmssw/cmssw/groups.yaml @@ -0,0 +1,33 @@ +tracking-pog: + - VinInn + - mtosi + - JanFSchulte + - mmusich + - VourMa +btv-pog: + - JyothsnaKomaragiri + - emilbols + - andrzejnovak + - demuller + - AlexDeMoor + - AnnikaStein + - Ming-Yan + - Senphy +ecal-offline: + - wang0jin + - thomreis + - ReyerBand +pixel-offline: + - dkotlins + - ferencek + - tvami + - mroguljic +trk-dqm: + - arossi83 + - sroychow +tau-pog: + - mbluj + - azotz +muon-reco: + - CeliaFernandez + - andrea21z diff --git a/repos/iarspider_cmssw/cmssw/l2.json b/repos/iarspider_cmssw/cmssw/l2.json new file mode 100644 index 000000000000..07fa418dbfd0 --- /dev/null +++ b/repos/iarspider_cmssw/cmssw/l2.json @@ -0,0 +1,2536 @@ +{ + "AdrianoDee": [ + { + "category": [ + "upgrade" + ], + "end_date": 1691539200, + "start_date": 1629936000 + }, + { + "category": [ + "upgrade", + "pdmv" + ], + "end_date": 1700524800, + "start_date": 1691539200 + }, + { + "category": [ + "pdmv" + ], + "start_date": 1700524800 + } + ], + "ChrisMisan": [ + { + "category": [ + "alca" + ], + "end_date": 1678147200, + "start_date": 1656892800 + } + ], + "Dr15Jones": [ + { + "category": [ + "core", + "visualization", + "geometry" + ], + "start_date": 1377043200 + } + ], + "ErnestaP": [ + { + "category": [ + "dqm" + ], + "end_date": 1600300800, + "start_date": 1600214400 + } + ], + "GurpreetSinghChahal": [ + { + "category": [ + "pdmv" + ], + "end_date": 1536796800, + "start_date": 1488153600 + }, + { + "category": [ + "generators" + ], + "start_date": 1588377600 + } + ], + "JanFSchulte": [ + { + "category": [ + "muon-pog" + ], + "start_date": 1662422400 + } + ], + "Martin-Grunewald": [ + { + "category": [ + "hlt" + ], + "start_date": 1377043200 + } + ], + "MartinaMalberti": [ + { + "category": [ + "mtd-dpg" + ], + "start_date": 1698278400 + } + ], + "RSalvatico": [ + { + "category": [ + "egamma-pog" + ], + "start_date": 1687478400 + } + ], + "SWuchterl": [ + { + "category": [ + "btv-pog" + ], + "start_date": 1693353600 + } + ], + "Saptaparna": [ + { + "category": [ + "generators" + ], + "end_date": 1694649600, + "start_date": 1626393600 + } + ], + "SiewYan": [ + { + "category": [ + "generators" + ], + "start_date": 1569456000 + } + ], + "StoyanStoynev": [ + { + "category": [ + "reconstruction" + ], + "end_date": 1420588800, + "start_date": 1400630400 + } + ], + "YuanChao": [ + { + "category": [ + "alca" + ], + "end_date": 1601596800, + "start_date": 1600905600 + } + ], + "a-kapoor": [ + { + "category": [ + "egamma-pog" + ], + "start_date": 1670112000 + } + ], + "aandvalenzuela": [ + { + "category": [ + "externals" + ], + "start_date": 1649030400 + } + ], + "abdoulline": [ + { + "category": [ + "hcal-dpg" + ], + "start_date": 1691020800 + } + ], + "adrianodee": [ + { + "category": [ + "upgrade" + ], + "end_date": 1629936000, + "start_date": 1627689600 + } + ], + "agrohsje": [ + { + "category": [ + "generators" + ], + "end_date": 1642550400, + "start_date": 1557187200 + } + ], + "ahmad3213": [ + { + "category": [ + "dqm" + ], + "end_date": 1675555200, + "start_date": 1611532800 + } + ], + "alberto-sanchez": [ + { + "category": [ + "generators" + ], + "start_date": 1524528000 + } + ], + "alebihan": [ + { + "category": [ + "tau-pog" + ], + "end_date": 1701648000, + "start_date": 1632873600 + } + ], + "alja": [ + { + "category": [ + "visualization" + ], + "start_date": 1382572800 + } + ], + "alkaloge": [ + { + "category": [ + "jetmet-pog" + ], + "start_date": 1652403702 + } + ], + "aloeliger": [ + { + "category": [ + "l1" + ], + "start_date": 1676937600 + } + ], + "andresib": [ + { + "category": [ + "rpc-dpg" + ], + "start_date": 1618272000 + } + ], + "andrius-k": [ + { + "category": [ + "dqm" + ], + "end_date": 1631491200, + "start_date": 1531440000 + } + ], + "anton-a": [ + { + "category": [ + "reconstruction" + ], + "end_date": 1400630400, + "start_date": 1386892800 + } + ], + "antoniovagnerini": [ + { + "category": [ + "dqm" + ], + "start_date": 1695772800 + } + ], + "antoniovilela": [ + { + "category": [ + "operations", + "orp", + "orp" + ], + "start_date": 1692144000 + } + ], + "apfeiffer1": [ + { + "category": [ + "db" + ], + "end_date": 1421798400, + "start_date": 1377043200 + } + ], + "arizzi": [ + { + "category": [ + "xpog" + ], + "end_date": 1519776000, + "start_date": 1519603200 + }, + { + "category": [ + "analysis" + ], + "end_date": 1540512000, + "start_date": 1519776000 + } + ], + "arunhep": [ + { + "category": [ + "alca" + ], + "end_date": 1536537600, + "start_date": 1479254400 + } + ], + "battibass": [ + { + "category": [ + "dt-dpg" + ], + "end_date": 1632873600, + "start_date": 1618272000 + }, + { + "category": [ + "muon-dpg", + "dt-dpg" + ], + "start_date": 1632873600 + } + ], + "bbilin": [ + { + "category": [ + "pdmv" + ], + "end_date": 1694649600, + "start_date": 1626134400 + }, + { + "category": [ + "generators" + ], + "start_date": 1694649600 + } + ], + "bellan": [ + { + "category": [ + "pf" + ], + "start_date": 1687478400 + } + ], + "bendavid": [ + { + "category": [ + "generators" + ], + "end_date": 1458691200, + "start_date": 1387584000 + } + ], + "benkrikler": [ + { + "category": [ + "l1" + ], + "end_date": 1603152000, + "start_date": 1559952000 + } + ], + "boudoul": [ + { + "category": [ + "pdmv" + ], + "end_date": 1458691200, + "start_date": 1416355200 + } + ], + "broen": [ + { + "category": [ + "dqm" + ], + "end_date": 1442793600, + "start_date": 1442534400 + } + ], + "bsunanda": [ + { + "category": [ + "geometry" + ], + "start_date": 1656979200 + } + ], + "camclean": [ + { + "category": [ + "jetmet-pog" + ], + "end_date": 1652400000, + "start_date": 1632873600 + } + ], + "cardinia": [ + { + "category": [ + "tau-pog" + ], + "start_date": 1701648000 + } + ], + "cecilecaillol": [ + { + "category": [ + "l1" + ], + "end_date": 1685491200, + "start_date": 1614124800 + } + ], + "cerminar": [ + { + "category": [ + "operations" + ], + "end_date": 1391385600, + "start_date": 1387497600 + }, + { + "category": [ + "alca" + ], + "end_date": 1531872000, + "start_date": 1407801600 + } + ], + "chayanit": [ + { + "category": [ + "pdmv" + ], + "end_date": 1631836800, + "start_date": 1565222400 + } + ], + "christopheralanwest": [ + { + "category": [ + "alca" + ], + "end_date": 1619827200, + "start_date": 1554854400 + } + ], + "civanch": [ + { + "category": [ + "simulation" + ], + "end_date": 1379462400, + "start_date": 1377043200 + }, + { + "category": [ + "simulation", + "geometry" + ], + "end_date": 1406160000, + "start_date": 1379462400 + }, + { + "category": [ + "simulation", + "geometry", + "fastsim" + ], + "start_date": 1406160000 + } + ], + "clacaputo": [ + { + "category": [ + "reconstruction" + ], + "end_date": 1693526400, + "start_date": 1639008000 + } + ], + "cmsbuild": [ + { + "category": [ + "tests" + ], + "end_date": 1503360000, + "start_date": 1383523200 + }, + { + "category": [ + "tests", + "code-checks" + ], + "end_date": 1556928000, + "start_date": 1503360000 + }, + { + "category": [ + "tests" + ], + "start_date": 1556928000 + } + ], + "cmsdoxy": [ + { + "category": [ + "docs" + ], + "end_date": 1594252800, + "start_date": 1377734400 + } + ], + "connorpa": [ + { + "category": [ + "trk-dpg" + ], + "start_date": 1632787200 + } + ], + "consuegs": [ + { + "category": [ + "alca", + "db" + ], + "start_date": 1687996800 + } + ], + "covarell": [ + { + "category": [ + "generators" + ], + "end_date": 1473033600, + "start_date": 1413331200 + } + ], + "cschwick": [ + { + "category": [ + "lumi-pog" + ], + "start_date": 1632873600 + } + ], + "cseez": [ + { + "category": [ + "hgcal-dpg" + ], + "start_date": 1618272000 + } + ], + "cvuosalo": [ + { + "category": [ + "reconstruction" + ], + "end_date": 1488499200, + "start_date": 1420588800 + }, + { + "category": [ + "geometry" + ], + "end_date": 1656979200, + "start_date": 1534377600 + } + ], + "danduggan": [ + { + "category": [ + "dqm" + ], + "end_date": 1442793600, + "start_date": 1378944000 + }, + { + "category": [ + "dqm", + "pdmv" + ], + "end_date": 1448496000, + "start_date": 1442793600 + } + ], + "danielwinterbottom": [ + { + "category": [ + "tau-pog" + ], + "start_date": 1701648000 + } + ], + "davidlange6": [ + { + "category": [ + "orp" + ], + "end_date": 1391385600, + "start_date": 1379635200 + }, + { + "category": [ + "operations", + "orp" + ], + "end_date": 1458691200, + "start_date": 1391385600 + }, + { + "category": [ + "operations", + "analysis", + "orp" + ], + "end_date": 1471478400, + "start_date": 1458691200 + }, + { + "category": [ + "operations", + "orp" + ], + "end_date": 1585094400, + "start_date": 1471478400 + }, + { + "category": [ + "operations" + ], + "start_date": 1585094400 + } + ], + "ddaina": [ + { + "category": [ + "externals" + ], + "end_date": 1641254400, + "start_date": 1633478400 + } + ], + "degano": [ + { + "category": [ + "tests" + ], + "end_date": 1409184000, + "start_date": 1388966400 + }, + { + "category": [ + "externals" + ], + "end_date": 1468368000, + "start_date": 1440028800 + } + ], + "deguio": [ + { + "category": [ + "dqm" + ], + "end_date": 1464652800, + "start_date": 1377043200 + } + ], + "demattia": [ + { + "category": [ + "alca" + ], + "end_date": 1389052800, + "start_date": 1377043200 + } + ], + "diguida": [ + { + "category": [ + "alca" + ], + "end_date": 1458691200, + "start_date": 1387411200 + } + ], + "dmitrijus": [ + { + "category": [ + "dqm" + ], + "end_date": 1532995200, + "start_date": 1461542400 + } + ], + "dpiparo": [ + { + "category": [ + "orp" + ], + "end_date": 1693440000, + "start_date": 1585699200 + } + ], + "efeyazgan": [ + { + "category": [ + "generators" + ], + "end_date": 1589673600, + "start_date": 1498694400 + } + ], + "eliasron": [ + { + "category": [ + "dqm" + ], + "end_date": 1389225600, + "start_date": 1379548800 + } + ], + "emanueleusai": [ + { + "category": [ + "dqm" + ], + "end_date": 1696032000, + "start_date": 1631491200 + } + ], + "emeschi": [ + { + "category": [ + "daq" + ], + "start_date": 1377734400 + } + ], + "epalencia": [ + { + "category": [ + "l1" + ], + "start_date": 1638748800 + } + ], + "fabferro": [ + { + "category": [ + "ctpps-dpg" + ], + "start_date": 1618272000 + } + ], + "fabiocos": [ + { + "category": [ + "operations" + ], + "end_date": 1379462400, + "start_date": 1377216000 + }, + { + "category": [ + "operations", + "orp" + ], + "end_date": 1391385600, + "start_date": 1379462400 + }, + { + "category": [ + "orp" + ], + "end_date": 1411430400, + "start_date": 1391385600 + }, + { + "category": [ + "operations", + "orp" + ], + "end_date": 1585699200, + "start_date": 1515715200 + }, + { + "category": [ + "operations" + ], + "end_date": 1618272000, + "start_date": 1585699200 + }, + { + "category": [ + "mtd-dpg" + ], + "end_date": 1618358400, + "start_date": 1618272000 + }, + { + "category": [ + "operations", + "mtd-dpg" + ], + "start_date": 1618358400 + } + ], + "fabozzi": [ + { + "category": [ + "pdmv" + ], + "end_date": 1536796800, + "start_date": 1442793600 + } + ], + "fcavallo": [ + { + "category": [ + "dt-dpg" + ], + "start_date": 1618272000 + } + ], + "felicepantaleo": [ + { + "category": [ + "hgcal-dpg" + ], + "start_date": 1632873600 + } + ], + "fgolf": [ + { + "category": [ + "analysis" + ], + "end_date": 1544400000, + "start_date": 1540512000 + }, + { + "category": [ + "xpog" + ], + "end_date": 1658880000, + "start_date": 1544400000 + } + ], + "fioriNTU": [ + { + "category": [ + "dqm" + ], + "end_date": 1611532800, + "start_date": 1550793600 + } + ], + "francescobrivio": [ + { + "category": [ + "alca" + ], + "end_date": 1631491200, + "start_date": 1611792000 + }, + { + "category": [ + "alca", + "db" + ], + "end_date": 1632787200, + "start_date": 1631491200 + }, + { + "category": [ + "alca" + ], + "end_date": 1633478400, + "start_date": 1632787200 + }, + { + "category": [ + "alca", + "db" + ], + "end_date": 1693872000, + "start_date": 1633478400 + }, + { + "category": [ + "db" + ], + "start_date": 1693872000 + } + ], + "franzoni": [ + { + "category": [ + "operations" + ], + "end_date": 1416355200, + "start_date": 1377216000 + }, + { + "category": [ + "operations", + "pdmv" + ], + "end_date": 1442793600, + "start_date": 1416355200 + }, + { + "category": [ + "operations", + "pdmv", + "alca" + ], + "end_date": 1458691200, + "start_date": 1442793600 + }, + { + "category": [ + "operations", + "alca" + ], + "end_date": 1585008000, + "start_date": 1458691200 + }, + { + "category": [ + "operations" + ], + "end_date": 1621814400, + "start_date": 1585008000 + } + ], + "fwyzard": [ + { + "category": [ + "hlt" + ], + "end_date": 1543276800, + "start_date": 1377043200 + }, + { + "category": [ + "heterogeneous", + "hlt" + ], + "end_date": 1545091200, + "start_date": 1543276800 + }, + { + "category": [ + "hlt" + ], + "end_date": 1576454400, + "start_date": 1545091200 + }, + { + "category": [ + "heterogeneous", + "hlt" + ], + "end_date": 1625702400, + "start_date": 1576454400 + }, + { + "category": [ + "heterogeneous" + ], + "start_date": 1625702400 + } + ], + "georgia14": [ + { + "category": [ + "hcal-dpg" + ], + "end_date": 1691020800, + "start_date": 1618272000 + } + ], + "ggovi": [ + { + "category": [ + "db" + ], + "end_date": 1678147200, + "start_date": 1377043200 + } + ], + "ghellwig": [ + { + "category": [ + "alca" + ], + "end_date": 1522972800, + "start_date": 1462147200 + } + ], + "giamman": [ + { + "category": [ + "fastsim" + ], + "end_date": 1377475200, + "start_date": 1377043200 + }, + { + "category": [ + "fastsim", + "simulation" + ], + "end_date": 1389225600, + "start_date": 1377475200 + }, + { + "category": [ + "fastsim" + ], + "end_date": 1404086400, + "start_date": 1389225600 + } + ], + "gkaratha": [ + { + "category": [ + "muon-pog" + ], + "start_date": 1632787200 + } + ], + "gouskos": [ + { + "category": [ + "xpog" + ], + "end_date": 1662336000, + "start_date": 1594080000 + } + ], + "govoni": [ + { + "category": [ + "generators" + ], + "end_date": 1512000000, + "start_date": 1441065600 + } + ], + "gpetruc": [ + { + "category": [ + "xpog" + ], + "end_date": 1519776000, + "start_date": 1519603200 + }, + { + "category": [ + "analysis" + ], + "end_date": 1540512000, + "start_date": 1519776000 + } + ], + "gudrutis": [ + { + "category": [ + "externals" + ], + "end_date": 1566777600, + "start_date": 1506297600 + } + ], + "hengne": [ + { + "category": [ + "pdmv" + ], + "end_date": 1454457600, + "start_date": 1448496000 + } + ], + "hqucms": [ + { + "category": [ + "xpog" + ], + "start_date": 1701993600 + } + ], + "iahmad-khan": [ + { + "category": [ + "externals" + ], + "end_date": 1454457600, + "start_date": 1448236800 + } + ], + "ianna": [ + { + "category": [ + "geometry" + ], + "end_date": 1674518400, + "start_date": 1377043200 + } + ], + "iarspider": [ + { + "category": [ + "externals", + "l1", + "upgrade", + "dqm", + "db", + "core" + ], + "start_date": 1620000000 + } + ], + "igv4321": [ + { + "category": [ + "hcal-dpg" + ], + "start_date": 1632873600 + } + ], + "jainshilpi": [ + { + "category": [ + "ecal-dpg" + ], + "end_date": 1680048000, + "start_date": 1632873600 + } + ], + "jan-kaspar": [ + { + "category": [ + "ctpps-dpg" + ], + "start_date": 1618272000 + } + ], + "jfernan2": [ + { + "category": [ + "dqm" + ], + "end_date": 1671494400, + "start_date": 1508889600 + }, + { + "category": [ + "reconstruction" + ], + "start_date": 1693526400 + } + ], + "jhakala": [ + { + "category": [ + "hcal-dpg" + ], + "start_date": 1691020800 + } + ], + "jhgoh": [ + { + "category": [ + "rpc-dpg" + ], + "start_date": 1618272000 + } + ], + "jlee": [ + { + "category": [ + "gem-dpg" + ], + "end_date": 1632873600, + "start_date": 1618358400 + } + ], + "jmduarte": [ + { + "category": [ + "l1" + ], + "end_date": 1614124800, + "start_date": 1603152000 + } + ], + "johnalison": [ + { + "category": [ + "btv-pog" + ], + "end_date": 1693353600, + "start_date": 1632787200 + } + ], + "jordan-martins": [ + { + "category": [ + "pdmv" + ], + "end_date": 1661904000, + "start_date": 1596585600 + }, + { + "category": [ + "ppd" + ], + "start_date": 1686182400 + } + ], + "jpata": [ + { + "category": [ + "reconstruction" + ], + "end_date": 1662076800, + "start_date": 1593993600 + } + ], + "jshlee": [ + { + "category": [ + "gem-dpg" + ], + "start_date": 1632873600 + } + ], + "juska": [ + { + "category": [ + "pf" + ], + "end_date": 1687478400, + "start_date": 1632787200 + } + ], + "kamon": [ + { + "category": [ + "gem-dpg" + ], + "start_date": 1618358400 + } + ], + "kandrosov": [ + { + "category": [ + "tau-pog" + ], + "end_date": 1701648000, + "start_date": 1632787200 + } + ], + "kdlong": [ + { + "category": [ + "pf" + ], + "start_date": 1632787200 + } + ], + "kirschen": [ + { + "category": [ + "jetmet-pog" + ], + "start_date": 1632787200 + } + ], + "kkousour": [ + { + "category": [ + "pdmv" + ], + "end_date": 1506902400, + "start_date": 1493683200 + } + ], + "kmaeshima": [ + { + "category": [ + "dqm" + ], + "end_date": 1631491200, + "start_date": 1497398400 + } + ], + "knollejo": [ + { + "category": [ + "lumi-pog" + ], + "start_date": 1632787200 + } + ], + "kpedro88": [ + { + "category": [ + "upgrade" + ], + "end_date": 1531267200, + "start_date": 1485993600 + }, + { + "category": [ + "upgrade", + "orp" + ], + "end_date": 1566172800, + "start_date": 1531267200 + }, + { + "category": [ + "upgrade", + "operations", + "orp" + ], + "end_date": 1578528000, + "start_date": 1566172800 + }, + { + "category": [ + "upgrade", + "operations" + ], + "end_date": 1581638400, + "start_date": 1578528000 + }, + { + "category": [ + "upgrade" + ], + "end_date": 1630454400, + "start_date": 1581638400 + } + ], + "kshcheli": [ + { + "category": [ + "proton-pog" + ], + "start_date": 1632787200 + } + ], + "kskovpen": [ + { + "category": [ + "pdmv" + ], + "end_date": 1687392000, + "start_date": 1626134400 + }, + { + "category": [ + "tracking-pog" + ], + "start_date": 1687392000 + } + ], + "ktf": [ + { + "category": [ + "core", + "visualization", + "geometry" + ], + "end_date": 1386460800, + "start_date": 1377043200 + }, + { + "category": [ + "core", + "visualization", + "geometry" + ], + "end_date": 1412208000, + "start_date": 1386460800 + }, + { + "category": [ + "core", + "visualization", + "geometry" + ], + "end_date": 1430179200, + "start_date": 1412208000 + } + ], + "lfinco": [ + { + "category": [ + "egamma-pog" + ], + "end_date": 1670112000, + "start_date": 1632787200 + } + ], + "lpernie": [ + { + "category": [ + "alca" + ], + "end_date": 1548115200, + "start_date": 1498608000 + } + ], + "lveldere": [ + { + "category": [ + "fastsim" + ], + "end_date": 1657497600, + "start_date": 1381881600 + } + ], + "makortel": [ + { + "category": [ + "heterogeneous" + ], + "end_date": 1545091200, + "start_date": 1543276800 + }, + { + "category": [ + "heterogeneous", + "core", + "visualization", + "geometry" + ], + "start_date": 1578268800 + } + ], + "malbouis": [ + { + "category": [ + "alca" + ], + "end_date": 1631491200, + "start_date": 1611792000 + }, + { + "category": [ + "alca", + "db" + ], + "end_date": 1632787200, + "start_date": 1631491200 + }, + { + "category": [ + "alca" + ], + "end_date": 1633478400, + "start_date": 1632787200 + }, + { + "category": [ + "alca", + "db" + ], + "end_date": 1678147200, + "start_date": 1633478400 + }, + { + "category": [ + "ppd" + ], + "start_date": 1686182400 + } + ], + "mandrenguyen": [ + { + "category": [ + "reconstruction" + ], + "start_date": 1660262400 + } + ], + "mariadalfonso": [ + { + "category": [ + "xpog" + ], + "end_date": 1662336000, + "start_date": 1594080000 + } + ], + "mdhildred": [ + { + "category": [ + "simulation" + ], + "end_date": 1378944000, + "start_date": 1377043200 + } + ], + "mdhildreth": [ + { + "category": [ + "simulation" + ], + "end_date": 1379462400, + "start_date": 1378944000 + }, + { + "category": [ + "simulation", + "geometry" + ], + "end_date": 1406160000, + "start_date": 1379462400 + }, + { + "category": [ + "simulation", + "geometry", + "fastsim" + ], + "start_date": 1406160000 + } + ], + "menglu21": [ + { + "category": [ + "generators" + ], + "start_date": 1659312000 + } + ], + "michael-pitt": [ + { + "category": [ + "proton-pog" + ], + "start_date": 1632787200 + } + ], + "micsucmed": [ + { + "category": [ + "dqm" + ], + "end_date": 1695772800, + "start_date": 1648425600 + } + ], + "mileva": [ + { + "category": [ + "muon-dpg" + ], + "start_date": 1618272000 + } + ], + "miquork": [ + { + "category": [ + "jetmet-pog" + ], + "end_date": 1691539200, + "start_date": 1652403702 + }, + { + "category": [ + "pdmv", + "jetmet-pog" + ], + "start_date": 1691539200 + } + ], + "missirol": [ + { + "category": [ + "hlt" + ], + "end_date": 1698883200, + "start_date": 1632096000 + } + ], + "mkirsano": [ + { + "category": [ + "generators" + ], + "start_date": 1569456000 + } + ], + "mmusich": [ + { + "category": [ + "alca" + ], + "end_date": 1494806400, + "start_date": 1413417600 + }, + { + "category": [ + "trk-dpg" + ], + "end_date": 1632787200, + "start_date": 1618272000 + }, + { + "category": [ + "trk-dpg", + "tracking-pog" + ], + "end_date": 1662422400, + "start_date": 1632787200 + }, + { + "category": [ + "tracking-pog" + ], + "end_date": 1693267200, + "start_date": 1662422400 + }, + { + "category": [ + "tracking-pog", + "hlt" + ], + "end_date": 1694563200, + "start_date": 1693267200 + }, + { + "category": [ + "hlt" + ], + "start_date": 1694563200 + } + ], + "mommsen": [ + { + "category": [ + "daq" + ], + "end_date": 1598486400, + "start_date": 1377734400 + } + ], + "mondalspandan": [ + { + "category": [ + "btv-pog" + ], + "start_date": 1693353600 + } + ], + "montjj": [ + { + "category": [ + "analysis" + ], + "end_date": 1472688000, + "start_date": 1471478400 + } + ], + "monttj": [ + { + "category": [ + "analysis" + ], + "end_date": 1458691200, + "start_date": 1391385600 + } + ], + "mrodozov": [ + { + "category": [ + "externals" + ], + "end_date": 1633478400, + "start_date": 1494806400 + } + ], + "mseidel42": [ + { + "category": [ + "hcal-dpg" + ], + "end_date": 1649808000, + "start_date": 1618272000 + } + ], + "mtosi": [ + { + "category": [ + "tracking-pog" + ], + "end_date": 1655769600, + "start_date": 1632787200 + } + ], + "mulhearn": [ + { + "category": [ + "l1" + ], + "end_date": 1511913600, + "start_date": 1377734400 + } + ], + "namapane": [ + { + "category": [ + "dt-dpg" + ], + "start_date": 1618272000 + } + ], + "nclopezo": [ + { + "category": [ + "tests" + ], + "end_date": 1432857600, + "start_date": 1379376000 + } + ], + "nothingface0": [ + { + "category": [ + "dqm" + ], + "start_date": 1683676800 + } + ], + "nsmith-": [ + { + "category": [ + "l1" + ], + "end_date": 1550534400, + "start_date": 1511913600 + } + ], + "ojeda": [ + { + "category": [ + "dqm" + ], + "end_date": 1416355200, + "start_date": 1389225600 + } + ], + "parbol": [ + { + "category": [ + "mtd-dpg" + ], + "start_date": 1618272000 + } + ], + "pavlov": [ + { + "category": [ + "rpc-dpg" + ], + "start_date": 1618272000 + } + ], + "pbo0": [ + { + "category": [ + "dqm" + ], + "end_date": 1631491200, + "start_date": 1631491200 + } + ], + "perrotta": [ + { + "category": [ + "hlt" + ], + "end_date": 1488499200, + "start_date": 1377043200 + }, + { + "category": [ + "reconstruction" + ], + "end_date": 1625702400, + "start_date": 1488499200 + }, + { + "category": [ + "reconstruction", + "orp" + ], + "end_date": 1627344000, + "start_date": 1625702400 + }, + { + "category": [ + "operations", + "reconstruction", + "orp" + ], + "end_date": 1629244800, + "start_date": 1627344000 + }, + { + "category": [ + "operations", + "orp" + ], + "end_date": 1687996800, + "start_date": 1629244800 + }, + { + "category": [ + "alca", + "db", + "orp", + "orp" + ], + "end_date": 1688688000, + "start_date": 1687996800 + }, + { + "category": [ + "operations", + "alca", + "db", + "orp", + "orp" + ], + "end_date": 1693440000, + "start_date": 1688688000 + }, + { + "category": [ + "alca", + "db" + ], + "start_date": 1693440000 + } + ], + "perrozzi": [ + { + "category": [ + "generators" + ], + "end_date": 1557187200, + "start_date": 1461628800 + } + ], + "peruzzim": [ + { + "category": [ + "analysis" + ], + "end_date": 1544400000, + "start_date": 1540512000 + }, + { + "category": [ + "xpog" + ], + "end_date": 1602201600, + "start_date": 1544400000 + } + ], + "pfs": [ + { + "category": [ + "hgcal-dpg" + ], + "start_date": 1632873600 + } + ], + "pgunnell": [ + { + "category": [ + "pdmv" + ], + "end_date": 1596585600, + "start_date": 1530748800 + } + ], + "pmandrik": [ + { + "category": [ + "dqm" + ], + "end_date": 1695772800, + "start_date": 1631491200 + } + ], + "pohsun": [ + { + "category": [ + "alca" + ], + "end_date": 1630454400, + "start_date": 1528156800 + } + ], + "prebello": [ + { + "category": [ + "pdmv" + ], + "end_date": 1568073600, + "start_date": 1506902400 + } + ], + "ptcox": [ + { + "category": [ + "csc-dpg" + ], + "start_date": 1618272000 + } + ], + "qliphy": [ + { + "category": [ + "generators" + ], + "end_date": 1595548800, + "start_date": 1534291200 + }, + { + "category": [ + "generators", + "operations", + "orp" + ], + "end_date": 1598572800, + "start_date": 1595548800 + }, + { + "category": [ + "operations", + "orp" + ], + "end_date": 1661644800, + "start_date": 1598572800 + } + ], + "rappoccio": [ + { + "category": [ + "operations", + "orp", + "orp" + ], + "start_date": 1657152000 + } + ], + "rcastello": [ + { + "category": [ + "alca" + ], + "end_date": 1422403200, + "start_date": 1377129600 + } + ], + "rekovic": [ + { + "category": [ + "l1" + ], + "end_date": 1676937600, + "start_date": 1458604800 + } + ], + "rovere": [ + { + "category": [ + "dqm" + ], + "end_date": 1416355200, + "start_date": 1377043200 + }, + { + "category": [ + "hgcal-dpg" + ], + "start_date": 1618272000 + } + ], + "rvenditti": [ + { + "category": [ + "dqm" + ], + "start_date": 1611532800 + } + ], + "santocch": [ + { + "category": [ + "analysis" + ], + "end_date": 1653264000, + "start_date": 1545091200 + } + ], + "saumyaphor4252": [ + { + "category": [ + "alca", + "db" + ], + "start_date": 1659052800 + } + ], + "sbein": [ + { + "category": [ + "fastsim" + ], + "start_date": 1563062400 + } + ], + "schneiml": [ + { + "category": [ + "dqm" + ], + "end_date": 1596153600, + "start_date": 1530835200 + } + ], + "sextonkennedy": [ + { + "category": [ + "orp", + "orp" + ], + "start_date": 1693440000 + } + ], + "silviodonato": [ + { + "category": [ + "hlt" + ], + "end_date": 1472774400, + "start_date": 1472688000 + }, + { + "category": [ + "orp" + ], + "end_date": 1576800000, + "start_date": 1576454400 + }, + { + "category": [ + "operations", + "orp" + ], + "end_date": 1628553600, + "start_date": 1576800000 + }, + { + "category": [ + "operations" + ], + "end_date": 1629244800, + "start_date": 1628553600 + } + ], + "simonepigazzini": [ + { + "category": [ + "ecal-dpg" + ], + "end_date": 1677628800, + "start_date": 1632873600 + }, + { + "category": [ + "xpog" + ], + "end_date": 1701993600, + "start_date": 1677628800 + } + ], + "slava77": [ + { + "category": [ + "reconstruction" + ], + "end_date": 1655769600, + "start_date": 1377043200 + }, + { + "category": [ + "tracking-pog" + ], + "start_date": 1655769600 + } + ], + "smorovic": [ + { + "category": [ + "daq" + ], + "start_date": 1598486400 + } + ], + "smuzaffar": [ + { + "category": [ + "tests" + ], + "end_date": 1383177600, + "start_date": 1379635200 + }, + { + "category": [ + "core" + ], + "end_date": 1448236800, + "start_date": 1435104000 + }, + { + "category": [ + "core", + "externals" + ], + "end_date": 1454457600, + "start_date": 1448236800 + }, + { + "category": [ + "core" + ], + "end_date": 1455667200, + "start_date": 1454457600 + }, + { + "category": [ + "core", + "externals" + ], + "start_date": 1455667200 + } + ], + "soureek": [ + { + "category": [ + "btv-pog" + ], + "end_date": 1693353600, + "start_date": 1632787200 + } + ], + "srimanob": [ + { + "category": [ + "pdmv" + ], + "end_date": 1488153600, + "start_date": 1416355200 + }, + { + "category": [ + "upgrade" + ], + "start_date": 1609632000 + } + ], + "sroychow": [ + { + "category": [ + "trk-dpg" + ], + "start_date": 1662422400 + } + ], + "sscruz": [ + { + "category": [ + "muon-pog" + ], + "end_date": 1662422400, + "start_date": 1632787200 + } + ], + "ssekmen": [ + { + "category": [ + "fastsim" + ], + "start_date": 1423612800 + } + ], + "subansal": [ + { + "category": [ + "pdmv" + ], + "end_date": 1661904000, + "start_date": 1661904000 + } + ], + "subirsarkar": [ + { + "category": [ + "upgrade" + ], + "start_date": 1702339200 + } + ], + "sunilUIET": [ + { + "category": [ + "pdmv" + ], + "start_date": 1661904000 + } + ], + "swagata87": [ + { + "category": [ + "egamma-pog" + ], + "end_date": 1695081600, + "start_date": 1632787200 + }, + { + "category": [ + "pf" + ], + "start_date": 1695081600 + } + ], + "swertz": [ + { + "category": [ + "xpog" + ], + "end_date": 1685404800, + "start_date": 1658880000 + } + ], + "syuvivida": [ + { + "category": [ + "dqm" + ], + "start_date": 1662595200 + } + ], + "thomreis": [ + { + "category": [ + "l1" + ], + "end_date": 1546905600, + "start_date": 1511913600 + }, + { + "category": [ + "ecal-dpg" + ], + "start_date": 1618358400 + } + ], + "thspeer": [ + { + "category": [ + "reconstruction" + ], + "end_date": 1401667200, + "start_date": 1377043200 + } + ], + "thuer": [ + { + "category": [ + "generators" + ], + "end_date": 1512000000, + "start_date": 1394496000 + } + ], + "tjavaid": [ + { + "category": [ + "dqm" + ], + "start_date": 1683676800 + } + ], + "tlampen": [ + { + "category": [ + "alca" + ], + "end_date": 1630454400, + "start_date": 1555286400 + } + ], + "tocheng": [ + { + "category": [ + "alca" + ], + "end_date": 1606780800, + "start_date": 1531699200 + } + ], + "tsusa": [ + { + "category": [ + "trk-dpg" + ], + "end_date": 1662422400, + "start_date": 1618272000 + } + ], + "tulamor": [ + { + "category": [ + "externals" + ], + "end_date": 1568073600, + "start_date": 1567987200 + } + ], + "tvami": [ + { + "category": [ + "alca" + ], + "end_date": 1631491200, + "start_date": 1625097600 + }, + { + "category": [ + "alca", + "db" + ], + "end_date": 1632787200, + "start_date": 1631491200 + }, + { + "category": [ + "alca" + ], + "end_date": 1633478400, + "start_date": 1632787200 + }, + { + "category": [ + "alca", + "db" + ], + "end_date": 1690848000, + "start_date": 1633478400 + }, + { + "category": [ + "alca", + "db", + "analysis" + ], + "end_date": 1693872000, + "start_date": 1690848000 + }, + { + "category": [ + "analysis" + ], + "start_date": 1693872000 + } + ], + "vadler": [ + { + "category": [ + "analysis" + ], + "end_date": 1458691200, + "start_date": 1377043200 + } + ], + "valsdav": [ + { + "category": [ + "ml" + ], + "start_date": 1701993600 + } + ], + "vanbesien": [ + { + "category": [ + "dqm" + ], + "end_date": 1530835200, + "start_date": 1442793600 + } + ], + "vavati": [ + { + "category": [ + "ctpps-dpg" + ], + "start_date": 1618272000 + } + ], + "vazzolini": [ + { + "category": [ + "dqm" + ], + "end_date": 1531440000, + "start_date": 1497398400 + } + ], + "vciulli": [ + { + "category": [ + "generators" + ], + "end_date": 1458691200, + "start_date": 1377043200 + } + ], + "vlimant": [ + { + "category": [ + "operations" + ], + "end_date": 1416355200, + "start_date": 1377475200 + }, + { + "category": [ + "xpog" + ], + "start_date": 1658880000 + } + ], + "vmariani": [ + { + "category": [ + "tracking-pog" + ], + "end_date": 1662422400, + "start_date": 1632787200 + } + ], + "wajidalikhan": [ + { + "category": [ + "pdmv" + ], + "end_date": 1650585600, + "start_date": 1585008000 + } + ], + "wang-hui": [ + { + "category": [ + "hcal-dpg" + ], + "start_date": 1647216000 + } + ], + "wang0jin": [ + { + "category": [ + "ecal-dpg" + ], + "start_date": 1680048000 + } + ], + "watson-ij": [ + { + "category": [ + "gem-dpg" + ], + "start_date": 1632873600 + } + ], + "wpmccormack": [ + { + "category": [ + "ml" + ], + "start_date": 1701993600 + } + ], + "yuanchao": [ + { + "category": [ + "alca" + ], + "end_date": 1678147200, + "start_date": 1601596800 + } + ], + "zhenhu": [ + { + "category": [ + "pdmv" + ], + "end_date": 1585008000, + "start_date": 1530748800 + } + ] +} \ No newline at end of file diff --git a/repos/iarspider_cmssw/cmssw/milestones.py b/repos/iarspider_cmssw/cmssw/milestones.py new file mode 100644 index 000000000000..5793367a49c9 --- /dev/null +++ b/repos/iarspider_cmssw/cmssw/milestones.py @@ -0,0 +1,69 @@ +# Map of cmssw branch to milestone +RELEASE_BRANCH_MILESTONE = { + "CMSSW_9_2_6_patchX": 70, + "CMSSW_9_2_3_patchX": 68, + "CMSSW_9_2_0_patchX": 67, + "CMSSW_8_0_10_patchX": 63, + "CMSSW_8_0_8_patchX": 62, + "CMSSW_7_5_5_patchX": 58, + "CMSSW_8_0_X": 57, + "CMSSW_7_6_X": 55, + "CMSSW_7_5_X": 51, + "CMSSW_7_4_X": 50, + "CMSSW_7_3_X": 49, + "CMSSW_7_0_X": 38, + "CMSSW_7_1_X": 47, + "CMSSW_7_2_X": 48, + "CMSSW_6_2_X": 21, + "CMSSW_6_2_X_SLHC": 9, + "CMSSW_5_3_X": 20, + "CMSSW_4_4_X": 8, + "CMSSW_4_2_X": 35, + "CMSSW_4_1_X": 7, + "CMSSW_6_2_SLHCDEV_X": 52, + "CMSSW_7_1_4_patchX": 53, + "CMSSW_7_4_1_patchX": 54, + "CMSSW_7_4_12_patchX": 56, +} + +# PR created for these BRANCHES will be closed by cms-bot +RELEASE_BRANCH_CLOSED = [ + "CMSSW_4_1_X", + "CMSSW_4_2_X", + "CMSSW_4_4_X", + "CMSSW_6_1_X", + "CMSSW_6_1_X_SLHC", + "CMSSW_6_2_X", + "CMSSW_7_0_X", + "CMSSW_.+_Patatrack_X", +] + +# All these releases require ORP signicatures +RELEASE_BRANCH_PRODUCTION = [ + "CMSSW_8_0_X", + "CMSSW_7_6_X", + "CMSSW_7_5_X", + "CMSSW_7_4_X", + "CMSSW_7_3_X", + "CMSSW_7_2_X", + "CMSSW_7_1_X", + "CMSSW_7_0_X", + "CMSSW_6_2_X_SLHC", + "CMSSW_5_3_X", +] + +SPECIAL_RELEASE_MANAGERS = [] + +RELEASE_MANAGERS = {} +RELEASE_MANAGERS["CMSSW_.+_Patatrack_X"] = ["fwyzard"] + +###################################################################### +# Automatically added by cms-bot for CMSSW_14_0_X release cycle +###################################################################### +RELEASE_BRANCH_MILESTONE["CMSSW_14_0_X"] = 3 +RELEASE_BRANCH_PRODUCTION.append("CMSSW_14_0_X") +RELEASE_BRANCH_PRODUCTION.append("CMSSW_14_0_DEVEL_X") + +RELEASE_BRANCH_MILESTONE["CMSSW_14_1_X"] = 4 +RELEASE_BRANCH_PRODUCTION.append("CMSSW_14_1_X") +RELEASE_BRANCH_PRODUCTION.append("CMSSW_14_1_DEVEL_X") diff --git a/repos/iarspider_cmssw/cmssw/releases.py b/repos/iarspider_cmssw/cmssw/releases.py new file mode 100644 index 000000000000..63022757f70b --- /dev/null +++ b/repos/iarspider_cmssw/cmssw/releases.py @@ -0,0 +1,32 @@ +from milestones import * +import re + +# Default development branch +# Changes from master branch will be merge in to it +# Any PR open against this will be automatically closed by cms-bot (Pr should be made for master branch) +# For new release cycle just change this and make sure to add its milestone and production branches +CMSSW_DEVEL_BRANCH = "CMSSW_14_1_X" + +RELEASE_BRANCH_MILESTONE["master"] = RELEASE_BRANCH_MILESTONE[CMSSW_DEVEL_BRANCH] +RELEASE_BRANCH_PRODUCTION.append("master") +USERS_TO_TRIGGER_HOOKS = set( + SPECIAL_RELEASE_MANAGERS + [m for rel in RELEASE_MANAGERS for m in rel] +) + + +def get_release_managers(branch): + if branch in RELEASE_MANAGERS: + return RELEASE_MANAGERS[branch] + for exp in RELEASE_MANAGERS: + if re.match(exp, branch): + return RELEASE_MANAGERS[exp] + return [] + + +def is_closed_branch(branch): + if branch in RELEASE_BRANCH_CLOSED: + return True + for exp in RELEASE_BRANCH_CLOSED: + if re.match(exp, branch): + return True + return False diff --git a/repos/iarspider_cmssw/cmssw/repo_config.py b/repos/iarspider_cmssw/cmssw/repo_config.py new file mode 100644 index 000000000000..fc7868eb7bef --- /dev/null +++ b/repos/iarspider_cmssw/cmssw/repo_config.py @@ -0,0 +1,33 @@ +from os.path import abspath, basename, dirname + +from cms_static import CMSBUILD_GH_USER, GH_CMSSW_ORGANIZATION, GH_CMSSW_REPO + +# GH read/write token: Use default ~/.github-token-cmsbot +GH_TOKEN = "~/.github-token" +# GH readonly token: Use default ~/.github-token-readonly +GH_TOKEN_READONLY = "~/.github-token-readonly" +CONFIG_DIR = dirname(abspath(__file__)) +# GH bot user: Use default cmsbot +CMSBUILD_USER = "iarspider" +GH_REPO_ORGANIZATION = basename(dirname(CONFIG_DIR)) +GH_REPO_FULLNAME = "iarspider-cmssw/cmssw" +CREATE_EXTERNAL_ISSUE = False +# Jenkins CI server: User default http://cmsjenkins02.cern.ch:8080/cms-jenkins +JENKINS_SERVER = "http://localhost:8080/cms-jenkins" +# GH Web hook pass phrase. This is encrypeted used bot keys. +# GITHUB_WEBHOOK_TOKEN = "" +# Set to True if you want bot to add build/test labels to your repo +ADD_LABELS = True +# Set to True if you want bot to add GH webhooks. cmsbot needs admin rights +ADD_WEB_HOOK = False +# List of issues/pr which bot should ignore +IGNORE_ISSUES = [] +# Set the Jenkins slave label is your tests needs special machines to run. +JENKINS_SLAVE_LABEL = "" +# For cmsdist/cmssw repos , set it to False if you do not want to run standard cms pr tests +CMS_STANDARD_TESTS = True +# Map your branches with cmssw branches for tests +# User Branch => CMSSW/CMSDIST Bracnh +CMS_BRANCH_MAP = {} +# Valid Web hooks e.g. '.+' to match all event +VALID_WEB_HOOKS = [".+"] diff --git a/repos/iarspider_cmssw/cmssw/watchers.yaml b/repos/iarspider_cmssw/cmssw/watchers.yaml new file mode 100644 index 000000000000..5789bdef12ff --- /dev/null +++ b/repos/iarspider_cmssw/cmssw/watchers.yaml @@ -0,0 +1,1825 @@ +# Map between github username and the list of packages to watch. +# Package is a regular expression which will be automatically delimited by +# ".*". +bsunanda: + - Geometry/ + - SimDataFormats/ + - SimG4Core/ + - SimG4CMS/ + - CondCore/GeometryPlugins + - CondCore/HcalPlugins + - CondFormats/GeometryObjects + - CondFormats/HcalMapping + - CondFormats/HcalObjects + - CondTools/Geometry + - CalibCalorimetry/HcalAlgos + - CalibCalorimetry/HcalPlugins + - CalibCalorimetry/HcalTPGAlgos + - CalibCalorimetry/HcalTPGEventSetup + - CalibCalorimetry/HcalTPGIO + - CalibFormats/HcalObjects + - Calibration/HcalAlCaRecoProducers + - Calibration/HcalCalibAlgos + - Calibration/HcalConnectivity + - Calibration/HcalIsolatedTrackReco + - Calibration/IsolatedParticles + - DQM/HcalCommon + - DQM/HcalMonitorClient + - DQM/HcalMonitorModule + - DQM/HcalMonitorTasks + - DQM/HcalTasks + - DQMOffline/Hcal + - DataFormats/ForwardDetId + - DataFormats/HcalCalibObjects + - DataFormats/HcalDetId + - DataFormats/HcalDigi + - DataFormats/HcalIsolatedTrack + - DataFormats/HcalRecHit + - DataFormats/HGCDigi + - DataFormats/HGCRecHit + - EventFilter/HcalRawToDigi + - IORawData/HcalTBInputService + - OnlineDB/HcalCondDB + - RecoLocalCalo/HcalLaserReco + - RecoLocalCalo/HcalRecAlgos + - RecoLocalCalo/HcalRecProducers + - RecoLocalCalo/HGCalRecAlgos + - RecoLocalCalo/HGCalRecProducers + - RecoTBCalo/HcalPlotter + - RecoTBCalo/HcalTBObjectUnpacker + - RecoTBCalo/HcalTBTools + - SimCalorimetry/HcalSimAlgos + - SimCalorimetry/HcalSimProducers + - SimCalorimetry/HcalTestBeam + - SimCalorimetry/HcalTrigPrimAlgos + - SimCalorimetry/HcalTrigPrimProducers + - SimCalorimetry/HcalZeroSuppressionProducers + - SimCalorimetry/HGCalSimProducers + - TBDataFormats/HcalTBObjects + - Validation/HcalDigis + - Validation/HcalHits + - Validation/HcalRecHits + - Validation/HGCalValidation +tracking-pog: +- Configuration/StandardSequences +- DPGAnalysis/SiStripTools +- DQM/TrackingMonitor +- DQM/TrackingMonitorClient +- DQM/TrackingMonitorSource +- DataFormats/Tra +- DataFormats/VertexReco +- Geometry/CommonTopologies +- Geometry/Track +- RecoLocalTracker +- RecoPixelVertexing +- RecoTracker +- RecoVertex +- SLHCUpgradeSimulations/Configuration +- SimDataFormats/DigiSimLinks +- SimDataFormats/Track +- SimDataFormats/Vertex +- SimGeneral/TrackingAnalysis +- SimTracker +- TrackPropagation +- TrackingTools +- Validation/RecoTrack +- Validation/RecoVertex +- Validation/TrackerRecHits +btv-pog: + - CondFormats/BTauObjects + - CondTools/BTau + - DataFormats/BTauReco + - DQMOffline/RecoB + - SimDataFormats/JetMatching + - HLTriggerOffline/Btag + - HLTrigger/btau + - PhysicsTools/JetExamples + - PhysicsTools/JetMCAlgos + - PhysicsTools/JetMCUtils + - PhysicsTools/MVAComputer + - PhysicsTools/MVATrainer + - PhysicsTools/PatAlgos + - PhysicsTools/PatExamples + - PhysicsTools/PatUtils + - RecoBTag + - RecoBTau + - RecoJets/JetAssociationAlgorithms + - RecoJets/JetAssociationProducers + - RecoVertex/AdaptiveVertexFinder + - RecoVertex/AdaptiveVertexFit + - SimTracker/TrackHistory + - Validation/RecoB +makortel: + - .clang-tidy + - Configuration/Applications + - Configuration/Eras + - Configuration/ProcessModifiers + - Configuration/PyReleaseValidation + - Configuration/StandardSequences + - DataFormats/Common + - DataFormats/FWLite + - DataFormats/Math + - DataFormats/Provenance + - DataFormats/StdDictionaries + - DataFormats/Streamer + - DataFormats/TestObjects + - DataFormats/WrappedStdDictionaries + - FWCore + - HeterogeneousCore + - IgTools + - IOMC/RandomEngine + - IOPool + - PerfTools + - PhysicsTools/TensorFlow + - RecoTracker/MkFit + - SimG4Core + - SimGeneral/DataMixingModule + - SimGeneral/MixingModule + - SimGeneral/PreMixingModule +GiacomoSguazzoni: +- RecoTracker +- RecoLocalTracker +- TrackingTools +- SimTracker +- SimGeneral/TrackingAnalysis +- RecoVertex +- RecoPixelVertexing +- Configuration/StandardSequences +- Validation/RecoTrack +- Validation/RecoVertex +VinInn: +- RecoTracker +- RecoLocalTracker +- TrackingTools +- SimTracker +- SimGeneral/TrackingAnalysis +- RecoVertex +- RecoPixelVertexing +- Configuration/StandardSequences +- Validation/RecoTrack +- Validation/RecoVertex +- DataFormats/Tra +- DataFormats/GsfTrackReco +- DataFormats/VertexReco +- DataFormats/Si +- CondFormats/Si +- CondTools/Si +- CondCore/Si +- SimTracker +- EventFilter/Si +- Validation/TrackerRecHits +- Geometry/Track +- Geometry/CommonTopologies +abbiendi: +- Alignment/MuonAlignment +- Alignment/MuonAlignmentAlgorithms +- CommonTools/RecoAlgos +- DataFormats/CSCRecHit +- DataFormats/GEMRecHit +- DataFormats/DTRecHit +- DataFormats/MuonDetId +- DataFormats/MuonReco +- DataFormats/MuonSeed +- DataFormats/RPCRecHit +- DQMOffline/Muon +- HLTrigger/Muon +- HLTriggerOffline/Muon +- MuonAnalysis/MuonAssociators +- RecoLocalMuon/CSCRecHitD +- RecoLocalMuon/CSCSegment +- RecoLocalMuon/Configuration +- RecoLocalMuon/DTSegment +- RecoMuon/Configuration +- RecoMuon/CosmicMuonProducer +- RecoMuon/DetLayers +- RecoMuon/GlobalMuonProducer +- RecoMuon/GlobalTrackFinder +- RecoMuon/GlobalTrackingTools +- RecoMuon/L2MuonIsolationProducer +- RecoMuon/L2MuonProducer +- RecoMuon/L2MuonSeedGenerator +- RecoMuon/L3MuonIsolationProducer +- RecoMuon/L3MuonProducer +- RecoMuon/L3TrackFinder +- RecoMuon/MeasurementDet +- RecoMuon/MuonIdentification +- RecoMuon/MuonIsolation +- RecoMuon/MuonIsolationProducers +- RecoMuon/MuonSeedGenerator +- RecoMuon/Navigation +- RecoMuon/Records +- RecoMuon/StandAloneMuonProducer +- RecoMuon/StandAloneTrackFinder +- RecoMuon/TrackerSeedGenerator +- RecoMuon/TrackingTools +- RecoMuon/TransientTrackingRecHit +- SimDataFormats/DigiSimLinks +- SimDataFormats/RPCDigiSimLink +- SimDataFormats/TrackerDigiSimLink +- SimDataFormats/TrackingAnalysis +- SimGeneral/TrackingAnalysis +- SimMuon/Configuration +- SimMuon/MCTruth +- SimTracker/TrackAssociation +- TrackingTools/KalmanUpdators +- TrackingTools/PatternTools +- TrackingTools/TrackAssociator +- TrackingTools/TrackFitters +- TrackingTools/TrackRefitter +- TrackingTools/TrajectoryState +- TrackingTools/TransientTrack +- TrackingTools/TransientTrackingRecHit +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/RecoMuon +amarini: +- DataFormats/L1THGCal +- L1Trigger/L1THGCal +alja: +- Fireworks +acimmino: +- DQM/RPCMonitorDigi +- DQM/RPCMonitorClient +argiro: +- .*[Ee][Cc][Aa][Ll] +barvic: +- EventFilter/CSCRawToDigi +- DQM/CSCMonitorModule +- DQMOffline/Muon +- DQMServices +batinkov: +- DQM/Integration +battibass: +- CalibMuon/Configuration +- CalibMuon/DTCalibration +- CalibMuon/DTDigiSync +- CondFormats/DTObjects +- CondFormats/RecoMuonObjects +- DataFormats/DTDigi +- DataFormats/DTRecHit +- DataFormats/L1DTTrackFinder +- DataFormats/MuonDetId +- DataFormats/MuonReco +- DPGAnalysis/MuonTools +- DQM/DTMonitorClient +- DQM/DTMonitorModule +- DQMOffline/CalibMuon +- EventFilter/DTRawToDigi +- EventFilter/L1TXRawToDigi +- Geometry/DTGeometry +- Geometry/DTGeometryBuilder +- L1Trigger/DTBti +- L1Trigger/DTSectorCollector +- L1Trigger/DTTraco +- MuonAnalysis/MuonAssociators +- L1Trigger/DTTrigger +- L1Trigger/DTTriggerServerPhi +- L1Trigger/DTTriggerServerTheta +- L1Trigger/DTUtilities +- L1Trigger/L1TTwinMux +- L1TriggerConfig/DTTPGConfig +- L1TriggerConfig/DTTPGConfigProducers +- RecoLocalMuon/Configuration +- RecoLocalMuon/DTRecHit +- RecoLocalMuon/DTSegment +- SimDataFormats/DigiSimLinks +- SimMuon/Configuration +- SimMuon/DTDigitizer +- SimMuon/Neutron +- SimMuon/MCTruth +- Validation/DTRecHits +- Validation/MuonDTDigis +CeliaFernandez: +- Alignment/MuonAlignment +- Alignment/MuonAlignmentAlgorithms +- DataFormats/CSCRecHit +- DataFormats/GEMRecHit +- DataFormats/DTRecHit +- DataFormats/MuonDetId +- DataFormats/MuonReco +- DataFormats/MuonSeed +- DataFormats/RPCRecHit +- HLTrigger/Muon +- HLTriggerOffline/Muon +- MuonAnalysis/MuonAssociators +- RecoMuon/Configuration +- RecoMuon/CosmicMuonProducer +- RecoMuon/DetLayers +- RecoMuon/GlobalMuonProducer +- RecoMuon/GlobalTrackFinder +- RecoMuon/GlobalTrackingTools +- RecoMuon/L2MuonIsolationProducer +- RecoMuon/L2MuonProducer +- RecoMuon/L2MuonSeedGenerator +- RecoMuon/L3MuonIsolationProducer +- RecoMuon/L3MuonProducer +- RecoMuon/L3TrackFinder +- RecoMuon/MeasurementDet +- RecoMuon/MuonIdentification +- RecoMuon/MuonIsolation +- RecoMuon/MuonIsolationProducers +- RecoMuon/MuonSeedGenerator +- RecoMuon/Navigation +- RecoMuon/Records +- RecoMuon/StandAloneMuonProducer +- RecoMuon/StandAloneTrackFinder +- RecoMuon/TrackerSeedGenerator +- RecoMuon/TrackingTools +- RecoMuon/TransientTrackingRecHit +- SimDataFormats/DigiSimLinks +- SimDataFormats/RPCDigiSimLink +- SimDataFormats/TrackerDigiSimLink +- SimDataFormats/TrackingAnalysis +- SimGeneral/TrackingAnalysis +- SimMuon/Configuration +- SimMuon/MCTruth +- TrackingTools/KalmanUpdators +- TrackingTools/PatternTools +- TrackingTools/TrackAssociator +- TrackingTools/TrackFitters +- TrackingTools/TrackRefitter +- TrackingTools/TrajectoryState +- TrackingTools/TransientTrack +- TrackingTools/TransientTrackingRecHit +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/RecoMuon +muon-reco: +- Alignment/MuonAlignment +- Alignment/MuonAlignmentAlgorithms +- DataFormats/CSCRecHit +- DataFormats/GEMRecHit +- DataFormats/DTRecHit +- DataFormats/MuonDetId +- DataFormats/MuonReco +- DataFormats/MuonSeed +- DataFormats/RPCRecHit +- HLTrigger/Muon +- HLTriggerOffline/Muon +- MuonAnalysis/MuonAssociators +- RecoMuon/Configuration +- RecoMuon/CosmicMuonProducer +- RecoMuon/DetLayers +- RecoMuon/GlobalMuonProducer +- RecoMuon/GlobalTrackFinder +- RecoMuon/GlobalTrackingTools +- RecoMuon/L2MuonIsolationProducer +- RecoMuon/L2MuonProducer +- RecoMuon/L2MuonSeedGenerator +- RecoMuon/L3MuonIsolationProducer +- RecoMuon/L3MuonProducer +- RecoMuon/L3TrackFinder +- RecoMuon/MeasurementDet +- RecoMuon/MuonIdentification +- RecoMuon/MuonIsolation +- RecoMuon/MuonIsolationProducers +- RecoMuon/MuonSeedGenerator +- RecoMuon/Navigation +- RecoMuon/Records +- RecoMuon/StandAloneMuonProducer +- RecoMuon/StandAloneTrackFinder +- RecoMuon/TrackerSeedGenerator +- RecoMuon/TrackingTools +- RecoMuon/TransientTrackingRecHit +- SimDataFormats/DigiSimLinks +- SimDataFormats/RPCDigiSimLink +- SimDataFormats/TrackerDigiSimLink +- SimDataFormats/TrackingAnalysis +- SimGeneral/TrackingAnalysis +- SimMuon/Configuration +- SimMuon/MCTruth +- TrackingTools/KalmanUpdators +- TrackingTools/PatternTools +- TrackingTools/TrackAssociator +- TrackingTools/TrackFitters +- TrackingTools/TrackRefitter +- TrackingTools/TrajectoryState +- TrackingTools/TransientTrack +- TrackingTools/TransientTrackingRecHit +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/RecoMuon +cericeci: +- DataFormats/CSCRecHit +- DataFormats/GEMRecHit +- DataFormats/DTRecHit +- DataFormats/MuonDetId +- DataFormats/MuonReco +- DataFormats/MuonSeed +- DataFormats/RPCRecHit +- DQMOffline/Muon +- DQMOffline/Trigger +- HLTrigger/Muon +- HLTriggerOffline/Muon +- MuonAnalysis/MuonAssociators +- RecoEgamma/EgammaHLTProducers +- RecoMuon/Configuration +- RecoMuon/CosmicMuonProducer +- RecoMuon/DetLayers +- RecoMuon/GlobalMuonProducer +- RecoMuon/GlobalTrackFinder +- RecoMuon/GlobalTrackingTools +- RecoMuon/L2MuonIsolationProducer +- RecoMuon/L2MuonProducer +- RecoMuon/L2MuonSeedGenerator +- RecoMuon/L3MuonIsolationProducer +- RecoMuon/L3MuonProducer +- RecoMuon/L3TrackFinder +- RecoMuon/MeasurementDet +- RecoMuon/MuonIdentification +- RecoMuon/MuonIsolation +- RecoMuon/MuonIsolationProducers +- RecoMuon/MuonSeedGenerator +- RecoMuon/Navigation +- RecoMuon/Records +- RecoMuon/StandAloneMuonProducer +- RecoMuon/StandAloneTrackFinder +- RecoMuon/TrackerSeedGenerator +- RecoMuon/TrackingTools +- RecoMuon/TransientTrackingRecHit +- SimDataFormats/DigiSimLinks +- SimDataFormats/RPCDigiSimLink +- SimDataFormats/TrackerDigiSimLink +- SimDataFormats/TrackingAnalysis +- SimGeneral/TrackingAnalysis +- SimMuon/Configuration +- SimMuon/MCTruth +- TrackingTools/KalmanUpdators +- TrackingTools/PatternTools +- TrackingTools/TrackAssociator +- TrackingTools/TrackFitters +- TrackingTools/TrackRefitter +- TrackingTools/TrajectoryState +- TrackingTools/TransientTrack +- TrackingTools/TransientTrackingRecHit +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/RecoMuon +Fedespring: +- DataFormats/CSCRecHit +- DataFormats/GEMRecHit +- DataFormats/DTRecHit +- DataFormats/MuonDetId +- DataFormats/MuonReco +- DataFormats/MuonSeed +- DataFormats/RPCRecHit +- DQMOffline/Muon +- DQMOffline/Trigger +- HLTrigger/Muon +- HLTriggerOffline/Muon +- MuonAnalysis/MuonAssociators +- RecoEgamma/EgammaHLTProducers +- RecoMuon/Configuration +- RecoMuon/CosmicMuonProducer +- RecoMuon/DetLayers +- RecoMuon/GlobalMuonProducer +- RecoMuon/GlobalTrackFinder +- RecoMuon/GlobalTrackingTools +- RecoMuon/L2MuonIsolationProducer +- RecoMuon/L2MuonProducer +- RecoMuon/L2MuonSeedGenerator +- RecoMuon/L3MuonIsolationProducer +- RecoMuon/L3MuonProducer +- RecoMuon/L3TrackFinder +- RecoMuon/MeasurementDet +- RecoMuon/MuonIdentification +- RecoMuon/MuonIsolation +- RecoMuon/MuonIsolationProducers +- RecoMuon/MuonSeedGenerator +- RecoMuon/Navigation +- RecoMuon/Records +- RecoMuon/StandAloneMuonProducer +- RecoMuon/StandAloneTrackFinder +- RecoMuon/TrackerSeedGenerator +- RecoMuon/TrackingTools +- RecoMuon/TransientTrackingRecHit +- SimDataFormats/DigiSimLinks +- SimDataFormats/RPCDigiSimLink +- SimDataFormats/TrackerDigiSimLink +- SimDataFormats/TrackingAnalysis +- SimGeneral/TrackingAnalysis +- SimMuon/Configuration +- SimMuon/MCTruth +- TrackingTools/KalmanUpdators +- TrackingTools/PatternTools +- TrackingTools/TrackAssociator +- TrackingTools/TrackFitters +- TrackingTools/TrackRefitter +- TrackingTools/TrajectoryState +- TrackingTools/TransientTrack +- TrackingTools/TransientTrackingRecHit +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/RecoMuon +bellan: +- RecoMuon +- RecoLocalMuon +- MuonAnalysis +- TrackingTools +- DQMOffline/Muon +cbaus: +- GeneratorInterface/ReggeGribovPartonMCInterface +- GeneratorInterface/HiGenCommon +- GeneratorInterface/HydjetInterface +- GeneratorInterface/PyquenInterface +pixel-offline: +- RecoLocalTracker/SiPixelClusterizer +- RecoLocalTracker/SiPixelRecHits +- SimTracker/SiPixelDigitizer +- EventFilter/SiPixelRawToDigi +- DataFormats/SiPixel +- CalibTracker/SiPixel +- CondCore/SiPixelPlugins +- CondFormats/SiPixel +- CondTools/SiPixel +ecal-offline: +- .*[Ee][Cc][Aa][Ll] +- CUDADataFormats/CaloCommon +- CalibCalorimetry/CaloMiscalibTools +- CalibCalorimetry/CaloTPG +- CalibFormats/CaloObjects +- CalibFormats/CaloTPG +- CondFormats/ESObjects +- DataFormats/CaloRecHit +- DQMOffline/CalibCalo +- EventFilter/ESDigiToRaw +- EventFilter/ESRawToDigi +- FastSimulation/CaloGeometryTools +- FastSimulation/CaloHitMakers +- FastSimulation/CaloRecHitsProducer +- FastSimulation/CalorimeterProperties +- FastSimulation/Calorimetry +- Geometry/CaloEventSetup +- Geometry/CaloGeometry +- Geometry/CaloTopology +- IORawData/CaloPatterns +- RecoCaloTools/MetaCollections +- RecoCaloTools/Navigation +- RecoCaloTools/Selectors +- RecoLocalCalo/CaloRecCandCreator +- RecoLocalCalo/Configuration +- SimCalorimetry/CaloSimAlgos +- SimCalorimetry/Configuration +- SimDataFormats/CaloAnalysis +- SimDataFormats/CaloHit +- SimDataFormats/CaloTest +- SimDataFormats/EcalTestBeam +- SimG4CMS/Calo +- SimGeneral/CaloAnalysis +fabferro: +- Alignment/CTPPS +- CalibPPS +- CondCore/CTPPSPlugins +- CondFormats/CTPPSReadoutObjects +- CondTools/CTPPS +- DataFormats/CTPPSAlignment +- DataFormats/CTPPSDetId +- DataFormats/CTPPSDigi +- DataFormats/CTPPSReco +- DQM/CTPPS +- EventFilter/CTPPSRawToDigi +- Geometry/VeryForwardData +- Geometry/VeryForwardGeometry +- Geometry/VeryForwardGeometryBuilder +- Geometry/VeryForwardRPTopology +- RecoCTPPS +forthommel: +- EventFilter/CTPPSRawToDigi +- RecoPPS +- RecoHGCal +- SimPPS/DirectSimProducer +fwyzard: +- FWCore/ServiceRegistry +- FWCore/Services +- HLTrigger/HLTcore +- HLTrigger/JSONMonitoring +- HLTrigger/Timer +- HLTrigger/Tools +gbenelli: +- RecoLocalTracker/ClusterParameterEstimator +- RecoLocalTracker/Configuration +- RecoLocalTracker/Records +- RecoLocalTracker/SiStrip +- RecoLocalTracker/SubCollectionProducers +- CalibTracker/SiStrip +- CalibTracker/Configuration +- CalibTracker/RecordsSimTracker/SiStripDigitizer +- SimTracker/Common +- SimTracker/Configuration +- SimTracker/Records +ghugo83: +- Geometry/TrackerCommonData +gpetruc: +- DataFormats/Candidate +- DataFormats/PatCandidates +- DataFormats/Track +- DataFormats/Trajectory +- DataFormats/NanoAOD +- RecoLocalTracker +- RecoTracker +- TrackingTools +- PhysicsTools/PatUtils +- PhysicsTools/PatAlgos +- PhysicsTools/NanoAOD +hatakeyamak: +- RecoParticleFlow +- RecoHGCal +- Validation/RecoParticleFlow +- Validation/HcalDigis +- Validation/HcalHits +- Validation/HcalRecHits +- Validation/CaloTowers +- DataFormats/ParticleFlowCandidate +- DataFormats/ParticleFlowReco +- DataFormats/PatCandidates +- CommonTools/ParticleFlow +- CommonTools/PileupAlgos +- CommonTools/RecoAlgos +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoLocalCalo/HGC +- SimCalorimetry/HGCalSimProducers +- DataFormats/HGCDigi +- DataFormats/HGCRecHit +- Validation/HGCalValidation +- RecoLocalCalo/HGCalRecAlgos +- RecoLocalCalo/HGCalRecProducers +HuguesBrun: +- DataFormats/CSCRecHit +- DataFormats/GEMRecHit +- DataFormats/DTRecHit +- DataFormats/MuonDetId +- DataFormats/MuonReco +- DataFormats/MuonSeed +- DataFormats/RPCRecHit +- DQMOffline/Muon +- DQMOffline/Trigger +- HLTrigger/Muon +- HLTriggerOffline/Muon +- MuonAnalysis/MuonAssociators +- RecoEgamma/EgammaHLTProducers +- RecoMuon/Configuration +- RecoMuon/CosmicMuonProducer +- RecoMuon/DetLayers +- RecoMuon/GlobalMuonProducer +- RecoMuon/GlobalTrackFinder +- RecoMuon/GlobalTrackingTools +- RecoMuon/L2MuonIsolationProducer +- RecoMuon/L2MuonProducer +- RecoMuon/L2MuonSeedGenerator +- RecoMuon/L3MuonIsolationProducer +- RecoMuon/L3MuonProducer +- RecoMuon/L3TrackFinder +- RecoMuon/MeasurementDet +- RecoMuon/MuonIdentification +- RecoMuon/MuonIsolation +- RecoMuon/MuonIsolationProducers +- RecoMuon/MuonSeedGenerator +- RecoMuon/Navigation +- RecoMuon/Records +- RecoMuon/StandAloneMuonProducer +- RecoMuon/StandAloneTrackFinder +- RecoMuon/TrackerSeedGenerator +- RecoMuon/TrackingTools +- RecoMuon/TransientTrackingRecHit +- SimDataFormats/DigiSimLinks +- SimDataFormats/RPCDigiSimLink +- SimDataFormats/TrackerDigiSimLink +- SimDataFormats/TrackingAnalysis +- SimGeneral/TrackingAnalysis +- SimMuon/Configuration +- SimMuon/MCTruth +- TrackingTools/KalmanUpdators +- TrackingTools/PatternTools +- TrackingTools/TrackAssociator +- TrackingTools/TrackFitters +- TrackingTools/TrackRefitter +- TrackingTools/TrajectoryState +- TrackingTools/TransientTrack +- TrackingTools/TransientTrackingRecHit +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/RecoMuon +jazzitup: +- RecoHI +jbsauvan: +- DataFormats/L1THGCal +- L1Trigger/L1THGCal +jdamgov: +- CondFormats/JetMETObjects +- DQMOffline/JetMET +- DataFormats/JetReco +- DataFormats/METReco +- JetMETCorrections +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoJets +- RecoMET +- Validation/RecoJets +- Validation/RecoMET +jhgoh: +- Alignment/MuonAlignment +- Alignment/MuonAlignmentAlgorithms +- CommonTools/RecoAlgos +- DataFormats/CSCRecHit +- DataFormats/GEMRecHit +- DataFormats/DTRecHit +- DataFormats/MuonDetId +- DataFormats/MuonReco +- DataFormats/MuonSeed +- DataFormats/RPCRecHit +- DQMOffline/Muon +- DQMOffline/Trigger +- HLTrigger/Muon +- HLTriggerOffline/Muon +- MuonAnalysis/MuonAssociators +- RecoLocalMuon +- RecoMuon +- SimDataFormats/DigiSimLinks +- SimDataFormats/RPCDigiSimLink +- SimDataFormats/TrackerDigiSimLink +- SimDataFormats/TrackingAnalysis +- SimGeneral/TrackingAnalysis +- SimMuon +- SimTracker/TrackAssociation +- TrackingTools/KalmanUpdators +- TrackingTools/PatternTools +- TrackingTools/TrackAssociator +- TrackingTools/TrackFitters +- TrackingTools/TrackRefitter +- TrackingTools/TrajectoryState +- TrackingTools/TransientTrack +- TrackingTools/TransientTrackingRecHit +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/RecoMuon +- Validation/RPCRecHits +- Validation/MuonRPCDigis +kkrajczar: +- Validation/RecoHI +kurtejung: +- RecoHI +lecriste: +- RecoHGCal +- RecoLocalCalo/HGCalRecProducers +- Validation/HGCalValidation +lgray: +- RecoEcal +- RecoEgamma +- RecoParticleFlow +- DataFormats/ParticleFlowReco +- DataFormats/ParticleFlowCandidate +- DataFormats/EgammaCandidate +- DataFormats/EgammaReco +- SimCalorimetry/HGCalSimProducers +- DataFormats/HGCDigi +- DataFormats/HGCRecHit +- Validation/HGCalValidation +- RecoLocalCalo/HGCalRecAlgos +- RecoLocalCalo/HGCalRecProducers +- DataFormats/L1THGCal +- L1Trigger/L1THGCal +mandrenguyen: +- RecoHI +- HeavyIonsAnalysis +- DataFormats/HeavyIonEvent +miheejo: +- RecoHI/HiMuonAlgos +- RecoHI/Configuration +mariadalfonso: +- CalibCalorimetry/HcalAlgos +- CondFormats/JetMETObjects +- DataFormats/HcalRecHit +- DataFormats/HcalDigi +- DataFormats/HcalDetId +- DQMOffline/JetMET +- DataFormats/JetReco +- DataFormats/METReco +- JetMETCorrections +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoJets +- RecoMET +- RecoLocalCalo/HcalRecProducers +- RecoLocalCalo/HcalRecAlgos +- SimCalorimetry/HcalSimAlgos +- SimCalorimetry/HcalSimProducers +- Validation/RecoJets +- Validation/RecoMET +mmarionncern: +- CondFormats/JetMETObjects +- DQMOffline/JetMET +- DataFormats/METReco +- JetMETCorrections +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoMET +- RecoParticleFlow +- Validation/RecoMET +mkirsano: +- GeneratorInterface +mmusich: +- Alignment/CommonAlignment +- Alignment/CommonAlignmentAlgorithm +- Alignment/CommonAlignmentParametrization +- Alignment/CommonAlignmentProducer +- Alignment/MillePedeAlignmentAlgorithm +- Alignment/OfflineValidation +- Alignment/ReferenceTrajectories +- Alignment/SurveyAnalysis +- Alignment/TrackerAlignment +- Alignment/TwoBodyDecay +- CalibTracker/Configuration +- CalibTracker/Records +- CalibTracker/SiStrip +- DataFormats/SiStrip +- DPGAnalysis/SiStripTools +- DQM/Si +- DQM/Track +- MuonAnalysis/MomentumScaleCalibration +- RecoLocalTracker/ClusterParameterEstimator +- RecoLocalTracker/Configuration +- RecoLocalTracker/Records +- RecoLocalTracker/SiStrip +- RecoLocalTracker/SubCollectionProducers +- SimTracker/Common +- SimTracker/Configuration +- SimTracker/Records +- SimTracker/SiStripDigitizer +namapane: +- .*Magnetic +nhanvtran: +- CondFormats/JetMETObjects +- DQMOffline/JetMET +- DataFormats/JetReco +- DataFormats/METReco +- JetMETCorrections +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoJets +- RecoMET +- Validation/RecoJets +- Validation/RecoMET +pakhotin: +- Alignment/MuonAlignment +- Alignment/MuonAlignmentAlgorithms +- Alignment/CommonAlignment +- Alignment/CommonAlignmentAlgorithm +- Alignment/CommonAlignmentMonitor +- Alignment/CommonAlignmentProducer +- Alignment/CommonAlignmentParametrization +prolay: +- SimTracker/SiStripDigitizer +- SimTracker/Common +- SimTracker/Configuration +- SimTracker/Records +robervalwalsh: +- EventFilter/SiStripRawToDigi +- CalibTracker/Configuration +- CalibTracker/Records +- CalibTracker/SiStrip +- DataFormats/SiStrip +- DPGAnalysis/SiStripTools +- RecoLocalTracker/ClusterParameterEstimator +- RecoLocalTracker/Configuration +- RecoLocalTracker/Records +- RecoLocalTracker/SiStrip +- RecoLocalTracker/SubCollectionProducers +- SimTracker/Common +- SimTracker/Configuration +- SimTracker/Records +- SimTracker/SiStripDigitizer +rociovilar: +- Validation/RecoMuon +- Validation/MuonIdentification +- Validation/MuonIdentification +- Validation/RecoTracks +- RecoMuon +- DQMOffline +rovere: +- HeterogeneousCore +- CUDADataFormats +- RecoTracker +- RecoLocalTracker +- TrackingTools +- SimTracker +- SimGeneral/TrackingAnalysis +- RecoVertex +- RecoPixelVertexing +- Configuration/StandardSequences +- Validation/RecoTrack +- Validation/RecoVertex +- Validation/Configuration +- Validation/Geometry +- Validation/HGCalValidation +- RecoEgamma/EgammaPhotonProducers +- RecoEgamma/EgammaElectronProducers +- RecoEgamma/Configuration +- RecoEcal/EgammaClusterProducers +- RecoHGCal +- RecoLocalCalo/Configuration +- RecoLocalCalo/HGC +- RecoParticleFlow/PFTracking +- RecoParticleFlow/PFClusterProducer +- DQMOffline/EGamma +- DataFormats +- SimDataFormats +- SimG4CMS +- SimG4Core +- SimCalorimetry +- HLTrigger/Configuration/python/HLT_75e33 +rylanC24: +- Validation/RecoHI +schoef: +- CondFormats/JetMETObjects +- DQMOffline/JetMET +- DataFormats/JetReco +- DataFormats/METReco +- JetMETCorrections +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoJets +- RecoMET +- Validation/RecoJets +- Validation/RecoMET +tlampen: +- Alignment/CommonAlignment +- Alignment/CommonAlignmentAlgorithm +- Alignment/CommonAlignmentParametrization +- Alignment/CommonAlignmentProducer +- Alignment/MillePedeAlignmentAlgorithm +- Alignment/OfflineValidation +- Alignment/ReferenceTrajectories +- Alignment/SurveyAnalysis +- Alignment/TrackerAlignment +- Alignment/TwoBodyDecay +thomreis: +- DataFormats/L1TMuon +- DataFormats/L1Trigger +- EventFilter/L1TRawToDigi +- L1Trigger/L1TCommon +- L1Trigger/L1TMuon +- L1Trigger/L1TNtuples +threus: +- DQM/SiPixel +- DQM/SiStrip +- DQM/Tracker +- DQM/Tracking +- DQM/Integration +- DQMOffline/CalibTracker +- DQMOffline/Configuration +- SimTracker +- DPGAnalysis/SiStripTools +- CalibFormats/SiStripObjects +- Calibration/TkAlCaRecoProducers +- CommonTools/TrackerMap +- CondFormats/SiStripObjects +- DataFormats/SiStrip +- RecoLocalTracker/ +- Validation/Tracker +thuer: +- GeneratorInterface/SherpaInterface +trocino: +- Alignment/MuonAlignment +- Alignment/MuonAlignmentAlgorithms +- DataFormats/CSCRecHit +- DataFormats/GEMRecHit +- DataFormats/DTRecHit +- DataFormats/MuonDetId +- DataFormats/MuonReco +- DataFormats/MuonSeed +- DataFormats/RPCRecHit +- DQMOffline/Muon +- DQMOffline/Trigger +- HLTrigger/Muon +- HLTriggerOffline/Muon +- MuonAnalysis/MuonAssociators +- RecoMuon/Configuration +- RecoMuon/CosmicMuonProducer +- RecoMuon/DetLayers +- RecoMuon/GlobalMuonProducer +- RecoMuon/GlobalTrackFinder +- RecoMuon/GlobalTrackingTools +- RecoMuon/L2MuonIsolationProducer +- RecoMuon/L2MuonProducer +- RecoMuon/L2MuonSeedGenerator +- RecoMuon/L3MuonIsolationProducer +- RecoMuon/L3MuonProducer +- RecoMuon/L3TrackFinder +- RecoMuon/MeasurementDet +- RecoMuon/MuonIdentification +- RecoMuon/MuonIsolation +- RecoMuon/MuonIsolationProducers +- RecoMuon/MuonSeedGenerator +- RecoMuon/Navigation +- RecoMuon/Records +- RecoMuon/StandAloneMuonProducer +- RecoMuon/StandAloneTrackFinder +- RecoMuon/TrackerSeedGenerator +- RecoMuon/TrackingTools +- RecoMuon/TransientTrackingRecHit +- SimDataFormats/DigiSimLinks +- SimDataFormats/RPCDigiSimLink +- SimDataFormats/TrackerDigiSimLink +- SimDataFormats/TrackingAnalysis +- SimGeneral/TrackingAnalysis +- SimMuon/Configuration +- SimMuon/MCTruth +- TrackingTools/KalmanUpdators +- TrackingTools/PatternTools +- TrackingTools/TrackAssociator +- TrackingTools/TrackFitters +- TrackingTools/TrackRefitter +- TrackingTools/TrajectoryState +- TrackingTools/TransientTrack +- TrackingTools/TransientTrackingRecHit +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/RecoMuon +valuev: +- L1Trigger/CSCTriggerPrimitives +venturia: +- DPGAnalysis/SiStripTools +- Validation/RecoVertex +- DQM/SiStripMonitorSummary +- DQM/SiStripMonitorClient +- CommonTools/TrackerMap +- Geometry/TrackerNumberingBuilder +- Geometry/TrackerGeometryBuilder +- Geometry/TrackerCommonData +wddgit: +- FWCore +- IOPool +- Utilities +- IOMC/RandomEngine +- SimDataFormats/RandomEngine +- DataFormats/Common +- DataFormats/FWLite +- DataFormats/Provenance +- DataFormats/StdDictionaries +- DataFormats/Streamer +- DataFormats/TestObjects +- DataFormats/WrappedStdDictionaries +Prasant1993: +- RecoEgamma +- RecoEcal +- EgammaAnalysis +- DataFormats/EgammaCandidates +- DataFormats/EgammaReco +sameasy: +- RecoEgamma +- RecoEcal +- EgammaAnalysis +- DataFormats/EgammaCandidates +- DataFormats/EgammaReco +- RecoHGCal +- Configuration/StandardSequences +- RecoLocalCalo/Configuration +- RecoLocalCalo/HGC +- RecoParticleFlow/PFClusterProducer +- SimCalorimetry +wmtford: +- SimTracker/TrackerHitAssociation +- Validation/TrackerRecHits +- Validation/RecoTrack +yduhm: +- RecoLocalTracker/ClusterParameterEstimator +- RecoLocalTracker/Configuration +- RecoLocalTracker/Records +- RecoLocalTracker/SiStrip +- RecoLocalTracker/SubCollectionProducers +yenjie: +- RecoHI +yetkinyilmaz: +- RecoHI +- HeavyIonsAnalysis +- DataFormats/HeavyIonEvent +yslai: +- RecoHI/HiJetAlgos +- RecoJets/JetProducers +- DataFormats/HeavyIonEvent +dgulhan: +- RecoTracker +- RecoHI +- TrackingTools +- SimTracker +- SimGeneral/TrackingAnalysis +- RecoVertex +- RecoPixelVertexing +- Configuration/StandardSequences +- Validation/RecoTrack +- Validation/RecoVertex +amagitte: +- RecoMuon/GlobalTrackingTools +- DataFormats/MuonReco +Sam-Harper: +- RecoEgamma +- RecoEcal +- EgammaAnalysis +- DataFormats/EgammaCandidates +- DataFormats/EgammaReco +ahinzmann: +- CondFormats/JetMETObjects +- DQMOffline/JetMET +- DataFormats/JetReco +- DataFormats/METReco +- JetMETCorrections +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoJets +- RecoMET +- Validation/RecoJets +- Validation/RecoMET +- CommonTools/ParticleFlow +- CommonTools/PileupAlgos +- CommonTools/RecoAlgos +- FWCore/GuiBrowsers +rchatter: +- .*[Ee][Cc][Aa][Ll] +clelange: +- JetMETCorrections +- RecoJets +- PhysicsTools/NanoAODTools +gkasieczka: +- CondFormats/JetMETObjects +- DQMOffline/JetMET +- DataFormats/JetReco +- DataFormats/METReco +- JetMETCorrections +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoJets +- RecoMET +- Validation/RecoJets +- Validation/RecoMET +- CommonTools/ParticleFlow +- CommonTools/PileupAlgos +- CommonTools/RecoAlgos +- FWCore/GuiBrowsers +rappoccio: +- CondFormats/JetMETObjects +- DQMOffline/JetMET +- DataFormats/JetReco +- DataFormats/METReco +- JetMETCorrections +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoJets +- Validation/RecoJets +- DQM/Physics +- HLTriggerOffline/B2G +- CommonTools/ParticleFlow +- CommonTools/PileupAlgos +- CommonTools/RecoAlgos +matt-komm: +- FastSimulation +Martin-Grunewald: +- L1Trig +- HLTrigger/ +- EventFilter +- Configuration +jdolen: +- CondFormats/JetMETObjects +- DQMOffline/JetMET +- DataFormats/JetReco +- DataFormats/METReco +- JetMETCorrections +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoJets +- RecoMET +- Validation/RecoJets +- Validation/RecoMET +- TopQuarkAnalysis/TopPairBSM +- HLTriggerOffline/B2G +- CommonTools/ParticleFlow +- CommonTools/PileupAlgos +- CommonTools/RecoAlgos +kreczko: +- DataFormats/L1Trigger +- L1Trigger/L1TNtuples +- L1TriggerOffline +pfs: +- SimCalorimetry/HGCalSimProducers +- DataFormats/HGCDigi +- DataFormats/HGCRecHit +- Validation/HGCalValidation +- RecoLocalCalo/HGCalRecAlgos +- RecoLocalCalo/HGCalRecProducers +vandreev11: +- SimCalorimetry/HGCalSimProducers +- DataFormats/HGCDigi +- DataFormats/HGCRecHit +- Validation/HGCalValidation +- RecoLocalCalo/HGCalRecAlgos +- RecoLocalCalo/HGCalRecProducers +sethzenz: +- SimCalorimetry/HGCalSimProducers +- DataFormats/HGCDigi +- DataFormats/HGCRecHit +- Validation/HGCalValidation +- RecoLocalCalo/HGCalRecAlgos +- RecoLocalCalo/HGCalRecProducers +cseez: +- SimCalorimetry/HGCalSimProducers +- DataFormats/HGCDigi +- DataFormats/HGCRecHit +- Validation/HGCalValidation +- RecoLocalCalo/HGCalRecAlgos +- RecoLocalCalo/HGCalRecProducers +alesaggio: +- RecoLocalTracker/ClusterParameterEstimator +- RecoLocalTracker/Configuration +- RecoLocalTracker/Records +- RecoLocalTracker/SiStrip +- RecoLocalTracker/SubCollectionProducers +- DataFormats/SiStrip +- CalibTracker/SiStripChannelGain +ptcox: +- CalibMuon/CSCCalibration +- CondFormats/CSCObjects +- DataFormats/CSCDigi +- DataFormats/CSCRecHit +- DataFormats/MuonDetId +- DQM/CSCMonitorModule +- DQMOffline/Muon +- EventFilter/CSCRawToDigi +- RecoLocalMuon/CSCRecHitD +- RecoLocalMuon/CSCSegment +- RecoLocalMuon/CSCValidation +- RecoLocalMuon/CSCEfficiency +- Geometry/CSCGeometry +- Geometry/CSCGeometryBuilder +- Geometry/MuonCommonData +- Geometry/MuonSimData +- Geometry/MuonNumbering +- L1Trigger/CSCTriggerPrimitives +- SimMuon/CSCDigitizer +- SimMuon/Neutron +fioriNTU: +- DQM/SiPixel +- DQM/SiStripCommon +- DQM/SiStripHistoricInfoClient +- DQM/SiStripMonitor +- DQM/Tracker +- DQM/TrackingMonitor +idebruyn: +- DQM/SiPixel +- DQM/SiStripCommon +- DQM/SiStripHistoricInfoClient +- DQM/SiStripMonitor +- DQM/Tracker +- DQM/TrackingMonitor +gouskos: +- DataFormats/RecoCandidate +- DataFormats/PatCandidates +- DataFormats/METReco +- RecoMET/ +- JetMETCorrections/ +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +calderona: +- DQMOffline/Muon +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/RecoMuon +sviret: +- DataFormats/L1TrackTrigger +- L1Trigger/TrackTrigger +- L1Trigger/TrackFindingAM +- SLHCUpgradeSimulations/Configuration +felicepantaleo: +- Configuration/StandardSequences +- DataFormats/Math +- FWCore/Utilities +- IgTools +- PerfTools +- RecoLocalTracker +- RecoPixelVertexing +- RecoTracker +- TrackingTools +- TrackPropagation +- Validation/RecoTrack +- Validation/RecoVertex +- RecoLocalCalo/HGCalRecAlgos +- DataFormats/HGCRecHit +- RecoLocalCalo/HGCalRecProducers +- RecoParticleFlow/PFClusterProducer +- RecoHGCal +- SimG4CMS/Calo +- SimDataFormats/Associations +- SimDataFormats/CaloAnalysis +mtosi: +- DQMOffline/Trigger +- DQM/HLTEvF +- DQM/HLXMonitor +- DQM/TrigXMonitor +- DQM/TrigXMonitorClient +- HLTriggerOffline/ +- DQM/TrackingMonitor +- DQM/TrackingMonitorSource +- DQM/TrackingMonitorClient +- Validation/RecoTrack +- Validation/RecoVertex +- Validation/TrackerRecHits +- Configuration/StandardSequences +- DPGAnalysis/SiStripTools +- Geometry/Track +- Geometry/CommonTopologies +- RecoLocalTracker +- RecoPixelVertexing +- RecoTracker +- RecoVertex +- SimDataFormats/DigiSimLinks +- SimDataFormats/Track +- SimDataFormats/Vertex +- SimGeneral/TrackingAnalysis +- SimTracker +- SLHCUpgradeSimulations/Configuration +- TrackingTools +- TrackPropagation +ebrondol: +- DataFormats/HGCRecHit +- RecoTracker/CkfPattern +- RecoTracker/Configuration +- RecoTracker/GeometryESProducer +- RecoTracker/IterativeTracking +- RecoTracker/MeasurementDet +- RecoTracker/TkNavigation +- RecoTracker/TrackProducer +- RecoHGCal +- RecoLocalCalo/Configuration +- RecoLocalCalo/HGC +- RecoLocalCalo/HGCalRecAlgos +- RecoLocalCalo/HGCalRecProducers +- RecoParticleFlow/PFTracking +- RecoParticleFlow/PFClusterProducer +- TrackingTools +- TrackPropagation +- Validation/Configuration +- Validation/Geometry +- Validation/HGCalValidation +- Validation/RecoTrack +alberto-sanchez: +- GeneratorInterface +seemasharmafnal: +- CondFormats/JetMETObjects +- CondFormats/ +- RecoParticleFlow/ +- DQMOffline/JetMET +- DataFormats/JetReco +- DataFormats/METReco +- JetMETCorrections/ +- PhysicsTools/PatAlgos +- PhysicsTools/PatUtils +- PhysicsTools/RecoAlgos +- RecoJets/ +- RecoMET/ +- Validation/RecoJets +- Validation/RecoMET +erikbutz: +- DQM/SiStripCommissioningAnalysis +- DQM/SiStripCommissioningClients +- DQM/SiStripCommissioningDbClients +- DQM/SiStripCommissioningSources +- DQM/SiStripCommissioningSummary +- DQM/SiStripCommon +- OnlineDB/SiStripConfigDb +- OnlineDB/SiStripESSources +- OnlineDB/SiStripO2O +- DataFormats/SiStripCommon +- CondFormats/SiStripObjects +- L1Trigger/TrackFindingTMTT +- L1Trigger/TrackFindingTracklet +- L1Trigger/TrackTrigger +- L1Trigger/TrackerDTC +DryRun: +- DQM/HcalCommon +- DQM/HcalTasks +jainshilpi: + - RecoEgamma + - RecoEcal + - EgammaAnalysis + - DataFormats/EgammaCandidates + - DataFormats/EgammaReco +edjtscott: +- RecoLocalCalo/HGCalRecAlgos +- RecoLocalCalo/HGCalRecProducers +varuns23: + - RecoEgamma + - RecoEcal + - EgammaAnalysis + - DataFormats/EgammaCandidates + - DataFormats/EgammaReco +giovanni-mocellin: +- L1Trigger/CSCTriggerPrimitives +- L1Trigger/CSCCommonTrigger +- L1Trigger/ME0Trigger +- SimMuon/GEMDigitizer +- SimMuon/CSCDigitizer +- SimMuon/Configuration +- DataFormats/CSCDigi +- DataFormats/GEMDigi +- CondFormats/CSCObjects +- Geometry/GEMGeometryBuilder +- Geometry/GEMGeometry +echabert: +- CalibTracker/Configuration +- CalibTracker/Records +- CalibTracker/SiStrip +- DataFormats/SiStrip +- DPGAnalysis/SiStripTools +- RecoLocalTracker/ClusterParameterEstimator +- RecoLocalTracker/Configuration +- RecoLocalTracker/Records +- RecoLocalTracker/SiStrip +- RecoLocalTracker/SubCollectionProducers +- SimTracker/Common +- SimTracker/Configuration +- SimTracker/Records +- SimTracker/SiStripDigitizer +jandrea: +- DQM/SiPixel +- DQM/SiStripCommon +- DQM/SiStripHistoricInfoClient +- DQM/SiStripMonitor +- DQM/Tracker +- DQM/TrackingMonitor +- DPGAnalysis/SiStripTools +grzanka: +- Alignment/CTPPS +- CalibPPS/ESProducers +- CondFormats/PPSObjects +- DQM/CTPPS +- DataFormats/CTPPSDetId +- DataFormats/CTPPSDigi +- DataFormats/CTPPSReco +- DataFormats/ProtonReco +- EventFilter/CTPPSRawToDigi +- Geometry/VeryForwardData +- Geometry/VeryForwardGeometry +- Geometry/VeryForwardGeometryBuilder +- Geometry/VeryForwardRPTopology +- IOMC/EventVertexGenerators +- IOMC/ParticleGuns +- RecoPPS/* +- Validation/CTPPS +hqucms: +- PhysicsTools/MXNet +- RecoBTag/MXNet +- RecoBTag/FeatureTools +adewit: +- Alignment +vargasa: +- Configuration/Geometry +- Geometry/TrackerCommonData +- Geometry/TrackerNumberingBuilder +- DetectorDescription/DDCMS +- Validation/Geometry +- SimTracker/TrackerMaterialAnalysis +rbartek: +- Validation/Geometry +rishabhCMS: +- Validation/Geometry +jshlee: +- CondCore/GEMPlugins +- CondFormats/GEMObjects +- L1Trigger/ME0Trigger +- SimMuon/GEMDigitizer +- DataFormats/GEMDigi +- DataFormats/GEMRecHit +- EventFilter/GEMRawToDigi +- Geometry/GEMGeometryBuilder +- Geometry/GEMGeometry +- RecoLocalMuon/GEMRecHit +- RecoLocalMuon/GEMSegment +- Validation/MuonGEMDigis +- Validation/MuonGEMHits +- Validation/MuonGEMRecHits +apsallid: +- Validation/Configuration +- Validation/Geometry +- Validation/HGCalValidation +- RecoLocalCalo/Configuration +- RecoLocalCalo +- DataFormats/HGCDigi +- DataFormats/HGCRecHit +- DataFormats/ForwardDetId +- RecoHGCal +- SimTracker/TrackerMaterialAnalysis +- SimCalorimetry/HGCalSimProducers +- SimDataFormats +riga: +- PhysicsTools/TensorFlow +- PhysicsTools/ONNXRuntime +- PhysicsTools/MXNet +- HeterogeneousCore/SonicCore +- HeterogeneousCore/SonicTriton +afiqaize: +- RecoEgamma +- RecoEcal +- EgammaAnalysis +- DataFormats/EgammaCandidates +- DataFormats/EgammaReco +missirol: +- .*DataFormats +- .*L1T +- .*HL +- .*Trig +- CommonTools +- Configuration +- EventFilter +- FWCore +- Heterogeneous +- Reco +- SLHCUpgradeSimulations +- SimTracker +- TrackingTools +- Validation +sobhatta: +- RecoEgamma +- RecoEcal +- EgammaAnalysis +- DataFormats/EgammaCandidates +- DataFormats/EgammaReco +- RecoHGCal +kpedro88: +- HeterogeneousCore/SonicCore +- HeterogeneousCore/SonicTriton +fabiocos: +- CondFormats/GeometryObjects +- Configuration +- DataFormats/DetId +- DataFormats/ForwardDetId +- DataFormats/FTLDigi +- DataFormats/FTLRecHit +- DataFormats/Math +- DetectorDescription +- Geometry +- IOMC +- Mixing +- RecoLocalFastTime +- RecoMTD +- SimDataFormats +- SimFastTiming +- SimG4CMS +- SimG4Core +- SimGeneral +- Utilities/RelMon +- Validation/Geometry +- Validation/MtdValidation +abdoulline: +- CondCore/HcalPlugins +- CondFormats/HcalMapping +- CondFormats/HcalObjects +- CalibCalorimetry/HcalAlgos +- CalibCalorimetry/HcalPlugins +- CalibCalorimetry/HcalTPGAlgos +- CalibCalorimetry/HcalTPGEventSetup +- CalibCalorimetry/HcalTPGIO +- CalibFormats/HcalObjects +- DQM/HcalCommon +- DQM/HcalMonitorClient +- DQM/HcalMonitorModule +- DQM/HcalMonitorTasks +- DQM/HcalTasks +- DQMOffline/Hcal +- DataFormats/HcalCalibObjects +- DataFormats/HcalDetId +- DataFormats/HcalDigi +- DataFormats/HcalRecHit +- EventFilter/HcalRawToDigi +- RecoLocalCalo/HcalLaserReco +- RecoLocalCalo/HcalRecAlgos +- RecoLocalCalo/HcalRecProducers +- SimCalorimetry/HcalSimAlgos +- SimCalorimetry/HcalSimProducers +- SimCalorimetry/HcalTrigPrimAlgos +- SimCalorimetry/HcalTrigPrimProducers +- SimCalorimetry/HcalZeroSuppressionProducers +- Validation/HcalDigis +- Validation/HcalHits +- Validation/HcalRecHits +- Validation/CaloTowers +slomeo: +- Configuration/Geometry +- Configuration/PyReleaseValidation +- Configuration/StandardSequences +- DetectorDescription/DDCMS +- Geometry/CMSCommonData +- Geometry/CSCGeometry +- Geometry/CSCGeometryBuilder +- Geometry/DTGeometry +- Geometry/DTGeometryBuilder +- Geometry/GEMGeometry +- Geometry/GEMGeometryBuilder +- Geometry/MuonCommonData +- Geometry/MuonNumbering +- Geometry/MuonSimData +- Geometry/RPCGeometry +- Geometry/RPCGeometryBuilder +- SimG4CMS/ +- SimG4Core/ +- SimGeneral/ +- SimMuon/ +JanFSchulte: +- RecoLocalTracker +- RecoPixelVertexing +- RecoTracker +- RecoVertex +- TrackingTools +- TrackPropagation +- DQMOffline/Muon +- DataFormats/L1GlobalMuonTrigger +- DataFormats/L1GlobalMuonTrigger +- DataFormats/L1TMuon +- DataFormats/L1TMuonPhase2 +- DataFormats/MuonReco +- DataFormats/MuonData +- DataFormats/MuonDetId +- DataFormats/MuonSeed +- L1Trigger/CSCTrackFinder +- L1Trigger/CSCTriggerPrimitives +- L1Trigger/DTTrackFinder +- L1Trigger/DTTraco +- L1Trigger/DTTrigger +- L1Trigger/DTTriggerPhase2 +- L1Trigger/DTTriggerServerPhi +- L1Trigger/DTTriggerServerTheta +- L1Trigger/DTUtilities +- L1Trigger/GlobalMuonTrigger +- L1Trigger/L1TGEM +- L1Trigger/L1TMuon +- L1Trigger/L1TMuonBarrel +- L1Trigger/L1TMuonEndcap +- L1Trigger/L1TMuonOverlap +- L1Trigger/L1TMuonOverlapPhase1 +- L1Trigger/RPCTrigger +- MuonAnalysis +- RecoMuon +- SimMuon +- Validation/MuonCSCDigis +- Validation/MuonDTDigis +- Validation/MuonGEMDigis +- Validation/MuonGEMHits +- Validation/MuonGEMRecHits +- Validation/MuonHits +- Validation/MuonIdentification +- Validation/MuonIsolation +- Validation/MuonME0Validation +- Validation/MuonRPCDigis +- Validation/MuonRPCGeometry +- Validation/RPCRecHits +- Validation/RecoMuon +watson-ij: +- CondCore/GEMPlugins +- CondFormats/GEMObjects +- L1Trigger/ME0Trigger +- SimMuon/GEMDigitizer +- DataFormats/GEMDigi +- DataFormats/GEMRecHit +- EventFilter/GEMRawToDigi +- Geometry/GEMGeometryBuilder +- Geometry/GEMGeometry +- RecoLocalMuon/GEMRecHit +- RecoLocalMuon/GEMSegment +- RecoLocalMuon/GEMCSCSegment +- Validation/MuonGEMDigis +- Validation/MuonGEMHits +- Validation/MuonGEMRecHits +- DQM/GEM +- Geometry/MuonCommonData +trk-dqm: +- DQM/SiOuterTracker +- DQM/SiPixelCommon +- DQM/SiPixelMonitorClient +- DQM/SiPixelMonitorCluster +- DQM/SiPixelMonitorDigi +- DQM/SiPixelMonitorRawData +- DQM/SiPixelMonitorRecHit +- DQM/SiPixelMonitorTrack +- DQM/SiPixelPhase1Common +- DQM/SiPixelPhase1Config +- DQM/SiPixelPhase1Summary +- DQM/SiPixelPhase1Track +- DQM/SiStripCommon +- DQM/SiStripMonitorClient +- DQM/SiStripMonitorCluster +- DQM/SiStripMonitorDigi +- DQM/SiStripMonitorHardware +- DQM/SiStripMonitorPedestals +- DQM/SiStripMonitorSummary +- DQM/SiStripMonitorTrack +- DQM/SiTrackerPhase2 +- DQM/TrackerCommon +- DQM/TrackerMonitorTrack +- DQM/TrackingMonitor +- DQM/TrackingMonitorClient +- DQM/TrackingMonitorSource +- Validation/SiOuterTrackerV +- Validation/SiPixelPhase1ConfigV/python +- Validation/SiPixelPhase1DigisV +- Validation/SiPixelPhase1HitsV +- Validation/SiPixelPhase1RecHitsV +- Validation/SiPixelPhase1TrackClustersV +- Validation/SiPixelPhase1TrackingParticleV +- Validation/SiTrackerPhase2V +- Validation/TrackerConfiguration +- Validation/TrackerDigis +- Validation/TrackerHits +- Validation/TrackerRecHits +skinnari: +- L1Trigger/TrackFindingTMTT +- L1Trigger/TrackFindingTracklet +- L1Trigger/TrackTrigger +- L1Trigger/TrackerDTC +ram1123: + - RecoEgamma + - RecoEcal + - EgammaAnalysis + - DataFormats/EgammaCandidates +dinyar: + - DataFormats/L1TMuon + - DataFormats/L1Trigger + - EventFilter/L1TRawToDigi + - L1Trigger/L1TCommon + - L1Trigger/L1TMuon + - L1Trigger/L1TNtuples +tau-pog: + - RecoTauTag/ + - DataFormats/TauReco + - PhysicsTools/PatAlgos +francescobrivio: +- DQM/BeamMonitor +- DQM/Integration +- RecoVertex/BeamSpotProducer +valsdav: +- RecoEcal +- RecoEgamma +- SimCalorimetry/EcalTrigPrimAlgos +- SimCalorimetry/EcalTrigPrimProducers +- CalibCalorimetry/EcalTPGTools +eyigitba: +- DataFormats/L1TMuon +- DataFormats/L1Trigger +- EventFilter/L1TRawToDigi +- L1Trigger/L1TCommon +- L1Trigger/L1TMuon +- L1Trigger/L1TNtuples +- L1Trigger/L1TMuonEndCap +- L1Trigger/CSCTriggerPrimitives +- L1Trigger/CSCCommonTrigger +- DataFormats/CSCDigi +- DataFormats/GEMDigi +youyingli: +- Validation/Configuration +- Validation/Geometry +- Validation/HGCalValidation +- RecoLocalCalo/Configuration +- RecoLocalCalo +- DataFormats/HGCDigi +- DataFormats/HGCRecHit +- DataFormats/ForwardDetId +- RecoHGCal +- SimTracker/TrackerMaterialAnalysis +- SimCalorimetry/HGCalSimProducers +- SimDataFormats +- Configuration/Skimming +- DPGAnalysis/Skims +a-kapoor: + - RecoEgamma + - RecoEcal + - EgammaAnalysis + - DataFormats/EgammaCandidates + - DataFormats/EgammaReco +SohamBhattacharya: +- HLTrigger/Configuration/python/HLT_75e33 +AnnikaStein: +- Configuration/Eras +- DataFormats/NanoAOD +- DPGAnalysis/Skims +- PhysicsTools/MXNet +- PhysicsTools/NanoAOD +- PhysicsTools/ONNXRuntime +- PhysicsTools/SelectorUtils +- RecoJets/JetProducers +jlidrych: +- DataFormats/SiStrip +- CUDADataFormats/SiStripCluster +- RecoLocalTracker/ClusterParameterEstimator +- RecoLocalTracker/Configuration +- RecoLocalTracker/Records +- RecoLocalTracker/SiStrip +- RecoLocalTracker/SubCollectionProducers +lenzip: +- PhysicsTools/NanoAODTools diff --git a/tests/Framework.py b/tests/Framework.py new file mode 100644 index 000000000000..fd9ebca2213d --- /dev/null +++ b/tests/Framework.py @@ -0,0 +1,376 @@ +############################ Copyrights and license ############################ +# # +# Copyright 2012 Vincent Jacques # +# Copyright 2012 Zearin # +# Copyright 2013 AKFish # +# Copyright 2013 Vincent Jacques # +# Copyright 2014 Vincent Jacques # +# Copyright 2015 Uriel Corfa # +# Copyright 2016 Peter Buckley # +# Copyright 2017 Chris McBride # +# Copyright 2017 Hugo # +# Copyright 2017 Simon # +# Copyright 2018 Jacopo Notarstefano # +# Copyright 2018 Laurent Mazuel # +# Copyright 2018 Mike Miller # +# Copyright 2018 Wan Liuyang # +# Copyright 2018 sfdye # +# # +# This file is part of PyGithub. # +# http://pygithub.readthedocs.io/ # +# # +# PyGithub is free software: you can redistribute it and/or modify it under # +# the terms of the GNU Lesser General Public License as published by the Free # +# Software Foundation, either version 3 of the License, or (at your option) # +# any later version. # +# # +# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY # +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more # +# details. # +# # +# You should have received a copy of the GNU Lesser General Public License # +# along with PyGithub. If not, see . # +# # +################################################################################ + +import difflib +import io +import json +import os +import re +import sys +import traceback +import unittest + +import github +import httpretty # type: ignore +import pytest +from requests.structures import CaseInsensitiveDict +from urllib3.util import Url # type: ignore + + +def readLine(file_): + line = file_.readline() + if isinstance(line, bytes): + line = line.decode("utf-8") + return line.strip() + + +class FakeHttpResponse: + def __init__(self, status, headers, output): + self.status = status + self.__headers = headers + self.__output = output + + def getheaders(self): + return self.__headers + + def read(self): + return self.__output + + +def fixAuthorizationHeader(headers): + if "Authorization" in headers: + if headers["Authorization"].endswith("ZmFrZV9sb2dpbjpmYWtlX3Bhc3N3b3Jk"): + # This special case is here to test the real Authorization header + # sent by PyGithub. It would have avoided issue https://github.com/jacquev6/PyGithub/issues/153 + # because we would have seen that Python 3 was not generating the same + # header as Python 2 + pass + elif headers["Authorization"].startswith("token "): + headers["Authorization"] = "token private_token_removed" + elif headers["Authorization"].startswith("Basic "): + headers["Authorization"] = "Basic login_and_password_removed" + elif headers["Authorization"].startswith("Bearer "): + headers["Authorization"] = "Bearer jwt_removed" + + +class RecordingConnection: + def __init__(self, file, protocol, host, port, *args, **kwds): + # write operations make the assumption that the file is not in binary mode + assert isinstance(file, io.TextIOBase) + self.__file = file + self.__protocol = protocol + self.__host = host + self.__port = port + self.__cnx = self._realConnection(host, port, *args, **kwds) + + def request(self, verb, url, input, headers): + self.__cnx.request(verb, url, input, headers) + # fixAuthorizationHeader changes the parameter directly to remove Authorization token. + # however, this is the real dictionary that *will be sent* by "requests", + # since we are writing here *before* doing the actual request. + # So we must avoid changing the real "headers" or this create this: + # https://github.com/PyGithub/PyGithub/pull/664#issuecomment-389964369 + # https://github.com/PyGithub/PyGithub/issues/822 + # Since it's dict[str, str], a simple copy is enough. + anonymous_headers = headers.copy() + fixAuthorizationHeader(anonymous_headers) + self.__writeLine(self.__protocol) + self.__writeLine(verb) + self.__writeLine(self.__host) + self.__writeLine(self.__port) + self.__writeLine(url) + self.__writeLine(anonymous_headers) + self.__writeLine(str(input).replace("\n", "").replace("\r", "")) + + def getresponse(self): + res = self.__cnx.getresponse() + + status = res.status + headers = res.getheaders() + output = res.read() + + self.__writeLine(status) + self.__writeLine(list(headers)) + self.__writeLine(output) + + return FakeHttpResponse(status, headers, output) + + def close(self): + self.__writeLine("") + return self.__cnx.close() + + def __writeLine(self, line): + self.__file.write(str(line) + "\n") + + +class RecordingHttpConnection(RecordingConnection): + _realConnection = github.Requester.HTTPRequestsConnectionClass + + def __init__(self, file, *args, **kwds): + super().__init__(file, "http", *args, **kwds) + + +class RecordingHttpsConnection(RecordingConnection): + _realConnection = github.Requester.HTTPSRequestsConnectionClass + + def __init__(self, file, *args, **kwds): + super().__init__(file, "https", *args, **kwds) + + +class ReplayingConnection: + def __init__(self, file, protocol, host, port, *args, **kwds): + self.__file = file + self.__protocol = protocol + self.__host = host + self.__port = port + self.response_headers = CaseInsensitiveDict() + + self.__cnx = self._realConnection(host, port, *args, **kwds) + + def request(self, verb, url, input, headers): + full_url = Url(scheme=self.__protocol, host=self.__host, port=self.__port, path=url) + + httpretty.register_uri(verb, full_url.url, body=self.__request_callback) + + self.__cnx.request(verb, url, input, headers) + + def __readNextRequest(self, verb, url, input, headers): + fixAuthorizationHeader(headers) + assert self.__protocol == readLine(self.__file) + assert verb == readLine(self.__file) + assert self.__host == readLine(self.__file) + assert str(self.__port) == readLine(self.__file) + assert self.__splitUrl(url) == self.__splitUrl(readLine(self.__file)) + assert headers == eval(readLine(self.__file)) + expectedInput = readLine(self.__file) + if isinstance(input, str): + trInput = input.replace("\n", "").replace("\r", "") + if input.startswith("{"): + assert json.loads(trInput) == json.loads(expectedInput) + else: + assert trInput == expectedInput + else: + # for non-string input (e.g. upload asset), let it pass. + pass + + def __splitUrl(self, url): + splitedUrl = url.split("?") + if len(splitedUrl) == 1: + return splitedUrl + assert len(splitedUrl) == 2 + base, qs = splitedUrl + return (base, sorted(qs.split("&"))) + + def __request_callback(self, request, uri, response_headers): + self.__readNextRequest( + self.__cnx.verb, self.__cnx.url, self.__cnx.input, self.__cnx.headers + ) + + status = int(readLine(self.__file)) + self.response_headers = CaseInsensitiveDict(eval(readLine(self.__file))) + output = bytearray(readLine(self.__file), "utf-8") + readLine(self.__file) + + # make a copy of the headers and remove the ones that interfere with the response handling + adding_headers = CaseInsensitiveDict(self.response_headers) + adding_headers.pop("content-length", None) + adding_headers.pop("transfer-encoding", None) + adding_headers.pop("content-encoding", None) + + response_headers.update(adding_headers) + return [status, response_headers, output] + + def getresponse(self): + # call original connection, this will go all the way down to the python socket and will be intercepted by httpretty + response = self.__cnx.getresponse() + + # restore original headers to the response + response.headers = self.response_headers + + return response + + def close(self): + self.__cnx.close() + + +class ReplayingHttpConnection(ReplayingConnection): + _realConnection = github.Requester.HTTPRequestsConnectionClass + + def __init__(self, file, *args, **kwds): + super().__init__(file, "http", *args, **kwds) + + +class ReplayingHttpsConnection(ReplayingConnection): + _realConnection = github.Requester.HTTPSRequestsConnectionClass + + def __init__(self, file, *args, **kwds): + super().__init__(file, "https", *args, **kwds) + + +class BasicTestCase(unittest.TestCase): + recordMode = False + tokenAuthMode = False + jwtAuthMode = False + retry = None + pool_size = None + replayDataFolder = os.path.join(os.path.dirname(__file__), "ReplayData") + + def setUp(self): + super().setUp() + self.__fileName = "" + self.__file = None + if ( + self.recordMode + ): # pragma no cover (Branch useful only when recording new tests, not used during automated tests) + github.Requester.Requester.injectConnectionClasses( + lambda ignored, *args, **kwds: RecordingHttpConnection( + self.__openFile("w"), *args, **kwds + ), + lambda ignored, *args, **kwds: RecordingHttpsConnection( + self.__openFile("w"), *args, **kwds + ), + ) + import GithubCredentials # type: ignore + + self.login = GithubCredentials.login + self.password = GithubCredentials.password + self.oauth_token = GithubCredentials.oauth_token + self.jwt = GithubCredentials.jwt + else: + github.Requester.Requester.injectConnectionClasses( + lambda ignored, *args, **kwds: ReplayingHttpConnection( + self.__openFile("r"), *args, **kwds + ), + lambda ignored, *args, **kwds: ReplayingHttpsConnection( + self.__openFile("r"), *args, **kwds + ), + ) + self.login = "login" + self.password = "password" + self.oauth_token = "oauth_token" + self.jwt = "jwt" + + httpretty.enable(allow_net_connect=False) + + def tearDown(self): + super().tearDown() + httpretty.disable() + httpretty.reset() + self.__closeReplayFileIfNeeded() + github.Requester.Requester.resetConnectionClasses() + + def __openFile(self, mode): + for _, _, functionName, _ in traceback.extract_stack(): + if ( + functionName.startswith("test") + or functionName == "setUp" + or functionName == "tearDown" + ): + if ( + functionName != "test" + ): # because in class Hook(Framework.TestCase), method testTest calls Hook.test + fileName = os.path.join( + self.replayDataFolder, + f"{self.__class__.__name__}.{functionName}.txt", + ) + if fileName != self.__fileName: + self.__closeReplayFileIfNeeded() + self.__fileName = fileName + self.__file = open(self.__fileName, mode, encoding="utf-8") + return self.__file + + def __closeReplayFileIfNeeded(self): + if self.__file is not None: + if ( + not self.recordMode + ): # pragma no branch (Branch useful only when recording new tests, not used during automated tests) + self.assertEqual(readLine(self.__file), "") + self.__file.close() + + def assertListKeyEqual(self, elements, key, expectedKeys): + realKeys = [key(element) for element in elements] + self.assertEqual(realKeys, expectedKeys) + + def assertListKeyBegin(self, elements, key, expectedKeys): + realKeys = [key(element) for element in elements[: len(expectedKeys)]] + self.assertEqual(realKeys, expectedKeys) + + +class TestCase(BasicTestCase): + def doCheckFrame(self, obj, frame): + if obj._headers == {} and frame is None: + return + if obj._headers is None and frame == {}: + return + self.assertEqual(obj._headers, frame[2]) + + def getFrameChecker(self): + return lambda requester, obj, frame: self.doCheckFrame(obj, frame) + + def setUp(self): + super().setUp() + + # Set up frame debugging + github.GithubObject.GithubObject.setCheckAfterInitFlag(True) + github.Requester.Requester.setDebugFlag(True) + github.Requester.Requester.setOnCheckMe(self.getFrameChecker()) + + if self.tokenAuthMode: + self.g = github.Github(self.oauth_token, retry=self.retry, per_page=100) + elif self.jwtAuthMode: + self.g = github.Github(jwt=self.jwt, retry=self.retry, per_page=100) + else: + self.g = github.Github(self.login, self.password, retry=self.retry, per_page=100) + + +def activateRecordMode(): # pragma no cover (Function useful only when recording new tests, not used during automated tests) + BasicTestCase.recordMode = True + + +def activateTokenAuthMode(): # pragma no cover (Function useful only when recording new tests, not used during automated tests) + BasicTestCase.tokenAuthMode = True + + +def activateJWTAuthMode(): # pragma no cover (Function useful only when recording new tests, not used during automated tests) + BasicTestCase.jwtAuthMode = True + + +def enableRetry(retry): + BasicTestCase.retry = retry + + +def setPoolSize(pool_size): + BasicTestCase.pool_size = pool_size diff --git a/tests/PRActionData/TestProcessPr.test_abort.json b/tests/PRActionData/TestProcessPr.test_abort.json new file mode 100644 index 000000000000..67af22412aa6 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_abort.json @@ -0,0 +1,145 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1", + "2056820593": "+1", + "2056903278": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [ + "tests-pending" + ] + }, + { + "type": "remove-label", + "data": [ + "tests-approved" + ] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-abort-iarspider-cmssw-cmssw-17.properties", + "data": { + "SKIP_TESTS": "header,static", + "PULL_REQUESTS": "iarspider-cmssw/cmssw#17 cms-sw/cms-bot#2134", + "RELEASE_FORMAT": "CMSSW_14_1_CPP20_X", + "EXTRA_RELVALS_TESTS": "THREADING GPU HIGH_STATS NANO", + "CONTEXT_PREFIX": "cms/17" + } + } + }, + { + "type": "emoji", + "data": [ + 2056930228, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "pending", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228", + "description": "Aborted, waiting for authorized user to issue the test command.", + "context": "bot/17/jenkins" + } + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228", + "description": "Comment by iarspider at 2024-04-15 13:58:14 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_assign.json b/tests/PRActionData/TestProcessPr.test_assign.json new file mode 100644 index 000000000000..8582a519670e --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_assign.json @@ -0,0 +1,105 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "create-comment", + "data": "New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks" + }, + { + "type": "add-label", + "data": [ + "db-pending", + "dqm-pending" + ] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593", + "description": "Comment by iarspider at 2024-04-15 12:59:28 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_clean_squash.json b/tests/PRActionData/TestProcessPr.test_clean_squash.json new file mode 100644 index 000000000000..8d933df5c724 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_clean_squash.json @@ -0,0 +1,210 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": true, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": true, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": true, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": true, + "time": 1712819089 + }, + "35f9a4c06b006029da40ed8858e0dae4abd52cb3": { + "time": 1712829250, + "squashed": false, + "files": [] + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1", + "2056820593": "+1", + "2056903278": "+1", + "2056930228": "+1", + "2056934192": "+1", + "2056935714": "+1", + "2056946596": "-1", + "2056966759": "+1" + }, + "last_seen_sha": "35f9a4c06b006029da40ed8858e0dae4abd52cb3", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056934192, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056935714, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056946596, + "-1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056966759, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "35f9a4c06b006029da40ed8858e0dae4abd52cb3", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/17/jenkins" + } + }, + { + "type": "add-label", + "data": [ + "code-checks-pending" + ] + }, + { + "type": "remove-label", + "data": [ + "code-checks-approved" + ] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-code-checks-iarspider-cmssw-cmssw-17.properties", + "data": { + "PULL_REQUEST": "17", + "CONTEXT_PREFIX": "cms/17", + "CMSSW_TOOL_CONF": "", + "APPLY_PATCH": "false" + } + } + }, + { + "type": "status", + "data": { + "commit": "35f9a4c06b006029da40ed8858e0dae4abd52cb3", + "state": "pending", + "target_url": null, + "description": "code-checks requested", + "context": "cms/17/code-checks" + } + }, + { + "type": "status", + "data": { + "commit": "35f9a4c06b006029da40ed8858e0dae4abd52cb3", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593", + "description": "2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}", + "context": "bot/17/test_parameters" + } + }, + { + "type": "emoji", + "data": [ + 2056820593, + "+1", + true + ] + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "35f9a4c06b006029da40ed8858e0dae4abd52cb3", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056966759", + "description": "Comment by iarspider at 2024-04-15 14:14:24 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_close.json b/tests/PRActionData/TestProcessPr.test_close.json new file mode 100644 index 000000000000..dc869e19a25c --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_close.json @@ -0,0 +1,123 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1", + "2056820593": "+1", + "2056903278": "+1", + "2056930228": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056934192, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "close", + "data": null + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056934192", + "description": "Comment by iarspider at 2024-04-15 14:00:05 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_code_check_approved.json b/tests/PRActionData/TestProcessPr.test_code_check_approved.json new file mode 100644 index 000000000000..df407db0822b --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_code_check_approved.json @@ -0,0 +1,61 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + } + }, + "emoji": {}, + "last_seen_sha": "2a9454e30606b17e52000110972998326ce9e428", + "signatures": {} + } + }, + { + "type": "status", + "data": { + "commit": "2a9454e30606b17e52000110972998326ce9e428", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/17/jenkins" + } + }, + { + "type": "add-label", + "data": [ + "code-checks-approved" + ] + }, + { + "type": "remove-label", + "data": [ + "code-checks-pending" + ] + }, + { + "type": "status", + "data": { + "commit": "2a9454e30606b17e52000110972998326ce9e428", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271", + "description": "Check details", + "context": "cms/17/code-checks" + } + }, + { + "type": "status", + "data": { + "commit": "2a9454e30606b17e52000110972998326ce9e428", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271", + "description": "Comment by iarspider at 2024-04-09 13:25:57 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_dirty_squash.json b/tests/PRActionData/TestProcessPr.test_dirty_squash.json new file mode 100644 index 000000000000..fe4f83f7558c --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_dirty_squash.json @@ -0,0 +1,213 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": true, + "time": 1711538467 + }, + "35f9a4c06b006029da40ed8858e0dae4abd52cb3": { + "files": [], + "squashed": true, + "time": 1712829250 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": true, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": true, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": true, + "time": 1712819089 + }, + "1d7419a436293c0337ca346fe868cb50cfdedc18": { + "time": 1713255947, + "squashed": false, + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ] + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1", + "2056820593": "+1", + "2056903278": "+1", + "2056930228": "+1", + "2056934192": "+1", + "2056935714": "+1", + "2056946596": "-1", + "2056966759": "+1" + }, + "last_seen_sha": "1d7419a436293c0337ca346fe868cb50cfdedc18", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056934192, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056935714, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056946596, + "-1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056966759, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "1d7419a436293c0337ca346fe868cb50cfdedc18", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/17/jenkins" + } + }, + { + "type": "add-label", + "data": [] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-code-checks-iarspider-cmssw-cmssw-17.properties", + "data": { + "PULL_REQUEST": "17", + "CONTEXT_PREFIX": "cms/17", + "CMSSW_TOOL_CONF": "", + "APPLY_PATCH": "false" + } + } + }, + { + "type": "status", + "data": { + "commit": "1d7419a436293c0337ca346fe868cb50cfdedc18", + "state": "pending", + "target_url": null, + "description": "code-checks requested", + "context": "cms/17/code-checks" + } + }, + { + "type": "status", + "data": { + "commit": "1d7419a436293c0337ca346fe868cb50cfdedc18", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593", + "description": "2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}", + "context": "bot/17/test_parameters" + } + }, + { + "type": "emoji", + "data": [ + 2056820593, + "+1", + true + ] + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "1d7419a436293c0337ca346fe868cb50cfdedc18", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056966759", + "description": "Comment by iarspider at 2024-04-15 14:14:24 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_hold.json b/tests/PRActionData/TestProcessPr.test_hold.json new file mode 100644 index 000000000000..1713a8ce5824 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_hold.json @@ -0,0 +1,86 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "create-comment", + "data": "Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all" + }, + { + "type": "add-label", + "data": [ + "hold" + ] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513", + "description": "Comment by iarspider at 2024-04-15 12:30:19 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_invalid_type.json b/tests/PRActionData/TestProcessPr.test_invalid_type.json new file mode 100644 index 000000000000..55b17a40d264 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_invalid_type.json @@ -0,0 +1,137 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1", + "2056820593": "+1", + "2056903278": "+1", + "2056930228": "+1", + "2056934192": "+1", + "2056935714": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056934192, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056935714, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056946596, + "-1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056946596", + "description": "Comment by iarspider at 2024-04-15 14:05:24 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_many_commits.json b/tests/PRActionData/TestProcessPr.test_many_commits.json new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/tests/PRActionData/TestProcessPr.test_many_commits_ok.json b/tests/PRActionData/TestProcessPr.test_many_commits_ok.json new file mode 100644 index 000000000000..63911a358c21 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_many_commits_ok.json @@ -0,0 +1,71 @@ +[ + { + "type": "emoji", + "data": [ + 2058816831, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "fd99bd146e87a00eb90eccef12f487ecc8f4c496", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/18/jenkins" + } + }, + { + "type": "add-label", + "data": [ + "alca-pending", + "code-checks-pending", + "orp-pending", + "pending-signatures", + "tests-pending", + "trk" + ] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-code-checks-iarspider-cmssw-cmssw-18.properties", + "data": { + "PULL_REQUEST": "18", + "CONTEXT_PREFIX": "cms/18", + "CMSSW_TOOL_CONF": "", + "APPLY_PATCH": "false" + } + } + }, + { + "type": "status", + "data": { + "commit": "fd99bd146e87a00eb90eccef12f487ecc8f4c496", + "state": "pending", + "target_url": null, + "description": "code-checks requested", + "context": "cms/18/code-checks" + } + }, + { + "type": "create-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "fd99bd146e87a00eb90eccef12f487ecc8f4c496", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/18#issuecomment-2058816831", + "description": "Comment by iarspider at 2024-04-16 10:59:44 UTC processed.", + "context": "bot/18/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_many_commits_warn.json b/tests/PRActionData/TestProcessPr.test_many_commits_warn.json new file mode 100644 index 000000000000..a8a1b75bc5a4 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_many_commits_warn.json @@ -0,0 +1,13 @@ +[ + { + "type": "update-milestone", + "data": { + "id": 4, + "title": "CMSSW_14_1_X" + } + }, + { + "type": "create-comment", + "data": "This PR contains many commits (151 >= 150) and will not be processed. Please ensure you have selected the correct target branch and consider squashing unnecessary commits.\nDr15Jones, iarspider, makortel, smuzaffar, to re-enable processing of this PR, you can write `+commit-count` in a comment. Thanks." + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_new_pr.json b/tests/PRActionData/TestProcessPr.test_new_pr.json new file mode 100644 index 000000000000..23dfd9e4753d --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_new_pr.json @@ -0,0 +1,69 @@ +[ + { + "type": "update-milestone", + "data": { + "id": 4, + "title": "CMSSW_14_1_X" + } + }, + { + "type": "status", + "data": { + "commit": "2a9454e30606b17e52000110972998326ce9e428", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/17/jenkins" + } + }, + { + "type": "add-label", + "data": [ + "code-checks-pending", + "core-pending", + "orp-pending", + "pending-signatures", + "tests-pending" + ] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-code-checks-iarspider-cmssw-cmssw-17.properties", + "data": { + "PULL_REQUEST": "17", + "CONTEXT_PREFIX": "cms/17", + "CMSSW_TOOL_CONF": "", + "APPLY_PATCH": "false" + } + } + }, + { + "type": "status", + "data": { + "commit": "2a9454e30606b17e52000110972998326ce9e428", + "state": "pending", + "target_url": null, + "description": "code-checks requested", + "context": "cms/17/code-checks" + } + }, + { + "type": "create-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "2a9454e30606b17e52000110972998326ce9e428", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17", + "description": "Comment by iarspider at 2024-03-27 12:22:45 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_partial_reset.json b/tests/PRActionData/TestProcessPr.test_partial_reset.json new file mode 100644 index 000000000000..e98b97e36b43 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_partial_reset.json @@ -0,0 +1,99 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "time": 1712819089, + "squashed": false, + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ] + } + }, + "emoji": { + "2049242908": "+1" + }, + "last_seen_sha": "e4d069b76c464274bf6e7d7cf9bac2153ed9a903", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "e4d069b76c464274bf6e7d7cf9bac2153ed9a903", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/17/jenkins" + } + }, + { + "type": "add-label", + "data": [ + "code-checks-pending", + "dqm-pending", + "pending-signatures" + ] + }, + { + "type": "remove-label", + "data": [ + "code-checks-approved", + "fully-signed" + ] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-code-checks-iarspider-cmssw-cmssw-17.properties", + "data": { + "PULL_REQUEST": "17", + "CONTEXT_PREFIX": "cms/17", + "CMSSW_TOOL_CONF": "", + "APPLY_PATCH": "false" + } + } + }, + { + "type": "status", + "data": { + "commit": "e4d069b76c464274bf6e7d7cf9bac2153ed9a903", + "state": "pending", + "target_url": null, + "description": "code-checks requested", + "context": "cms/17/code-checks" + } + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "e4d069b76c464274bf6e7d7cf9bac2153ed9a903", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192", + "description": "Comment by iarspider at 2024-04-11 09:03:19 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_reopen.json b/tests/PRActionData/TestProcessPr.test_reopen.json new file mode 100644 index 000000000000..b2878525a48e --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_reopen.json @@ -0,0 +1,132 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1", + "2056820593": "+1", + "2056903278": "+1", + "2056930228": "+1", + "2056934192": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056934192, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056935714, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "open", + "data": null + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056935714", + "description": "Comment by iarspider at 2024-04-15 14:00:44 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_reset_signature.json b/tests/PRActionData/TestProcessPr.test_reset_signature.json new file mode 100644 index 000000000000..54c5a13ebb23 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_reset_signature.json @@ -0,0 +1,103 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "time": 1712828239, + "squashed": false, + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ] + } + }, + "emoji": { + "2049242908": "+1" + }, + "last_seen_sha": "79752f053efecad55dde17732259737e621a1f3f", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "79752f053efecad55dde17732259737e621a1f3f", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/17/jenkins" + } + }, + { + "type": "add-label", + "data": [ + "core-pending" + ] + }, + { + "type": "remove-label", + "data": [ + "core-approved" + ] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-code-checks-iarspider-cmssw-cmssw-17.properties", + "data": { + "PULL_REQUEST": "17", + "CONTEXT_PREFIX": "cms/17", + "CMSSW_TOOL_CONF": "", + "APPLY_PATCH": "false" + } + } + }, + { + "type": "status", + "data": { + "commit": "79752f053efecad55dde17732259737e621a1f3f", + "state": "pending", + "target_url": null, + "description": "code-checks requested", + "context": "cms/17/code-checks" + } + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "79752f053efecad55dde17732259737e621a1f3f", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192", + "description": "Comment by iarspider at 2024-04-11 09:03:19 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_revert.json b/tests/PRActionData/TestProcessPr.test_revert.json new file mode 100644 index 000000000000..26488cc26579 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_revert.json @@ -0,0 +1,108 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "time": 1712829250, + "squashed": false, + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ] + } + }, + "emoji": { + "2049242908": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/17/jenkins" + } + }, + { + "type": "add-label", + "data": [] + }, + { + "type": "remove-label", + "data": [ + "dqm-pending" + ] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-code-checks-iarspider-cmssw-cmssw-17.properties", + "data": { + "PULL_REQUEST": "17", + "CONTEXT_PREFIX": "cms/17", + "CMSSW_TOOL_CONF": "", + "APPLY_PATCH": "false" + } + } + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "pending", + "target_url": null, + "description": "code-checks requested", + "context": "cms/17/code-checks" + } + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192", + "description": "Comment by iarspider at 2024-04-11 09:03:19 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_run_test_params.json b/tests/PRActionData/TestProcessPr.test_run_test_params.json new file mode 100644 index 000000000000..543a9212e480 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_run_test_params.json @@ -0,0 +1,148 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1", + "2056820593": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278", + "description": "Tests requested by iarspider at 2024-04-15 13:46:04 UTC.", + "context": "bot/17/jenkins" + } + }, + { + "type": "emoji", + "data": [ + 2056903278, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-tests-iarspider-cmssw-cmssw-17.properties", + "data": { + "SKIP_TESTS": "header,static", + "PULL_REQUESTS": "iarspider-cmssw/cmssw#17 cms-sw/cms-bot#2134", + "RELEASE_FORMAT": "CMSSW_14_1_CPP20_X", + "EXTRA_RELVALS_TESTS": "THREADING GPU HIGH_STATS NANO", + "CONTEXT_PREFIX": "cms/17" + } + } + }, + { + "type": "emoji", + "data": [ + 2056903278, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278", + "description": "Comment by iarspider at 2024-04-15 13:46:04 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_sign_core.json b/tests/PRActionData/TestProcessPr.test_sign_core.json new file mode 100644 index 000000000000..11c5285c14fb --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_sign_core.json @@ -0,0 +1,61 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + } + }, + "emoji": {}, + "last_seen_sha": "2a9454e30606b17e52000110972998326ce9e428", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [ + "core-approved", + "fully-signed" + ] + }, + { + "type": "remove-label", + "data": [ + "core-pending", + "pending-signatures" + ] + }, + { + "type": "create-comment", + "data": "This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)" + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "2a9454e30606b17e52000110972998326ce9e428", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908", + "description": "Comment by iarspider at 2024-04-11 09:00:53 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_sign_reject.json b/tests/PRActionData/TestProcessPr.test_sign_reject.json new file mode 100644 index 000000000000..451d542922fd --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_sign_reject.json @@ -0,0 +1,204 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "1d7419a436293c0337ca346fe868cb50cfdedc18": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1713255947 + }, + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": true, + "time": 1711538467 + }, + "35f9a4c06b006029da40ed8858e0dae4abd52cb3": { + "files": [], + "squashed": true, + "time": 1712829250 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": true, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": true, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": true, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1", + "2056820593": "+1", + "2056903278": "+1", + "2056930228": "+1", + "2056934192": "+1", + "2056935714": "+1", + "2056946596": "-1", + "2056966759": "+1" + }, + "last_seen_sha": "1d7419a436293c0337ca346fe868cb50cfdedc18", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428", + "2058758464": "1d7419a436293c0337ca346fe868cb50cfdedc18" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056934192, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056935714, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056946596, + "-1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056966759, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2058758464, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "1d7419a436293c0337ca346fe868cb50cfdedc18", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/17/jenkins" + } + }, + { + "type": "add-label", + "data": [ + "core-rejected" + ] + }, + { + "type": "remove-label", + "data": [ + "core-pending" + ] + }, + { + "type": "status", + "data": { + "commit": "1d7419a436293c0337ca346fe868cb50cfdedc18", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593", + "description": "2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}", + "context": "bot/17/test_parameters" + } + }, + { + "type": "emoji", + "data": [ + 2056820593, + "+1", + true + ] + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "1d7419a436293c0337ca346fe868cb50cfdedc18", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2058758464", + "description": "Comment by iarspider at 2024-04-16 10:27:25 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_start_tests.json b/tests/PRActionData/TestProcessPr.test_start_tests.json new file mode 100644 index 000000000000..9946dbfc7c8f --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_start_tests.json @@ -0,0 +1,123 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626", + "description": "Tests requested by iarspider at 2024-04-11 11:58:24 UTC.", + "context": "bot/17/jenkins" + } + }, + { + "type": "emoji", + "data": [ + 2049536626, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [ + "code-checks-approved", + "tests-started" + ] + }, + { + "type": "remove-label", + "data": [ + "code-checks-pending", + "tests-pending" + ] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-tests-iarspider-cmssw-cmssw-17.properties", + "data": { + "PULL_REQUESTS": "iarspider-cmssw/cmssw#17", + "EXTRA_RELVALS_TESTS": "THREADING GPU HIGH_STATS NANO", + "CONTEXT_PREFIX": "cms/17" + } + } + }, + { + "type": "emoji", + "data": [ + 2049536626, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405", + "description": "Check details", + "context": "cms/17/code-checks" + } + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626", + "description": "Comment by iarspider at 2024-04-11 11:58:24 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_test_params.json b/tests/PRActionData/TestProcessPr.test_test_params.json new file mode 100644 index 000000000000..76b731d03624 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_test_params.json @@ -0,0 +1,128 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [ + "requires-external" + ] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593", + "description": "2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}", + "context": "bot/17/test_parameters" + } + }, + { + "type": "emoji", + "data": [ + 2056820593, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593", + "description": "Comment by iarspider at 2024-04-15 13:11:06 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_tests_passed.json b/tests/PRActionData/TestProcessPr.test_tests_passed.json new file mode 100644 index 000000000000..e85e533ce7dd --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_tests_passed.json @@ -0,0 +1,112 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344", + "description": "Tests requested by iarspider at 2024-04-15 12:28:44 UTC.", + "context": "bot/17/jenkins" + } + }, + { + "type": "emoji", + "data": [ + 2056736344, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [ + "tests-approved" + ] + }, + { + "type": "remove-label", + "data": [ + "tests-rejected" + ] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-tests-iarspider-cmssw-cmssw-17.properties", + "data": { + "PULL_REQUESTS": "iarspider-cmssw/cmssw#17", + "EXTRA_RELVALS_TESTS": "THREADING GPU HIGH_STATS NANO", + "CONTEXT_PREFIX": "cms/17" + } + } + }, + { + "type": "emoji", + "data": [ + 2056736344, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344", + "description": "Comment by iarspider at 2024-04-15 12:28:44 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_tests_rejected.json b/tests/PRActionData/TestProcessPr.test_tests_rejected.json new file mode 100644 index 000000000000..3c29dafb596d --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_tests_rejected.json @@ -0,0 +1,75 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [ + "tests-rejected" + ] + }, + { + "type": "remove-label", + "data": [ + "tests-started" + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377", + "description": "Comment by iarspider at 2024-04-11 11:59:32 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_too_many_commits.json b/tests/PRActionData/TestProcessPr.test_too_many_commits.json new file mode 100644 index 000000000000..25138b30e6b7 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_too_many_commits.json @@ -0,0 +1,1083 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "02440e727939b320077b2552cd1e2819122762e6": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlignmentMuonSelector_cfi.py" + ], + "squashed": false, + "time": 1713257111 + }, + "0b169bf8c51721082d8b4b175557a4fd7a41859e": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_cff.py" + ], + "squashed": false, + "time": 1713257101 + }, + "0d5119e4905a0a36a535f2578ce96b41d687f63a": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_Output_cff.py" + ], + "squashed": false, + "time": 1713257107 + }, + "0e617968795f452376ad263cbe1a5e4af8780302": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_Output_cff.py" + ], + "squashed": false, + "time": 1713257111 + }, + "140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_cff.py" + ], + "squashed": false, + "time": 1713257106 + }, + "141848de6118a8ec0031d42a239b532e28ba7b20": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_Output_cff.py" + ], + "squashed": false, + "time": 1713257101 + }, + "1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_Output_cff.py" + ], + "squashed": false, + "time": 1713257110 + }, + "1a0c294006f0727c08a8c535d4c35ca9d3a11560": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Output_cff.py" + ], + "squashed": false, + "time": 1713257105 + }, + "2382eabec2dab6ab48fc7186266ccb6c7b964dc3": { + "files": [ + "Alignment/APEEstimation/python/samples/Data_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py" + ], + "squashed": false, + "time": 1713257094 + }, + "247c0caac63c4155f2a10acc26b59d7547ff6f21": { + "files": [ + "Alignment/APEEstimation/python/AlignmentTrackSelector_cff.py" + ], + "squashed": false, + "time": 1713257093 + }, + "26d5494b0ed51567d0f58fa3362caf3de1387fb4": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Output_cff.py" + ], + "squashed": false, + "time": 1713257108 + }, + "273452e7560cb359d5f856bf0020c2527af8d40f": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester0T_cff.py" + ], + "squashed": false, + "time": 1713257111 + }, + "27e957c10865d54f442abb9a4db2b2f67548d928": { + "files": [ + "Alignment/CommonAlignmentAlgorithm/test/apeSetting_cfg.py" + ], + "squashed": false, + "time": 1713257100 + }, + "28da794cf3573f21e2d2b7ab67f4b70faa424ef7": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_Output_cff.py" + ], + "squashed": false, + "time": 1713257103 + }, + "2aaed36eb31d0b944c227a24799b77e101cc22f2": { + "files": [ + "Alignment/APEEstimation/python/samples/MC_UnitTest_TkAlMuonIsolated_cff.py" + ], + "squashed": false, + "time": 1713257094 + }, + "2d4fe5cac27d329c45335fff21a76cc6f2887a42": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_Output_cff.py" + ], + "squashed": false, + "time": 1713257105 + }, + "2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_Output_cff.py" + ], + "squashed": false, + "time": 1713257104 + }, + "2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlignmentProducer_cff.py" + ], + "squashed": false, + "time": 1713257112 + }, + "2e92add26d5813078727a617884b9a3ae30e3de9": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_cff.py" + ], + "squashed": false, + "time": 1713257109 + }, + "32389ecf320569de6f3eb0a721574ba90bc8c751": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/iterationsPlotter.py" + ], + "squashed": false, + "time": 1713257098 + }, + "33bab99045167f9b921bd150ec6b92a07cabbb68": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_Output_cff.py" + ], + "squashed": false, + "time": 1713257106 + }, + "343e5e3248cb1f3a929ad5efeffbe0137d5f4fad": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_cff.py" + ], + "squashed": false, + "time": 1713257108 + }, + "348546d623ee31bace9df6a1aa71604b990527ff": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/validationPlotter.py" + ], + "squashed": false, + "time": 1713257099 + }, + "35bb64a0679da9b688f184f5b90fbccca98b8cf0": { + "files": [ + "Alignment/CommonAlignmentAlgorithm/python/ApeSettingAlgorithm_cfi.py" + ], + "squashed": false, + "time": 1713257100 + }, + "37d7bdc1af3512d1d8752e4319c103392a133d03": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHGCombined_cff.py" + ], + "squashed": false, + "time": 1713257111 + }, + "38a549d26370b1e7b5f3425f977194e08dc5fde7": { + "files": [ + "Alignment/CommonAlignmentAlgorithm/python/SiPixelLorentzAngleCalibration_cff.py" + ], + "squashed": false, + "time": 1713257100 + }, + "3b5195aa80a73ff17ebf0a4b53550cefb7056ba9": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_Output_cff.py" + ], + "squashed": false, + "time": 1713257110 + }, + "3d0781365fb37582e3aad27b77ba897069211812": { + "files": [ + "Alignment/CommonAlignmentProducer/python/DBConfiguration_cff.py" + ], + "squashed": false, + "time": 1713257112 + }, + "3d41e57f44b9aedeb0ce88c175b9937de6ad3c13": { + "files": [ + "Alignment/CommonAlignmentMonitor/python/AlignmentMonitorSegmentDifferences_cfi.py" + ], + "squashed": false, + "time": 1713257101 + }, + "3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_Output_cff.py" + ], + "squashed": false, + "time": 1713257102 + }, + "4342dab36ead5f115ab89eb5d20d33b00afa67dc": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_Output_cff.py" + ], + "squashed": false, + "time": 1713257107 + }, + "456336e23277759bd12515136da78f7fef5dcae6": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/trendPlotter.py" + ], + "squashed": false, + "time": 1713257099 + }, + "48e890c532fdfe2150006de853719fab3cffdc34": { + "files": [ + "Alignment/APEEstimation/test/cfgTemplate/apeEstimator_cfg.py" + ], + "squashed": false, + "time": 1713257097 + }, + "4918fb6875bad67ed11a790b5c1bfe92a832fe2a": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexCompositeCandidateSelector_cfi.py" + ], + "squashed": false, + "time": 1713257112 + }, + "4c8cc3cfe87c45e330c41b0728be267288fe5c02": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/systematicErrors.py" + ], + "squashed": false, + "time": 1713257098 + }, + "4d570c74cab565cd7e2b6139e5a57f92b7b886be": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_cff.py" + ], + "squashed": false, + "time": 1713257110 + }, + "4f1c4bcbe523e52af825a241984c35a846aba5f2": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexSelector_cfi.py" + ], + "squashed": false, + "time": 1713257112 + }, + "5392e68630f8c1f3e4b295ea80831c6a9caa4dc2": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_cff.py" + ], + "squashed": false, + "time": 1713257110 + }, + "54643679f52ced591752a2f2e0d2f19d61818ce4": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/drawTrend.py" + ], + "squashed": false, + "time": 1713257098 + }, + "54a311b32085fd8a201f47993987cd3898519913": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_cff.py" + ], + "squashed": false, + "time": 1713257105 + }, + "54d57f1f7cd199df49c988724d9b630389964ce8": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py" + ], + "squashed": false, + "time": 1713257104 + }, + "561d6cfcd9df7f9567c66bd0f638d602081c02c5": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_Fpix_cff.py" + ], + "squashed": false, + "time": 1713257095 + }, + "56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e": { + "files": [ + "Alignment/CommonAlignmentAlgorithm/python/SiStripBackplaneCalibration_cff.py" + ], + "squashed": false, + "time": 1713257100 + }, + "5710511d889195da564138babf2d14dc82f0b27f": { + "files": [ + "Alignment/APEEstimation/python/ApeEstimatorSummary_cff.py" + ], + "squashed": false, + "time": 1713257093 + }, + "577cfd8011ce680166019acad3b78d4d1aec5704": { + "files": [ + "Alignment/APEEstimation/test/autoSubmitter/autoSubmitterTemplates.py" + ], + "squashed": false, + "time": 1713257096 + }, + "5850a11ff295071daa92b2e0ae3e9351e555e22a": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_cff.py" + ], + "squashed": false, + "time": 1713257105 + }, + "5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_Tib_cff.py" + ], + "squashed": false, + "time": 1713257095 + }, + "5de437bf09655fb67fa7f0ddecf969f2635db32e": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_cff.py" + ], + "squashed": false, + "time": 1713257109 + }, + "5fd537309af26ec463652904bb9b4af194f053f9": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Skimmed_cff.py" + ], + "squashed": false, + "time": 1713257105 + }, + "62b4517e606f00a5155e904306a2cdffbdb686e4": { + "files": [ + "Alignment/APEEstimation/python/TrackRefitter_38T_cff.py" + ], + "squashed": false, + "time": 1713257096 + }, + "639802afc54c74ac0dc8b396099bf5c8f233dd91": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_Bpix_Phase0_cff.py" + ], + "squashed": false, + "time": 1713257095 + }, + "66ead66f52fd286f124c32aa3884ae1ad36f3963": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_Output_cff.py" + ], + "squashed": false, + "time": 1713257110 + }, + "67402bf06994fb808632d5194c505b3cef667749": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_cff.py" + ], + "squashed": false, + "time": 1713257102 + }, + "6955d8ed3dc748e23c565b2978083036918468f6": { + "files": [ + "Alignment/APEEstimation/python/AlcaRecoSelection_cff.py" + ], + "squashed": false, + "time": 1713257093 + }, + "695ad7b437304bb6b0c81d7a2c7234a855f0c693": { + "files": [ + "Alignment/CommonAlignmentProducer/python/fakeAlignmentProducer_cfi.py" + ], + "squashed": false, + "time": 1713257112 + }, + "6b3eaceed1efbb6412cd414cf42c11b523d43b46": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_cff.py" + ], + "squashed": false, + "time": 1713257108 + }, + "6bc380dd03a72ed6b936206410d5d306635baffb": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli0T_cff.py" + ], + "squashed": false, + "time": 1713257103 + }, + "6ce2f1ca3368168db2046b418e246a4cd9482340": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/drawResults.py" + ], + "squashed": false, + "time": 1713257098 + }, + "70d4a3979fca7c6983d73f89249f1a072b6939f3": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_Output_cff.py" + ], + "squashed": false, + "time": 1713257109 + }, + "713ba2443a4447a1d41355760c895ecc703ec57c": { + "files": [ + "Alignment/CommonAlignmentAlgorithm/python/SiStripLorentzAngleCalibration_cff.py" + ], + "squashed": false, + "time": 1713257100 + }, + "72c450fe9fad9b732c752fda13eae5358150ac6c": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlignmentTrackSelector_cfi.py" + ], + "squashed": false, + "time": 1713257112 + }, + "746cefc3b695998fca753f27b7937f7b8b0fd73a": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_cff.py" + ], + "squashed": false, + "time": 1713257102 + }, + "7694958540750fe64b9271a4beb0c7d929bf7dff": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester_cff.py" + ], + "squashed": false, + "time": 1713257111 + }, + "771cd52d642b567fd401abeeeb73f6a03b7c25d1": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_cff.py" + ], + "squashed": false, + "time": 1713257105 + }, + "7768fa4600824dd0b65dd81554cf06f57ce2e636": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/drawValidation.py" + ], + "squashed": false, + "time": 1713257098 + }, + "79f3589b1a2b00e7ad39d538a9e44473864a697d": { + "files": [ + "Alignment/APEEstimation/test/createTrackerAlignmentErrorExtendedRcd_cfg.py" + ], + "squashed": false, + "time": 1713257097 + }, + "7bb612cdc6079b0ada45c2eda67de3c756436cb3": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/resultPlotter.py" + ], + "squashed": false, + "time": 1713257098 + }, + "7bd61e63325659a35291cb1bf1a0cfdb6eb57eea": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/setTDRStyle.py" + ], + "squashed": false, + "time": 1713257098 + }, + "7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_Output_cff.py" + ], + "squashed": false, + "time": 1713257107 + }, + "7dde5a4c24bfee4440e1eb74d380b3ed7f988714": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_Output_cff.py" + ], + "squashed": false, + "time": 1713257108 + }, + "7dfb8db88bca87267617e2d9f231cdf217241fe7": { + "files": [ + "Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonSystemMap1D_cfi.py" + ], + "squashed": false, + "time": 1713257100 + }, + "8138ac02f7370f2b3e0ba18eb326231f3dc25767": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_cff.py" + ], + "squashed": false, + "time": 1713257107 + }, + "841284bbd93b36212d3a7dc0efe66029db4ed642": { + "files": [ + "Alignment/CocoaApplication/test/cocoaAnalyzer_cfg.py" + ], + "squashed": false, + "time": 1713257099 + }, + "86e30fdf02dea2dd5fc3cdd44dd47bba178273a9": { + "files": [ + "Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonVsCurvature_cfi.py" + ], + "squashed": false, + "time": 1713257101 + }, + "8965abe7d624415d97cadc713b7e149d71ff65f1": { + "files": [ + "Alignment/APEEstimation/python/samples/MC_UL16_ttbar_cff.py" + ], + "squashed": false, + "time": 1713257094 + }, + "89f220f19348e3c2f0c4c6dc7945d469f1331786": { + "files": [ + "Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py" + ], + "squashed": false, + "time": 1713257094 + }, + "8afccd866520ab62c501af476ad5b3b9af8f77eb": { + "files": [ + "Alignment/APEEstimation/python/ApeEstimator_cfi.py" + ], + "squashed": false, + "time": 1713257093 + }, + "8c926930d03076afbc7f8385f6bd00ce8b1a1c01": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_Tid_cff.py" + ], + "squashed": false, + "time": 1713257095 + }, + "8cb55938020bf324697a713ef8341cf74c676473": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_Output_cff.py" + ], + "squashed": false, + "time": 1713257104 + }, + "9313683ebe3a199a999ddd4435f1f8f577ecbb2b": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_Output_cff.py" + ], + "squashed": false, + "time": 1713257101 + }, + "93dd83317c6f5c690ddab5f833e121a7aa7e9958": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_Output_cff.py" + ], + "squashed": false, + "time": 1713257108 + }, + "93e8596aa02ca43bb0a2f4679cb998b842585b99": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_cff.py" + ], + "squashed": false, + "time": 1713257108 + }, + "9494846e873fba740874ec7ecadce4a6d00f2321": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_Output_cff.py" + ], + "squashed": false, + "time": 1713257105 + }, + "94c509c1d2433ff6733e6d5e555fd0f9af47667a": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_cff.py" + ], + "squashed": false, + "time": 1713257106 + }, + "952aa3635f84f2b32d16ac4775fbda37fa5e1dd4": { + "files": [ + "Alignment/CommonAlignmentAlgorithm/python/AlignmentParameterStore_cfi.py" + ], + "squashed": false, + "time": 1713257099 + }, + "965c832e10ac29e3c0f1b91fbb5f06891189f011": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_Output_cff.py" + ], + "squashed": false, + "time": 1713257106 + }, + "9687f4e8953e009205e255f49ace95dda6413888": { + "files": [ + "Alignment/APEEstimation/python/TriggerSelection_cff.py" + ], + "squashed": false, + "time": 1713257096 + }, + "989900e5eb2a5260f308b0b1818139704e5888ae": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_Output_cff.py" + ], + "squashed": false, + "time": 1713257106 + }, + "991dfec2212e29c247349c0a111b9daaacba4e54": { + "files": [ + "Alignment/CommonAlignmentAlgorithm/test/apeLocalSetting_cfg.py" + ], + "squashed": false, + "time": 1713257100 + }, + "9cbfcbb09eae7cac65425211c039a8f252d49143": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_cfi.py" + ], + "squashed": false, + "time": 1713257095 + }, + "9d9fa3ef63254933653481c5d3b5d17bd827c7a8": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_Output_cff.py" + ], + "squashed": false, + "time": 1713257103 + }, + "9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_Output_cff.py" + ], + "squashed": false, + "time": 1713257102 + }, + "9ead59ffdbd00680efdcd278c945d0190f5431a2": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_cff.py" + ], + "squashed": false, + "time": 1713257104 + }, + "a1585e75d345a0aa57d3d82947b0fe54acb14eb6": { + "files": [ + "Alignment/APEEstimation/test/apeTreeCreateDefault_cfg.py" + ], + "squashed": false, + "time": 1713257096 + }, + "a3a61e5788ec64eff9d219dd89a0e9168a21941f": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_cff.py" + ], + "squashed": false, + "time": 1713257107 + }, + "a3b0dbaa543986ca943e1dd7a1ded581b75ed42a": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_cff.py" + ], + "squashed": false, + "time": 1713257095 + }, + "a42445818e0e4087aeca09673ee6977864fe01ef": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_Output_cff.py" + ], + "squashed": false, + "time": 1713257109 + }, + "a67fc27c06fcb20088043e80e5c70f9a7c7f557f": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_cff.py" + ], + "squashed": false, + "time": 1713257104 + }, + "a795b32e0086bf1e95b73851de4fb2d2fa863c1f": { + "files": [ + "Alignment/APEEstimation/test/trackerTreeGenerator_cfg.py" + ], + "squashed": false, + "time": 1713257099 + }, + "a8d51426d8398cdfd67e05d0e522f00cf18d962d": { + "files": [ + "Alignment/APEEstimation/test/SkimProducer/skimTemplates.py" + ], + "squashed": false, + "time": 1713257099 + }, + "ac021e5cda8755d345731bee5df062757bdc8d0b": { + "files": [ + "Alignment/APEEstimation/test/autoSubmitter/helpers.py" + ], + "squashed": false, + "time": 1713257097 + }, + "ac81fc9eeaa7ebe9071efe91205570db06a728cb": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_cff.py" + ], + "squashed": false, + "time": 1713257102 + }, + "acd63acec5999824c69d122ee9bfe4e486175edf": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_Tob_cff.py" + ], + "squashed": false, + "time": 1713257096 + }, + "add7d8dadbca5bc85cc272df8cf61276baf04cd4": { + "files": [ + "Alignment/APEEstimation/test/cfgTemplate/apeLocalSetting_cfg.py" + ], + "squashed": false, + "time": 1713257097 + }, + "b01cfede232680315b8e776989863016c434c1c4": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_Output_cff.py" + ], + "squashed": false, + "time": 1713257103 + }, + "b10758b37d2f7b8054f84e716323ef01113bdc5a": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_Output_cff.py" + ], + "squashed": false, + "time": 1713257110 + }, + "b16a737b809df919dd2e8e3ab615b1cfbe112bd4": { + "files": [ + "Alignment/APEEstimation/python/samples/Data_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py" + ], + "squashed": false, + "time": 1713257094 + }, + "b1da2ff5d37ce752da86c15bd721b990f72d2204": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_cff.py" + ], + "squashed": false, + "time": 1713257107 + }, + "b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_cff.py" + ], + "squashed": false, + "time": 1713257110 + }, + "b37681e6cd269af256fbc9834ad8258389ae0a3b": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHG_cff.py" + ], + "squashed": false, + "time": 1713257111 + }, + "b65976a868ea2226600ac191d4a63767b514bef0": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py" + ], + "squashed": false, + "time": 1713257104 + }, + "b6c2bff101779e4b82efc928ce50db4cd3464c4d": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_cff.py" + ], + "squashed": false, + "time": 1713257101 + }, + "b97f6a05ba120a65d58d103938db8df9baf4f806": { + "files": [ + "Alignment/APEEstimation/test/cfgTemplate/apeEstimatorSummary_cfg.py" + ], + "squashed": false, + "time": 1713257097 + }, + "b9a4a95a7669bb688eaf9c99d741615bdeb9a3be": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_Output_cff.py" + ], + "squashed": false, + "time": 1713257107 + }, + "bf4f3003d8ca2adca1fa6521e79de2e38fa00085": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py" + ], + "squashed": false, + "time": 1713257104 + }, + "c0b2b32fe21f87917b8134e435a9d944a1593eee": { + "files": [ + "Alignment/APEEstimation/test/SkimProducer/startSkim.py" + ], + "squashed": false, + "time": 1713257099 + }, + "c3338ae6aa615c78f5507d315c046d9e82bbce0d": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_cff.py" + ], + "squashed": false, + "time": 1713257109 + }, + "c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_Output_cff.py" + ], + "squashed": false, + "time": 1713257109 + }, + "c4d3429387987cbe0740b97c3bd9e3c3053776d2": { + "files": [ + "Alignment/CommonAlignmentProducer/python/customizeLSNumberFilterForRelVals.py" + ], + "squashed": false, + "time": 1713257112 + }, + "c55f434953618d3ee909a82555a2c2e8fe31b8e4": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Skimmed_cff.py" + ], + "squashed": false, + "time": 1713257108 + }, + "c5b694fb9ddd2908939b0bdf644c997587af5322": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/granularity.py" + ], + "squashed": false, + "time": 1713257098 + }, + "c655c0f2d0042e9e45aa5edfee9a307690c0cd9e": { + "files": [ + "Alignment/CommonAlignmentMonitor/python/AlignmentStats_cff.py" + ], + "squashed": false, + "time": 1713257101 + }, + "c84a9d9f368018e0672e7d2e931f8ae24a90ad83": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_Fpix_Phase0_cff.py" + ], + "squashed": false, + "time": 1713257095 + }, + "cf8a20fe025a120a38033327b45213f75a30ebaf": { + "files": [ + "Alignment/CommonAlignmentProducer/python/AlignmentProducerAsAnalyzer_cff.py" + ], + "squashed": false, + "time": 1713257111 + }, + "d18965eed76efeb820839413951e7b490756ded2": { + "files": [ + "Alignment/APEEstimation/python/conditions/init.py" + ], + "squashed": false, + "time": 1713257093 + }, + "d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58": { + "files": [ + "Alignment/APEEstimation/test/autoSubmitter/autoSubmitter.py" + ], + "squashed": false, + "time": 1713257096 + }, + "d53b9bd64685138bda5b058402f47aa23b2f4e1e": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_cff.py" + ], + "squashed": false, + "time": 1713257106 + }, + "d81c5623eff68a8c0c5f25827b85655dc611d186": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py" + ], + "squashed": false, + "time": 1713257102 + }, + "d9a57159b2c24366f0d1b880aab463aaaf5da412": { + "files": [ + "Alignment/APEEstimation/python/ApeEstimatorSummary_cfi.py" + ], + "squashed": false, + "time": 1713257093 + }, + "dd79321d938d68ff7634c0594d63609a81d08f6e": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_cff.py" + ], + "squashed": false, + "time": 1713257103 + }, + "de5759756a4b88a6da27e6f1d1697373db4da96c": { + "files": [ + "Alignment/APEEstimation/test/plottingTools/drawIterations.py" + ], + "squashed": false, + "time": 1713257097 + }, + "e11e6666b3cafc148568d7e58d46bcaf9e0f2143": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_cff.py" + ], + "squashed": false, + "time": 1713257106 + }, + "e21f41004058e91d8dbb3caff061a097ea008911": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_cff.py" + ], + "squashed": false, + "time": 1713257110 + }, + "e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_cff.py" + ], + "squashed": false, + "time": 1713257107 + }, + "e51cf1bf814047845cf0e6a09112abb57a0b6299": { + "files": [ + "Alignment/APEEstimation/python/ApeEstimator_cff.py" + ], + "squashed": false, + "time": 1713257093 + }, + "e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27": { + "files": [ + "Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py" + ], + "squashed": false, + "time": 1713257094 + }, + "e7830eae688dec0bcd6ba16c7eb31d069f4c79d9": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_cff.py" + ], + "squashed": false, + "time": 1713257104 + }, + "ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_cff.py" + ], + "squashed": false, + "time": 1713257111 + }, + "ec5c91c29611a67043bd36b4c409fd938dde2e0b": { + "files": [ + "Alignment/APEEstimation/test/SkimProducer/skimProducer_cfg.py" + ], + "squashed": false, + "time": 1713257099 + }, + "f16d666bbaa62e716c0d66caac74d0eabed9dca2": { + "files": [ + "Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonResidualsDefaults_cff.py" + ], + "squashed": false, + "time": 1713257100 + }, + "f3b440e9ca574ac4971cc1478dae15a25e4357c4": { + "files": [ + "Alignment/APEEstimation/python/samples/Data_TkAlMinBias_Run2018C_PromptReco_v3_cff.py" + ], + "squashed": false, + "time": 1713257094 + }, + "f414411be9156696683ecf374478379ae1e65799": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_cff.py" + ], + "squashed": false, + "time": 1713257105 + }, + "f4a39ca6442e7d783d7d57d8cddf98ebf90cc148": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_Output_cff.py" + ], + "squashed": false, + "time": 1713257106 + }, + "f5bff85f1393afe455fe42a4873ff3fcfcfc02b5": { + "files": [ + "Alignment/APEEstimation/python/PrivateSkim_EventContent_cff.py" + ], + "squashed": false, + "time": 1713257093 + }, + "f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_cff.py" + ], + "squashed": false, + "time": 1713257102 + }, + "fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_cff.py" + ], + "squashed": false, + "time": 1713257103 + }, + "fa29a9f267a1c45ffa701242e9250f2ba50991df": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_Tec_cff.py" + ], + "squashed": false, + "time": 1713257095 + }, + "fa830292720ccabc7c199249551291da825e1a90": { + "files": [ + "Alignment/CommonAlignmentMonitor/test/testAlignmentStats_cfg.py" + ], + "squashed": false, + "time": 1713257101 + }, + "fb070e47cb5a7af124bb2cc78c00b39d8d9567ec": { + "files": [ + "Alignment/APEEstimation/python/SectorBuilder_Bpix_cff.py" + ], + "squashed": false, + "time": 1713257094 + }, + "fd99bd146e87a00eb90eccef12f487ecc8f4c496": { + "files": [ + "Alignment/CommonAlignmentProducer/python/FakeAlignmentSource_cfi.py" + ], + "squashed": false, + "time": 1713257113 + }, + "fda1d3579f11ce0f851c037b0ac50fb641d79f11": { + "files": [ + "Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_Output_cff.py" + ], + "squashed": false, + "time": 1713257109 + } + }, + "emoji": { + "2058816831": "+1" + }, + "last_seen_sha": "fd99bd146e87a00eb90eccef12f487ecc8f4c496", + "signatures": {} + } + }, + { + "type": "emoji", + "data": [ + 2058816831, + "+1", + true + ] + }, + { + "type": "create-comment", + "data": "This PR contains too many commits (251 >= 240) and will not be processed.\nPlease ensure you have selected the correct target branch and consider squashing unnecessary commits.\nThe processing of this PR will resume once the commit count drops below the limit." + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_unassign.json b/tests/PRActionData/TestProcessPr.test_unassign.json new file mode 100644 index 000000000000..d544c84393c0 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_unassign.json @@ -0,0 +1,109 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [] + }, + { + "type": "remove-label", + "data": [ + "db-pending" + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055", + "description": "Comment by iarspider at 2024-04-15 13:01:40 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_unhold.json b/tests/PRActionData/TestProcessPr.test_unhold.json new file mode 100644 index 000000000000..ac5f59c464d0 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_unhold.json @@ -0,0 +1,91 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [] + }, + { + "type": "remove-label", + "data": [ + "hold" + ] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892", + "description": "Comment by iarspider at 2024-04-15 12:31:04 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_valid_type.json b/tests/PRActionData/TestProcessPr.test_valid_type.json new file mode 100644 index 000000000000..1d1722e02c03 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_valid_type.json @@ -0,0 +1,148 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "2a9454e30606b17e52000110972998326ce9e428": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1711538467 + }, + "79752f053efecad55dde17732259737e621a1f3f": { + "files": [ + "Utilities/ReleaseScripts/test/BuildFile.xml" + ], + "squashed": false, + "time": 1712828239 + }, + "dae848e38b8e387d7283a3e35818121487d9d76b": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712829250 + }, + "e4d069b76c464274bf6e7d7cf9bac2153ed9a903": { + "files": [ + "DQMServices/Components/test/dqmiofilecopy.sh" + ], + "squashed": false, + "time": 1712819089 + } + }, + "emoji": { + "2049242908": "+1", + "2049536626": "+1", + "2056736344": "+1", + "2056739513": "+1", + "2056740892": "+1", + "2056796593": "+1", + "2056801055": "+1", + "2056820593": "+1", + "2056903278": "+1", + "2056930228": "+1", + "2056934192": "+1", + "2056935714": "+1", + "2056946596": "-1" + }, + "last_seen_sha": "dae848e38b8e387d7283a3e35818121487d9d76b", + "signatures": { + "2049242908": "2a9454e30606b17e52000110972998326ce9e428" + } + } + }, + { + "type": "emoji", + "data": [ + 2056739513, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056740892, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056796593, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056801055, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056934192, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056935714, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056946596, + "-1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2056966759, + "+1", + true + ] + }, + { + "type": "emoji", + "data": [ + 2049242908, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [ + "root" + ] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "status", + "data": { + "commit": "dae848e38b8e387d7283a3e35818121487d9d76b", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056966759", + "description": "Comment by iarspider at 2024-04-15 14:14:24 UTC processed.", + "context": "bot/17/ack" + } + } +] \ No newline at end of file diff --git a/tests/ReplayData/TestProcessPr.test_abort.txt b/tests/ReplayData/TestProcessPr.test_abort.txt new file mode 100644 index 000000000000..8d538301cde1 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_abort.txt @@ -0,0 +1,110 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5f8064ebaf701adbdb654b2eecdd65d4898049f3ad24f824dff657bad77e1ee1"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4990'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '10'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C232:122DEA:160B132B:16263F2B:661D3292')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6b67005ebea7508b9af11b7fd3cd4def66251a0b0ef571a5269bebc1766e187f"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:58:14 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4989'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '11'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C240:289E16:3D1E63F1:3D65A2DB:661D3292')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":18,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T13:58:14Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4989'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '11'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C248:2C0410:1278B82F:12907C77:661D3292')] +{"resources":{"core":{"limit":5000,"used":11,"remaining":4989,"reset":1713193106},"search":{"limit":30,"used":0,"remaining":30,"reset":1713189582},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713193122},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713193122},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713189582},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713193122},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713193122},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713193122},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713189582},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713193122},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713189582}},"rate":{"limit":5000,"used":11,"remaining":4989,"reset":1713193106}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"400d6f9d06102f9a2630901899c5dc353c3581ce92a7897dd73d458637812a54"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:58:14 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4988'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '12'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C24A:2934F8:16994224:16B4488D:661D3292')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T13:58:14Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":18,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:58:14 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4987'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '13'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C252:2E61E0:3FCBF662:4016F134:661D3293')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:58:14 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4986'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '14'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C260:3D52BC:3F2707EB:3F72087C:661D3293')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"11efa1833b80d4e4bec7e307838a59f3cdb6541ee19e84e64851eaa26e49a910"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4985'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '15'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C270:1066E:14083266:142188EB:661D3293')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28593241550,"node_id":"SC_kwDOF83__M8AAAAGqEo9zg","state":"success","description":"2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","context":"bot/17/test_parameters","created_at":"2024-04-15T13:12:09Z","updated_at":"2024-04-15T13:12:09Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594134011,"node_id":"SC_kwDOF83__M8AAAAGqFfb-w","state":"success","description":"Tests requested by iarspider at 2024-04-15 13:46:04 UTC.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","context":"bot/17/jenkins","created_at":"2024-04-15T13:47:51Z","updated_at":"2024-04-15T13:47:51Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594134599,"node_id":"SC_kwDOF83__M8AAAAGqFfeRw","state":"success","description":"Comment by iarspider at 2024-04-15 13:46:04 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","context":"bot/17/ack","created_at":"2024-04-15T13:47:53Z","updated_at":"2024-04-15T13:47:53Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":17,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4984'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '16'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C27C:1065FA:16E63573:17015E9E:661D3294')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c5bd9bc7f4380c49b0158b3da9b29ba18c1de4bebe75207ff0b7b2e213bec3ee"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4983'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '17'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C28A:2C0410:1278CE1E:1290926E:661D3294')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T13:47:53Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056903278,"node_id":"IC_kwDOF83__M56mdpu","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:46:04Z","updated_at":"2024-04-15T13:46:04Z","author_association":"MEMBER","body":"please test for CMSSW_14_1_CPP20_X","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056930228,"node_id":"IC_kwDOF83__M56mkO0","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:58:14Z","updated_at":"2024-04-15T13:58:14Z","author_association":"MEMBER","body":"please abort","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/comments/2056930228/reactions?per_page=100 +{'Accept': 'application/vnd.github.squirrel-girl-preview', 'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:58:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Content-Length', '2'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', '"18bec465b62796c71466210741b4971705238a5dd76ddc7598ac9ffe7618c314"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; param=squirrel-girl-preview'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4982'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '18'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('X-GitHub-Request-Id', 'C292:2943B3:3C07E3BA:3C4E8B0C:661D3294')] +[] + diff --git a/tests/ReplayData/TestProcessPr.test_assign.txt b/tests/ReplayData/TestProcessPr.test_assign.txt new file mode 100644 index 000000000000..65b27ede39c3 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_assign.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:01:15 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e1df18831e9e10cd96cad5a308e73a1fb869e91c72d2c166c92246777b46e453"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4962'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '38'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E6C6:1065FA:16315550:164BEAD7:661D251A')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:01:15 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"51176b084ef30436032bcebea6917ea849ddc0d77e19fea0bfb89ff215477590"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:59:29 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4961'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '39'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E6CA:262A93:3D52D7F:3D92244:661D251B')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":13,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T12:59:29Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:01:15 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4961'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '39'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E6D0:2934F8:15E86B49:1602DFE7:661D251B')] +{"resources":{"core":{"limit":5000,"used":39,"remaining":4961,"reset":1713189498},"search":{"limit":30,"used":0,"remaining":30,"reset":1713186135},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713189675},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713189675},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713186135},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713189675},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713189675},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713189675},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713186135},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713189675},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713186135}},"rate":{"limit":5000,"used":39,"remaining":4961,"reset":1713189498}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:01:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b7c4023717f93a0043f2dfdbd2c15f75d44260da934ec1cb7a746e4ce7de40e2"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:59:29 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4960'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '40'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E6DE:279377:155F9C1D:157A0BCA:661D251B')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T12:59:29Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":13,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:01:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:59:29 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4959'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '41'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E6E6:122DEA:155C69D1:15770273:661D251C')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:01:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:59:29 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4958'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '42'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E6EA:2AC267:3C14CE12:3C5BB1D3:661D251C')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:01:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6bc495f536c1d0c4806229055899d16431f1b6a989d0db3f8d4ed9adb0d2e1e0"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4957'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '43'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E6FA:2E61E0:3F1B8FDF:3F65F8B6:661D251C')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592326842,"node_id":"SC_kwDOF83__M8AAAAGqDxIug","state":"success","description":"Tests requested by iarspider at 2024-04-15 12:28:44 UTC.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","context":"bot/17/jenkins","created_at":"2024-04-15T12:29:57Z","updated_at":"2024-04-15T12:29:57Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592930365,"node_id":"SC_kwDOF83__M8AAAAGqEV-PQ","state":"success","description":"Comment by iarspider at 2024-04-15 12:31:04 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","context":"bot/17/ack","created_at":"2024-04-15T12:58:41Z","updated_at":"2024-04-15T12:58:41Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":16,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:01:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4956'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '44'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E70A:2934F8:15E87DA4:1602F25C:661D251C')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:01:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ab93486d0340e6939d0ea28348c1b10395684be3ce2411e69c15945a5f2cb2ae"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4955'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '45'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E712:3D52BC:3E7AA2F4:3EC511BA:661D251D')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T12:58:41Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_clean_squash.txt b/tests/ReplayData/TestProcessPr.test_clean_squash.txt new file mode 100644 index 000000000000..2c6fc7b22587 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_clean_squash.txt @@ -0,0 +1,132 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:39 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"76416eaa73d53d8629aa55396f1a2612608118abbe6c28993ef97331c3e59cd7"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4988'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '12'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AC0E:117B54:676A303:67FCCB5:661E51AA')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:22:26Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:17:40Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:17:40Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:39 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d2247514102ac8da0185a09a8be7b375e00e9433e7f1087a3064dd0b32bc35e6"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:22:26 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4987'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '13'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AC12:1F230F:6B81208:6C14B20:661E51AB')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null},{"id":6664469918,"node_id":"LA_kwDOF83__M8AAAABjTu9ng","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/root","name":"root","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"comments":22,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-16T10:22:26Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:39 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4987'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '13'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AC1C:2B2A64:6796897:6828D3E:661E51AB')] +{"resources":{"core":{"limit":5000,"used":13,"remaining":4987,"reset":1713266570},"search":{"limit":30,"used":0,"remaining":30,"reset":1713263079},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713266619},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713266619},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713263079},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713266619},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713266619},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713266619},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713263079},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713266619},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713263079}},"rate":{"limit":5000,"used":13,"remaining":4987,"reset":1713266570}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:40 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"320dab6754c36f2c43a6427ccbe1eadcf648ea34fd1205d1b167e8910a131f5f"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:22:26 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4986'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '14'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AC2A:38D48F:684F063:68E1C74:661E51AB')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-16T10:22:26Z","closed_at":null,"merged_at":null,"merge_commit_sha":"e4fad0bedaef70d09fc2d0f227cfd94d1307ac7a","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null},{"id":6664469918,"node_id":"LA_kwDOF83__M8AAAABjTu9ng","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/root","name":"root","color":"ededed","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/35f9a4c06b006029da40ed8858e0dae4abd52cb3","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"35f9a4c06b006029da40ed8858e0dae4abd52cb3","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:22:26Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:22:26Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/35f9a4c06b006029da40ed8858e0dae4abd52cb3"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":22,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:40 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6374dd5b7b2bb6ad5f1e21f17f7dbea0f38970fa499af5072eb53a6cf1b3ef9a"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:22:26 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4985'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '15'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AC30:2F5B58:69F1FDB:6A8580A:661E51AC')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/35f9a4c06b006029da40ed8858e0dae4abd52cb3/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/35f9a4c06b006029da40ed8858e0dae4abd52cb3/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=35f9a4c06b006029da40ed8858e0dae4abd52cb3","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:40 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5490dd6dfdb7b2c24b864f6ebab787a375fb9226e235ea077b97f85d863c14f6"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:22:26 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4984'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '16'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AC36:1F230F:6B81EE7:6C1580B:661E51AC')] +[{"sha":"35f9a4c06b006029da40ed8858e0dae4abd52cb3","node_id":"C_kwDOF83__NoAKDM1ZjlhNGMwNmIwMDYwMjlkYTQwZWQ4ODU4ZTBkYWU0YWJkNTJjYjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:22:20Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35f9a4c06b006029da40ed8858e0dae4abd52cb3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:40 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1783411e876ba3533066c3806e60fe112c4955de5e1ab595259abbef9620bd4c"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4983'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '17'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A270:14E79:64CAEE0:655E9C0:661E51AC')] +{"state":"pending","statuses":[],"sha":"35f9a4c06b006029da40ed8858e0dae4abd52cb3","total_count":0,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"f48e27233301327fbe7231601ca19999194b246aaa0654860e8ba92b0a26ed95"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:22:20 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4982'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '18'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A27E:2F5B58:69F29E2:6A86207:661E51AC')] +{"sha":"35f9a4c06b006029da40ed8858e0dae4abd52cb3","node_id":"C_kwDOF83__NoAKDM1ZjlhNGMwNmIwMDYwMjlkYTQwZWQ4ODU4ZTBkYWU0YWJkNTJjYjM","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35f9a4c06b006029da40ed8858e0dae4abd52cb3","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:22:20Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"[do-not-merge] Just for generating bot tests","parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ae78f00ec30ec81fa132c31a329a22bec6e155bdd38c428fcc778f926e08f46e"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4981'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '19'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A286:3A2467:82C8A89:837412B:661E51AD')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T14:15:26Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056903278,"node_id":"IC_kwDOF83__M56mdpu","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:46:04Z","updated_at":"2024-04-15T13:46:04Z","author_association":"MEMBER","body":"please test for CMSSW_14_1_CPP20_X","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056930228,"node_id":"IC_kwDOF83__M56mkO0","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:58:14Z","updated_at":"2024-04-15T13:58:14Z","author_association":"MEMBER","body":"please abort","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056934192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056934192,"node_id":"IC_kwDOF83__M56mlMw","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:05Z","updated_at":"2024-04-15T14:00:05Z","author_association":"MEMBER","body":"please close","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056935714","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056935714,"node_id":"IC_kwDOF83__M56mlki","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:44Z","updated_at":"2024-04-15T14:01:29Z","author_association":"MEMBER","body":"please reopen","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056946596","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056946596,"node_id":"IC_kwDOF83__M56moOk","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:05:24Z","updated_at":"2024-04-15T14:05:24Z","author_association":"MEMBER","body":"type invalid","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596/reactions","total_count":1,"+1":0,"-1":1,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056966759","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056966759","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056966759,"node_id":"IC_kwDOF83__M56mtJn","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:14:24Z","updated_at":"2024-04-15T14:14:24Z","author_association":"MEMBER","body":"type root","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056966759/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7b1fa04cefae1fdeec5d5c6442cd2be7fa05816fb2868160d58a4f64a9be105f"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4980'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '20'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A288:14E79:64CB724:655F20C:661E51AD')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...dae848e38b8e387d7283a3e35818121487d9d76b","permalink_url":"https://github.com/iarspider-cmssw/cmssw/compare/iarspider-cmssw:a3adc2d...iarspider-cmssw:dae848e","diff_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...dae848e38b8e387d7283a3e35818121487d9d76b.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...dae848e38b8e387d7283a3e35818121487d9d76b.patch","base_commit":{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","node_id":"C_kwDOF83__NoAKGEzYWRjMmQ1ODkyOTgyMTQwMTJkNDlmNGFmYzQzNTZiYWYzMDk1NmM","commit":{"author":{"name":"cmsbuild","email":"cmsbuild@cern.ch","date":"2024-02-26T20:24:31Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-02-26T20:24:31Z"},"message":"Merge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry","tree":{"sha":"b3febb83f1d4f95da12369122179a60af82b258b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b3febb83f1d4f95da12369122179a60af82b258b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJl3PN/CRC1aQ7uu5UhlAAA0o8QAH7r51UtpmBRfehPvKNqekf0\nUTBPUWX/WRw5Sb7K62Nuhu40m9GiFK3Q5W8WxexbrUVlWfZbADrQXvYhRRgQaMhp\nYCErAGTC2UfdWZHygcgMjkJKkX+fNzkPjym6/69LgDSXO2N84xx3Yilu4Nauos8l\nMk0otEDN/wMkry+A6qANSfCPQM/hgM9ROPcKFgkqdWogKLmDBnpmjSL1d0ya9RNs\ns3h2iAU7CMf5NNADeIs5xjnmS68x5TK4sNJNpUlY/j9tUuMWSQasWDU7ccmI+khu\nVy9eIIRooTlSyYAChduoodM7yMbiBGJ1CpVXOYq771HVz5mx+VWaGwdmbkJ4KCGu\n6N1NnSRdQyIq55s/k4M1d+PTMSG3L36AaOEasVT34ATgCmj9vnKtIIAHNwF68+1x\njdFlxEMKoxOc1GU0IOXXyPBX/LKAI+amBcWLcQcC8BeQ/7BpRB6oq8uA7GjZFBtJ\nnpu9PjDMMTo63EfNqQt+HsZUoWgHPTv7OMy6NboBsa0TcYFq1cnVeAxwDSoi2pbK\nvgxgZfZXBb+2XlIUwWnnzQ2B3VHxq8DYhZrqSCcIa6nct8wlOcRqnAgB0khcFguD\nw/esgbkVmIWGn+CSvWiWwySGgMQMmb4faavtuGLFzFLh6nb6fv3wzRr+nOw3YnjY\nz85LNBFNzC4GUTlNSN3k\n=ZrDb\n-----END PGP SIGNATURE-----\n","payload":"tree b3febb83f1d4f95da12369122179a60af82b258b\nparent 06ca7a53434f0f5097a4803419417e682cd39af4\nparent e46916c6de24ea11e783cad254421c7b22dc63f4\nauthor cmsbuild 1708979071 +0100\ncommitter GitHub 1708979071 +0100\n\nMerge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c/comments","author":{"login":"cmsbuild","id":4170616,"node_id":"MDQ6VXNlcjQxNzA2MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4170616?v=4","gravatar_id":"","url":"https://api.github.com/users/cmsbuild","html_url":"https://github.com/cmsbuild","followers_url":"https://api.github.com/users/cmsbuild/followers","following_url":"https://api.github.com/users/cmsbuild/following{/other_user}","gists_url":"https://api.github.com/users/cmsbuild/gists{/gist_id}","starred_url":"https://api.github.com/users/cmsbuild/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmsbuild/subscriptions","organizations_url":"https://api.github.com/users/cmsbuild/orgs","repos_url":"https://api.github.com/users/cmsbuild/repos","events_url":"https://api.github.com/users/cmsbuild/events{/privacy}","received_events_url":"https://api.github.com/users/cmsbuild/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"06ca7a53434f0f5097a4803419417e682cd39af4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/06ca7a53434f0f5097a4803419417e682cd39af4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/06ca7a53434f0f5097a4803419417e682cd39af4"},{"sha":"e46916c6de24ea11e783cad254421c7b22dc63f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e46916c6de24ea11e783cad254421c7b22dc63f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e46916c6de24ea11e783cad254421c7b22dc63f4"}]},"merge_base_commit":{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","node_id":"C_kwDOF83__NoAKGEzYWRjMmQ1ODkyOTgyMTQwMTJkNDlmNGFmYzQzNTZiYWYzMDk1NmM","commit":{"author":{"name":"cmsbuild","email":"cmsbuild@cern.ch","date":"2024-02-26T20:24:31Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-02-26T20:24:31Z"},"message":"Merge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry","tree":{"sha":"b3febb83f1d4f95da12369122179a60af82b258b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b3febb83f1d4f95da12369122179a60af82b258b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJl3PN/CRC1aQ7uu5UhlAAA0o8QAH7r51UtpmBRfehPvKNqekf0\nUTBPUWX/WRw5Sb7K62Nuhu40m9GiFK3Q5W8WxexbrUVlWfZbADrQXvYhRRgQaMhp\nYCErAGTC2UfdWZHygcgMjkJKkX+fNzkPjym6/69LgDSXO2N84xx3Yilu4Nauos8l\nMk0otEDN/wMkry+A6qANSfCPQM/hgM9ROPcKFgkqdWogKLmDBnpmjSL1d0ya9RNs\ns3h2iAU7CMf5NNADeIs5xjnmS68x5TK4sNJNpUlY/j9tUuMWSQasWDU7ccmI+khu\nVy9eIIRooTlSyYAChduoodM7yMbiBGJ1CpVXOYq771HVz5mx+VWaGwdmbkJ4KCGu\n6N1NnSRdQyIq55s/k4M1d+PTMSG3L36AaOEasVT34ATgCmj9vnKtIIAHNwF68+1x\njdFlxEMKoxOc1GU0IOXXyPBX/LKAI+amBcWLcQcC8BeQ/7BpRB6oq8uA7GjZFBtJ\nnpu9PjDMMTo63EfNqQt+HsZUoWgHPTv7OMy6NboBsa0TcYFq1cnVeAxwDSoi2pbK\nvgxgZfZXBb+2XlIUwWnnzQ2B3VHxq8DYhZrqSCcIa6nct8wlOcRqnAgB0khcFguD\nw/esgbkVmIWGn+CSvWiWwySGgMQMmb4faavtuGLFzFLh6nb6fv3wzRr+nOw3YnjY\nz85LNBFNzC4GUTlNSN3k\n=ZrDb\n-----END PGP SIGNATURE-----\n","payload":"tree b3febb83f1d4f95da12369122179a60af82b258b\nparent 06ca7a53434f0f5097a4803419417e682cd39af4\nparent e46916c6de24ea11e783cad254421c7b22dc63f4\nauthor cmsbuild 1708979071 +0100\ncommitter GitHub 1708979071 +0100\n\nMerge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c/comments","author":{"login":"cmsbuild","id":4170616,"node_id":"MDQ6VXNlcjQxNzA2MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4170616?v=4","gravatar_id":"","url":"https://api.github.com/users/cmsbuild","html_url":"https://github.com/cmsbuild","followers_url":"https://api.github.com/users/cmsbuild/followers","following_url":"https://api.github.com/users/cmsbuild/following{/other_user}","gists_url":"https://api.github.com/users/cmsbuild/gists{/gist_id}","starred_url":"https://api.github.com/users/cmsbuild/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmsbuild/subscriptions","organizations_url":"https://api.github.com/users/cmsbuild/orgs","repos_url":"https://api.github.com/users/cmsbuild/repos","events_url":"https://api.github.com/users/cmsbuild/events{/privacy}","received_events_url":"https://api.github.com/users/cmsbuild/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"06ca7a53434f0f5097a4803419417e682cd39af4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/06ca7a53434f0f5097a4803419417e682cd39af4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/06ca7a53434f0f5097a4803419417e682cd39af4"},{"sha":"e46916c6de24ea11e783cad254421c7b22dc63f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e46916c6de24ea11e783cad254421c7b22dc63f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e46916c6de24ea11e783cad254421c7b22dc63f4"}]},"status":"ahead","ahead_by":4,"behind_by":0,"total_commits":4,"commits":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}],"files":[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b33114ac4cbe5b52e779aebfaace8f119a6788e8fa0b1822805b11e358d9ec6f"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:22:20 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4979'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '21'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A28A:1294DB:82367BF:82E1E58:661E51AD')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3","permalink_url":"https://github.com/iarspider-cmssw/cmssw/compare/iarspider-cmssw:a3adc2d...iarspider-cmssw:35f9a4c","diff_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3.patch","base_commit":{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","node_id":"C_kwDOF83__NoAKGEzYWRjMmQ1ODkyOTgyMTQwMTJkNDlmNGFmYzQzNTZiYWYzMDk1NmM","commit":{"author":{"name":"cmsbuild","email":"cmsbuild@cern.ch","date":"2024-02-26T20:24:31Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-02-26T20:24:31Z"},"message":"Merge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry","tree":{"sha":"b3febb83f1d4f95da12369122179a60af82b258b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b3febb83f1d4f95da12369122179a60af82b258b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJl3PN/CRC1aQ7uu5UhlAAA0o8QAH7r51UtpmBRfehPvKNqekf0\nUTBPUWX/WRw5Sb7K62Nuhu40m9GiFK3Q5W8WxexbrUVlWfZbADrQXvYhRRgQaMhp\nYCErAGTC2UfdWZHygcgMjkJKkX+fNzkPjym6/69LgDSXO2N84xx3Yilu4Nauos8l\nMk0otEDN/wMkry+A6qANSfCPQM/hgM9ROPcKFgkqdWogKLmDBnpmjSL1d0ya9RNs\ns3h2iAU7CMf5NNADeIs5xjnmS68x5TK4sNJNpUlY/j9tUuMWSQasWDU7ccmI+khu\nVy9eIIRooTlSyYAChduoodM7yMbiBGJ1CpVXOYq771HVz5mx+VWaGwdmbkJ4KCGu\n6N1NnSRdQyIq55s/k4M1d+PTMSG3L36AaOEasVT34ATgCmj9vnKtIIAHNwF68+1x\njdFlxEMKoxOc1GU0IOXXyPBX/LKAI+amBcWLcQcC8BeQ/7BpRB6oq8uA7GjZFBtJ\nnpu9PjDMMTo63EfNqQt+HsZUoWgHPTv7OMy6NboBsa0TcYFq1cnVeAxwDSoi2pbK\nvgxgZfZXBb+2XlIUwWnnzQ2B3VHxq8DYhZrqSCcIa6nct8wlOcRqnAgB0khcFguD\nw/esgbkVmIWGn+CSvWiWwySGgMQMmb4faavtuGLFzFLh6nb6fv3wzRr+nOw3YnjY\nz85LNBFNzC4GUTlNSN3k\n=ZrDb\n-----END PGP SIGNATURE-----\n","payload":"tree b3febb83f1d4f95da12369122179a60af82b258b\nparent 06ca7a53434f0f5097a4803419417e682cd39af4\nparent e46916c6de24ea11e783cad254421c7b22dc63f4\nauthor cmsbuild 1708979071 +0100\ncommitter GitHub 1708979071 +0100\n\nMerge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c/comments","author":{"login":"cmsbuild","id":4170616,"node_id":"MDQ6VXNlcjQxNzA2MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4170616?v=4","gravatar_id":"","url":"https://api.github.com/users/cmsbuild","html_url":"https://github.com/cmsbuild","followers_url":"https://api.github.com/users/cmsbuild/followers","following_url":"https://api.github.com/users/cmsbuild/following{/other_user}","gists_url":"https://api.github.com/users/cmsbuild/gists{/gist_id}","starred_url":"https://api.github.com/users/cmsbuild/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmsbuild/subscriptions","organizations_url":"https://api.github.com/users/cmsbuild/orgs","repos_url":"https://api.github.com/users/cmsbuild/repos","events_url":"https://api.github.com/users/cmsbuild/events{/privacy}","received_events_url":"https://api.github.com/users/cmsbuild/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"06ca7a53434f0f5097a4803419417e682cd39af4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/06ca7a53434f0f5097a4803419417e682cd39af4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/06ca7a53434f0f5097a4803419417e682cd39af4"},{"sha":"e46916c6de24ea11e783cad254421c7b22dc63f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e46916c6de24ea11e783cad254421c7b22dc63f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e46916c6de24ea11e783cad254421c7b22dc63f4"}]},"merge_base_commit":{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","node_id":"C_kwDOF83__NoAKGEzYWRjMmQ1ODkyOTgyMTQwMTJkNDlmNGFmYzQzNTZiYWYzMDk1NmM","commit":{"author":{"name":"cmsbuild","email":"cmsbuild@cern.ch","date":"2024-02-26T20:24:31Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-02-26T20:24:31Z"},"message":"Merge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry","tree":{"sha":"b3febb83f1d4f95da12369122179a60af82b258b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b3febb83f1d4f95da12369122179a60af82b258b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJl3PN/CRC1aQ7uu5UhlAAA0o8QAH7r51UtpmBRfehPvKNqekf0\nUTBPUWX/WRw5Sb7K62Nuhu40m9GiFK3Q5W8WxexbrUVlWfZbADrQXvYhRRgQaMhp\nYCErAGTC2UfdWZHygcgMjkJKkX+fNzkPjym6/69LgDSXO2N84xx3Yilu4Nauos8l\nMk0otEDN/wMkry+A6qANSfCPQM/hgM9ROPcKFgkqdWogKLmDBnpmjSL1d0ya9RNs\ns3h2iAU7CMf5NNADeIs5xjnmS68x5TK4sNJNpUlY/j9tUuMWSQasWDU7ccmI+khu\nVy9eIIRooTlSyYAChduoodM7yMbiBGJ1CpVXOYq771HVz5mx+VWaGwdmbkJ4KCGu\n6N1NnSRdQyIq55s/k4M1d+PTMSG3L36AaOEasVT34ATgCmj9vnKtIIAHNwF68+1x\njdFlxEMKoxOc1GU0IOXXyPBX/LKAI+amBcWLcQcC8BeQ/7BpRB6oq8uA7GjZFBtJ\nnpu9PjDMMTo63EfNqQt+HsZUoWgHPTv7OMy6NboBsa0TcYFq1cnVeAxwDSoi2pbK\nvgxgZfZXBb+2XlIUwWnnzQ2B3VHxq8DYhZrqSCcIa6nct8wlOcRqnAgB0khcFguD\nw/esgbkVmIWGn+CSvWiWwySGgMQMmb4faavtuGLFzFLh6nb6fv3wzRr+nOw3YnjY\nz85LNBFNzC4GUTlNSN3k\n=ZrDb\n-----END PGP SIGNATURE-----\n","payload":"tree b3febb83f1d4f95da12369122179a60af82b258b\nparent 06ca7a53434f0f5097a4803419417e682cd39af4\nparent e46916c6de24ea11e783cad254421c7b22dc63f4\nauthor cmsbuild 1708979071 +0100\ncommitter GitHub 1708979071 +0100\n\nMerge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c/comments","author":{"login":"cmsbuild","id":4170616,"node_id":"MDQ6VXNlcjQxNzA2MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4170616?v=4","gravatar_id":"","url":"https://api.github.com/users/cmsbuild","html_url":"https://github.com/cmsbuild","followers_url":"https://api.github.com/users/cmsbuild/followers","following_url":"https://api.github.com/users/cmsbuild/following{/other_user}","gists_url":"https://api.github.com/users/cmsbuild/gists{/gist_id}","starred_url":"https://api.github.com/users/cmsbuild/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmsbuild/subscriptions","organizations_url":"https://api.github.com/users/cmsbuild/orgs","repos_url":"https://api.github.com/users/cmsbuild/repos","events_url":"https://api.github.com/users/cmsbuild/events{/privacy}","received_events_url":"https://api.github.com/users/cmsbuild/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"06ca7a53434f0f5097a4803419417e682cd39af4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/06ca7a53434f0f5097a4803419417e682cd39af4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/06ca7a53434f0f5097a4803419417e682cd39af4"},{"sha":"e46916c6de24ea11e783cad254421c7b22dc63f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e46916c6de24ea11e783cad254421c7b22dc63f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e46916c6de24ea11e783cad254421c7b22dc63f4"}]},"status":"ahead","ahead_by":1,"behind_by":0,"total_commits":1,"commits":[{"sha":"35f9a4c06b006029da40ed8858e0dae4abd52cb3","node_id":"C_kwDOF83__NoAKDM1ZjlhNGMwNmIwMDYwMjlkYTQwZWQ4ODU4ZTBkYWU0YWJkNTJjYjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:22:20Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35f9a4c06b006029da40ed8858e0dae4abd52cb3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]}],"files":[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/35f9a4c06b006029da40ed8858e0dae4abd52cb3/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/35f9a4c06b006029da40ed8858e0dae4abd52cb3/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=35f9a4c06b006029da40ed8858e0dae4abd52cb3","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:23:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c45aefcd3c9ca1735183960e26edb0c126719e4b1d9dd41fdc1438d918628b91"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:22:20 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4978'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '22'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A292:121DD6:6C4E293:6CE0C78:661E51AE')] +{"sha":"35f9a4c06b006029da40ed8858e0dae4abd52cb3","node_id":"C_kwDOF83__NoAKDM1ZjlhNGMwNmIwMDYwMjlkYTQwZWQ4ODU4ZTBkYWU0YWJkNTJjYjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:22:20Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35f9a4c06b006029da40ed8858e0dae4abd52cb3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"stats":{"total":2,"additions":2,"deletions":0},"files":[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/35f9a4c06b006029da40ed8858e0dae4abd52cb3/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/35f9a4c06b006029da40ed8858e0dae4abd52cb3/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=35f9a4c06b006029da40ed8858e0dae4abd52cb3","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}]} + diff --git a/tests/ReplayData/TestProcessPr.test_close.txt b/tests/ReplayData/TestProcessPr.test_close.txt new file mode 100644 index 000000000000..fff645200ab8 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_close.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:00:19 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5f8064ebaf701adbdb654b2eecdd65d4898049f3ad24f824dff657bad77e1ee1"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4958'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '42'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DFA8:1066E:140D1CA8:1426776D:661D32F3')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:00:19 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"bb8fc2319cdfc8dba0bcc70486e08fee64f95f461bcf403a593f56e017db3a9d"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:00:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4957'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '43'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DFB8:282288:16255C4C:1640674A:661D32F3')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":19,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T14:00:05Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:00:20 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4957'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '43'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DFC2:2943B3:3C0CFA7D:3C53A619:661D32F4')] +{"resources":{"core":{"limit":5000,"used":43,"remaining":4957,"reset":1713193106},"search":{"limit":30,"used":0,"remaining":30,"reset":1713189680},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713193220},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713193220},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713189680},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713193220},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713193220},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713193220},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713189680},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713193220},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713189680}},"rate":{"limit":5000,"used":43,"remaining":4957,"reset":1713193106}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:00:20 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cf5b1200a69a099b49b6db9825e99bcf7c98917b9e552c756d52887cc4279f28"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:00:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4956'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '44'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DFC8:2AF02B:3759ED9:378E4EA:661D32F4')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T14:00:05Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":19,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:00:20 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:00:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4955'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '45'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A528:122DEA:1610279A:162B580D:661D32F4')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:00:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:00:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4954'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '46'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A534:3A1EFF:166CA1D9:1687D18B:661D32F4')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:00:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"45902318a7e18909ac972eb7771d0f06ed4c15c88beffdf93d0505a8926956b4"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4953'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '47'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A53E:300E63:154C8F01:1567BEAB:661D32F5')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28593241550,"node_id":"SC_kwDOF83__M8AAAAGqEo9zg","state":"success","description":"2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","context":"bot/17/test_parameters","created_at":"2024-04-15T13:12:09Z","updated_at":"2024-04-15T13:12:09Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594424899,"node_id":"SC_kwDOF83__M8AAAAGqFxMQw","state":"pending","description":"Aborted, waiting for authorized user to issue the test command.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","context":"bot/17/jenkins","created_at":"2024-04-15T13:58:55Z","updated_at":"2024-04-15T13:58:55Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594425317,"node_id":"SC_kwDOF83__M8AAAAGqFxN5Q","state":"success","description":"Comment by iarspider at 2024-04-15 13:58:14 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","context":"bot/17/ack","created_at":"2024-04-15T13:58:56Z","updated_at":"2024-04-15T13:58:56Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":17,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:00:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4952'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '48'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A54A:3D52BC:3F2C0425:3F77092B:661D32F5')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:00:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"933dc566865c6c606b79917f80f18b6707541ddee28352716acf0c5565a4a7f4"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4951'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '49'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A556:2934F8:169E6ADC:16B9758F:661D32F5')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T13:58:55Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056903278,"node_id":"IC_kwDOF83__M56mdpu","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:46:04Z","updated_at":"2024-04-15T13:46:04Z","author_association":"MEMBER","body":"please test for CMSSW_14_1_CPP20_X","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056930228,"node_id":"IC_kwDOF83__M56mkO0","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:58:14Z","updated_at":"2024-04-15T13:58:14Z","author_association":"MEMBER","body":"please abort","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056934192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056934192,"node_id":"IC_kwDOF83__M56mlMw","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:05Z","updated_at":"2024-04-15T14:00:05Z","author_association":"MEMBER","body":"please close","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_code_check_approved.txt b/tests/ReplayData/TestProcessPr.test_code_check_approved.txt new file mode 100644 index 000000000000..df6ac4b2b364 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_code_check_approved.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:39:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"df54708351dec22173f372be6db921429625919ca98a0ad883d1875068cca702"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4921'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '79'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8B7E:72470:34B283:34E63B:66154509')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-03-27T12:22:46Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-08T16:49:56Z","pushed_at":"2024-04-09T12:54:41Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369242,"stargazers_count":1042,"watchers_count":1042,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":893,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":893,"watchers":1042,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-08T16:49:56Z","pushed_at":"2024-04-09T12:54:41Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369242,"stargazers_count":1042,"watchers_count":1042,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":893,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":893,"watchers":1042,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4183,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:39:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e5a9cc39b9fbe5bd27ac0d44c935b62e3e4f33f45ed03bd035d94e100b4742cb"'), ('Last-Modified', 'Tue, 09 Apr 2024 13:25:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4920'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '80'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8B84:145422:30BC96:30EE79:66154509')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-09T13:25:58Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:39:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4920'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '80'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8B90:39A3BE:2E6713:2E9710:6615450A')] +{"resources":{"core":{"limit":5000,"used":80,"remaining":4920,"reset":1712670094},"search":{"limit":30,"used":0,"remaining":30,"reset":1712670022},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1712673562},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1712673562},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1712670022},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1712673562},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1712673562},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1712673562},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1712670022},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1712673562},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1712670022}},"rate":{"limit":5000,"used":80,"remaining":4920,"reset":1712670094}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:39:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d11a928bcd58a077bacdf2ddf6a3151471c08f85f2e60b9fd9c71dbee30d417c"'), ('Last-Modified', 'Tue, 09 Apr 2024 13:25:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4919'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '81'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8B92:1DFB71:36205B:365887:6615450A')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-09T13:25:58Z","closed_at":null,"merged_at":null,"merge_commit_sha":"ea15ca65dabbedf700fccacbb2214b100cbbed1b","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"2a9454e30606b17e52000110972998326ce9e428","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-03-27T12:22:46Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-03-27T12:22:46Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":2,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:39:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cfd617b58750578a473eff9ab698205e70b7dfd291e63a413f386feea90ed143"'), ('Last-Modified', 'Tue, 09 Apr 2024 13:25:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4918'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '82'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8B9E:22B049:392B3C:3963CA:6615450A')] +[{"sha":"1963595dc5bad37400a61b64c43b5efbefa11b81","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2a9454e30606b17e52000110972998326ce9e428/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2a9454e30606b17e52000110972998326ce9e428/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=2a9454e30606b17e52000110972998326ce9e428","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:39:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a0f334741ffaae65f42315177e8231d4bf07b60d9e604f50003fff5caeb9d82a"'), ('Last-Modified', 'Tue, 09 Apr 2024 13:25:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4917'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '83'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8BA6:39A3BE:2E7106:2EA117:6615450B')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:39:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4eb5f58ea21fdebef2809dda92d0d59beb99554ee9ed39262061fdac5544bee1"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4916'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '84'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8BB4:1DFB71:362AC3:3662FE:6615450B')] +{"state":"pending","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28493070932,"node_id":"SC_kwDOF83__M8AAAAGolHCVA","state":"pending","description":"code-checks requested","target_url":null,"context":"cms/17/code-checks","created_at":"2024-04-09T13:18:55Z","updated_at":"2024-04-09T13:18:55Z"}],"sha":"2a9454e30606b17e52000110972998326ce9e428","total_count":1,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:39:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"529a59f29b4da9107663bdf591351dff515981a5e1f513aa7fe81690329c28f0"'), ('Last-Modified', 'Wed, 27 Mar 2024 12:21:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4915'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '85'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8BC0:3D8B96:2F57D9:2F88BF:6615450B')] +{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"message":"[do-not-merge] Just for generating bot tests","parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:39:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9a5f04cdad507c418a35dcb677a325ab5d7692e5d080c81bb57e32de3230000b"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4914'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '86'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8BCA:72470:34CD7D:35012D:6615450B')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-09T13:18:56Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_dirty_squash.txt b/tests/ReplayData/TestProcessPr.test_dirty_squash.txt new file mode 100644 index 000000000000..3e7e8fc63c79 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_dirty_squash.txt @@ -0,0 +1,132 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c7713199c97b7028f24f02438e4019f4843218e969132e71ea78a9b5c8db065b"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4952'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '48'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D18E:15F874:6CE197E:6D75998:661E524F')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:25:54Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:17:40Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:17:40Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"39e691a95d7df424c0c439acdcb01ec3654f2aaa6ffe9229cccd6748199bed2b"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:25:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4951'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '49'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D192:20E30:6740213:67D4262:661E5250')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null},{"id":6664469918,"node_id":"LA_kwDOF83__M8AAAABjTu9ng","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/root","name":"root","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"comments":22,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-16T10:25:53Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4951'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '49'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D198:3A6FB9:6D04D1F:6D97972:661E5250')] +{"resources":{"core":{"limit":5000,"used":49,"remaining":4951,"reset":1713266570},"search":{"limit":30,"used":0,"remaining":30,"reset":1713263244},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713266784},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713266784},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713263244},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713266784},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713266784},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713266784},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713263244},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713266784},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713263244}},"rate":{"limit":5000,"used":49,"remaining":4951,"reset":1713266570}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:25 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6054f316f9f21e8c9278590f53e2bd7f480e3ff17edc2e3c78d9b4f57f2f5792"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:25:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4950'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '50'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D19C:1F230F:6BF5263:6C8926E:661E5250')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-16T10:25:53Z","closed_at":null,"merged_at":null,"merge_commit_sha":"5332ef066195a6e79787b5793aa71e84e13d81af","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null},{"id":6664469918,"node_id":"LA_kwDOF83__M8AAAABjTu9ng","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/root","name":"root","color":"ededed","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/1d7419a436293c0337ca346fe868cb50cfdedc18","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:25:54Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:25:54Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/1d7419a436293c0337ca346fe868cb50cfdedc18"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":22,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":3,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:25 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"14cd246b508d03af3d7f1b05edf8b7ca5f07bd6d68f0949f25456a378b0da5ed"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:25:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4949'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '51'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D1A4:180869:6A0B86A:6A9E384:661E5251')] +[{"sha":"08cedc77a303a689fbda9b90b2636950237425b2","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":3,"deletions":0,"changes":3,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/1d7419a436293c0337ca346fe868cb50cfdedc18/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/1d7419a436293c0337ca346fe868cb50cfdedc18/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=1d7419a436293c0337ca346fe868cb50cfdedc18","patch":"@@ -4,6 +4,9 @@\n \n \n \n+\n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:25 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e75bc6b24540b9697d1b235942602da1ee084a952ef477e18ede4a6634c5df8d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:25:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4948'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '52'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D1B4:121DD6:6CC1035:6D54114:661E5251')] +[{"sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","node_id":"C_kwDOF83__NoAKDFkNzQxOWE0MzYyOTNjMDMzN2NhMzQ2ZmU4NjhjYjUwY2ZkZWRjMTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:25:47Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"59ca8d083da13dcfe54b584fd1f0690872d5f788","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/59ca8d083da13dcfe54b584fd1f0690872d5f788"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1d7419a436293c0337ca346fe868cb50cfdedc18","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:25 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"fb048a24370f172c3280afea2a62d70842a3004e84e2184a3586568661ff72be"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4947'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '53'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D1C4:2B2A64:6807CD0:689A871:661E5251')] +{"state":"pending","statuses":[],"sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","total_count":0,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/1d7419a436293c0337ca346fe868cb50cfdedc18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:26 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d7abf0ecff4b1322a60be6175cfa8cbdfec91d3aad04f73a12bf63ee0d132d22"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:25:47 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4946'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '54'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D1CC:39550C:67D5A6E:6868284:661E5251')] +{"sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","node_id":"C_kwDOF83__NoAKDFkNzQxOWE0MzYyOTNjMDMzN2NhMzQ2ZmU4NjhjYjUwY2ZkZWRjMTg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1d7419a436293c0337ca346fe868cb50cfdedc18","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:25:47Z"},"tree":{"sha":"59ca8d083da13dcfe54b584fd1f0690872d5f788","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/59ca8d083da13dcfe54b584fd1f0690872d5f788"},"message":"[do-not-merge] Just for generating bot tests","parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:26 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ed6bf2b2daf6e8b6d5be08dd6dbfb4498a3d555d32f605575665174bdbaafcf2"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4945'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '55'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D1D6:2B2A64:6808170:689AD27:661E5252')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-16T10:23:49Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056903278,"node_id":"IC_kwDOF83__M56mdpu","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:46:04Z","updated_at":"2024-04-15T13:46:04Z","author_association":"MEMBER","body":"please test for CMSSW_14_1_CPP20_X","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056930228,"node_id":"IC_kwDOF83__M56mkO0","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:58:14Z","updated_at":"2024-04-15T13:58:14Z","author_association":"MEMBER","body":"please abort","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056934192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056934192,"node_id":"IC_kwDOF83__M56mlMw","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:05Z","updated_at":"2024-04-15T14:00:05Z","author_association":"MEMBER","body":"please close","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056935714","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056935714,"node_id":"IC_kwDOF83__M56mlki","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:44Z","updated_at":"2024-04-15T14:01:29Z","author_association":"MEMBER","body":"please reopen","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056946596","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056946596,"node_id":"IC_kwDOF83__M56moOk","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:05:24Z","updated_at":"2024-04-15T14:05:24Z","author_association":"MEMBER","body":"type invalid","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596/reactions","total_count":1,"+1":0,"-1":1,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056966759","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056966759","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056966759,"node_id":"IC_kwDOF83__M56mtJn","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:14:24Z","updated_at":"2024-04-15T14:14:24Z","author_association":"MEMBER","body":"type root","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056966759/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:26 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b33114ac4cbe5b52e779aebfaace8f119a6788e8fa0b1822805b11e358d9ec6f"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:22:20 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4944'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '56'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D1D8:28A0B9:11E7766:11F91DB:661E5252')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3","permalink_url":"https://github.com/iarspider-cmssw/cmssw/compare/iarspider-cmssw:a3adc2d...iarspider-cmssw:35f9a4c","diff_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...35f9a4c06b006029da40ed8858e0dae4abd52cb3.patch","base_commit":{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","node_id":"C_kwDOF83__NoAKGEzYWRjMmQ1ODkyOTgyMTQwMTJkNDlmNGFmYzQzNTZiYWYzMDk1NmM","commit":{"author":{"name":"cmsbuild","email":"cmsbuild@cern.ch","date":"2024-02-26T20:24:31Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-02-26T20:24:31Z"},"message":"Merge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry","tree":{"sha":"b3febb83f1d4f95da12369122179a60af82b258b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b3febb83f1d4f95da12369122179a60af82b258b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJl3PN/CRC1aQ7uu5UhlAAA0o8QAH7r51UtpmBRfehPvKNqekf0\nUTBPUWX/WRw5Sb7K62Nuhu40m9GiFK3Q5W8WxexbrUVlWfZbADrQXvYhRRgQaMhp\nYCErAGTC2UfdWZHygcgMjkJKkX+fNzkPjym6/69LgDSXO2N84xx3Yilu4Nauos8l\nMk0otEDN/wMkry+A6qANSfCPQM/hgM9ROPcKFgkqdWogKLmDBnpmjSL1d0ya9RNs\ns3h2iAU7CMf5NNADeIs5xjnmS68x5TK4sNJNpUlY/j9tUuMWSQasWDU7ccmI+khu\nVy9eIIRooTlSyYAChduoodM7yMbiBGJ1CpVXOYq771HVz5mx+VWaGwdmbkJ4KCGu\n6N1NnSRdQyIq55s/k4M1d+PTMSG3L36AaOEasVT34ATgCmj9vnKtIIAHNwF68+1x\njdFlxEMKoxOc1GU0IOXXyPBX/LKAI+amBcWLcQcC8BeQ/7BpRB6oq8uA7GjZFBtJ\nnpu9PjDMMTo63EfNqQt+HsZUoWgHPTv7OMy6NboBsa0TcYFq1cnVeAxwDSoi2pbK\nvgxgZfZXBb+2XlIUwWnnzQ2B3VHxq8DYhZrqSCcIa6nct8wlOcRqnAgB0khcFguD\nw/esgbkVmIWGn+CSvWiWwySGgMQMmb4faavtuGLFzFLh6nb6fv3wzRr+nOw3YnjY\nz85LNBFNzC4GUTlNSN3k\n=ZrDb\n-----END PGP SIGNATURE-----\n","payload":"tree b3febb83f1d4f95da12369122179a60af82b258b\nparent 06ca7a53434f0f5097a4803419417e682cd39af4\nparent e46916c6de24ea11e783cad254421c7b22dc63f4\nauthor cmsbuild 1708979071 +0100\ncommitter GitHub 1708979071 +0100\n\nMerge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c/comments","author":{"login":"cmsbuild","id":4170616,"node_id":"MDQ6VXNlcjQxNzA2MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4170616?v=4","gravatar_id":"","url":"https://api.github.com/users/cmsbuild","html_url":"https://github.com/cmsbuild","followers_url":"https://api.github.com/users/cmsbuild/followers","following_url":"https://api.github.com/users/cmsbuild/following{/other_user}","gists_url":"https://api.github.com/users/cmsbuild/gists{/gist_id}","starred_url":"https://api.github.com/users/cmsbuild/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmsbuild/subscriptions","organizations_url":"https://api.github.com/users/cmsbuild/orgs","repos_url":"https://api.github.com/users/cmsbuild/repos","events_url":"https://api.github.com/users/cmsbuild/events{/privacy}","received_events_url":"https://api.github.com/users/cmsbuild/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"06ca7a53434f0f5097a4803419417e682cd39af4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/06ca7a53434f0f5097a4803419417e682cd39af4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/06ca7a53434f0f5097a4803419417e682cd39af4"},{"sha":"e46916c6de24ea11e783cad254421c7b22dc63f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e46916c6de24ea11e783cad254421c7b22dc63f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e46916c6de24ea11e783cad254421c7b22dc63f4"}]},"merge_base_commit":{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","node_id":"C_kwDOF83__NoAKGEzYWRjMmQ1ODkyOTgyMTQwMTJkNDlmNGFmYzQzNTZiYWYzMDk1NmM","commit":{"author":{"name":"cmsbuild","email":"cmsbuild@cern.ch","date":"2024-02-26T20:24:31Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-02-26T20:24:31Z"},"message":"Merge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry","tree":{"sha":"b3febb83f1d4f95da12369122179a60af82b258b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b3febb83f1d4f95da12369122179a60af82b258b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJl3PN/CRC1aQ7uu5UhlAAA0o8QAH7r51UtpmBRfehPvKNqekf0\nUTBPUWX/WRw5Sb7K62Nuhu40m9GiFK3Q5W8WxexbrUVlWfZbADrQXvYhRRgQaMhp\nYCErAGTC2UfdWZHygcgMjkJKkX+fNzkPjym6/69LgDSXO2N84xx3Yilu4Nauos8l\nMk0otEDN/wMkry+A6qANSfCPQM/hgM9ROPcKFgkqdWogKLmDBnpmjSL1d0ya9RNs\ns3h2iAU7CMf5NNADeIs5xjnmS68x5TK4sNJNpUlY/j9tUuMWSQasWDU7ccmI+khu\nVy9eIIRooTlSyYAChduoodM7yMbiBGJ1CpVXOYq771HVz5mx+VWaGwdmbkJ4KCGu\n6N1NnSRdQyIq55s/k4M1d+PTMSG3L36AaOEasVT34ATgCmj9vnKtIIAHNwF68+1x\njdFlxEMKoxOc1GU0IOXXyPBX/LKAI+amBcWLcQcC8BeQ/7BpRB6oq8uA7GjZFBtJ\nnpu9PjDMMTo63EfNqQt+HsZUoWgHPTv7OMy6NboBsa0TcYFq1cnVeAxwDSoi2pbK\nvgxgZfZXBb+2XlIUwWnnzQ2B3VHxq8DYhZrqSCcIa6nct8wlOcRqnAgB0khcFguD\nw/esgbkVmIWGn+CSvWiWwySGgMQMmb4faavtuGLFzFLh6nb6fv3wzRr+nOw3YnjY\nz85LNBFNzC4GUTlNSN3k\n=ZrDb\n-----END PGP SIGNATURE-----\n","payload":"tree b3febb83f1d4f95da12369122179a60af82b258b\nparent 06ca7a53434f0f5097a4803419417e682cd39af4\nparent e46916c6de24ea11e783cad254421c7b22dc63f4\nauthor cmsbuild 1708979071 +0100\ncommitter GitHub 1708979071 +0100\n\nMerge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c/comments","author":{"login":"cmsbuild","id":4170616,"node_id":"MDQ6VXNlcjQxNzA2MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4170616?v=4","gravatar_id":"","url":"https://api.github.com/users/cmsbuild","html_url":"https://github.com/cmsbuild","followers_url":"https://api.github.com/users/cmsbuild/followers","following_url":"https://api.github.com/users/cmsbuild/following{/other_user}","gists_url":"https://api.github.com/users/cmsbuild/gists{/gist_id}","starred_url":"https://api.github.com/users/cmsbuild/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmsbuild/subscriptions","organizations_url":"https://api.github.com/users/cmsbuild/orgs","repos_url":"https://api.github.com/users/cmsbuild/repos","events_url":"https://api.github.com/users/cmsbuild/events{/privacy}","received_events_url":"https://api.github.com/users/cmsbuild/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"06ca7a53434f0f5097a4803419417e682cd39af4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/06ca7a53434f0f5097a4803419417e682cd39af4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/06ca7a53434f0f5097a4803419417e682cd39af4"},{"sha":"e46916c6de24ea11e783cad254421c7b22dc63f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e46916c6de24ea11e783cad254421c7b22dc63f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e46916c6de24ea11e783cad254421c7b22dc63f4"}]},"status":"ahead","ahead_by":1,"behind_by":0,"total_commits":1,"commits":[{"sha":"35f9a4c06b006029da40ed8858e0dae4abd52cb3","node_id":"C_kwDOF83__NoAKDM1ZjlhNGMwNmIwMDYwMjlkYTQwZWQ4ODU4ZTBkYWU0YWJkNTJjYjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:22:20Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35f9a4c06b006029da40ed8858e0dae4abd52cb3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35f9a4c06b006029da40ed8858e0dae4abd52cb3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]}],"files":[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/35f9a4c06b006029da40ed8858e0dae4abd52cb3/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/35f9a4c06b006029da40ed8858e0dae4abd52cb3/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=35f9a4c06b006029da40ed8858e0dae4abd52cb3","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...1d7419a436293c0337ca346fe868cb50cfdedc18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:26 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9ba8c056851d14463b906b564ab30c4cbc3618e22cff49241facd72db8493743"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:25:47 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4943'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '57'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D1E8:180869:6A0CA54:6A9F553:661E5252')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...1d7419a436293c0337ca346fe868cb50cfdedc18","html_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...1d7419a436293c0337ca346fe868cb50cfdedc18","permalink_url":"https://github.com/iarspider-cmssw/cmssw/compare/iarspider-cmssw:a3adc2d...iarspider-cmssw:1d7419a","diff_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...1d7419a436293c0337ca346fe868cb50cfdedc18.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/compare/a3adc2d589298214012d49f4afc4356baf30956c...1d7419a436293c0337ca346fe868cb50cfdedc18.patch","base_commit":{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","node_id":"C_kwDOF83__NoAKGEzYWRjMmQ1ODkyOTgyMTQwMTJkNDlmNGFmYzQzNTZiYWYzMDk1NmM","commit":{"author":{"name":"cmsbuild","email":"cmsbuild@cern.ch","date":"2024-02-26T20:24:31Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-02-26T20:24:31Z"},"message":"Merge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry","tree":{"sha":"b3febb83f1d4f95da12369122179a60af82b258b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b3febb83f1d4f95da12369122179a60af82b258b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJl3PN/CRC1aQ7uu5UhlAAA0o8QAH7r51UtpmBRfehPvKNqekf0\nUTBPUWX/WRw5Sb7K62Nuhu40m9GiFK3Q5W8WxexbrUVlWfZbADrQXvYhRRgQaMhp\nYCErAGTC2UfdWZHygcgMjkJKkX+fNzkPjym6/69LgDSXO2N84xx3Yilu4Nauos8l\nMk0otEDN/wMkry+A6qANSfCPQM/hgM9ROPcKFgkqdWogKLmDBnpmjSL1d0ya9RNs\ns3h2iAU7CMf5NNADeIs5xjnmS68x5TK4sNJNpUlY/j9tUuMWSQasWDU7ccmI+khu\nVy9eIIRooTlSyYAChduoodM7yMbiBGJ1CpVXOYq771HVz5mx+VWaGwdmbkJ4KCGu\n6N1NnSRdQyIq55s/k4M1d+PTMSG3L36AaOEasVT34ATgCmj9vnKtIIAHNwF68+1x\njdFlxEMKoxOc1GU0IOXXyPBX/LKAI+amBcWLcQcC8BeQ/7BpRB6oq8uA7GjZFBtJ\nnpu9PjDMMTo63EfNqQt+HsZUoWgHPTv7OMy6NboBsa0TcYFq1cnVeAxwDSoi2pbK\nvgxgZfZXBb+2XlIUwWnnzQ2B3VHxq8DYhZrqSCcIa6nct8wlOcRqnAgB0khcFguD\nw/esgbkVmIWGn+CSvWiWwySGgMQMmb4faavtuGLFzFLh6nb6fv3wzRr+nOw3YnjY\nz85LNBFNzC4GUTlNSN3k\n=ZrDb\n-----END PGP SIGNATURE-----\n","payload":"tree b3febb83f1d4f95da12369122179a60af82b258b\nparent 06ca7a53434f0f5097a4803419417e682cd39af4\nparent e46916c6de24ea11e783cad254421c7b22dc63f4\nauthor cmsbuild 1708979071 +0100\ncommitter GitHub 1708979071 +0100\n\nMerge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c/comments","author":{"login":"cmsbuild","id":4170616,"node_id":"MDQ6VXNlcjQxNzA2MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4170616?v=4","gravatar_id":"","url":"https://api.github.com/users/cmsbuild","html_url":"https://github.com/cmsbuild","followers_url":"https://api.github.com/users/cmsbuild/followers","following_url":"https://api.github.com/users/cmsbuild/following{/other_user}","gists_url":"https://api.github.com/users/cmsbuild/gists{/gist_id}","starred_url":"https://api.github.com/users/cmsbuild/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmsbuild/subscriptions","organizations_url":"https://api.github.com/users/cmsbuild/orgs","repos_url":"https://api.github.com/users/cmsbuild/repos","events_url":"https://api.github.com/users/cmsbuild/events{/privacy}","received_events_url":"https://api.github.com/users/cmsbuild/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"06ca7a53434f0f5097a4803419417e682cd39af4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/06ca7a53434f0f5097a4803419417e682cd39af4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/06ca7a53434f0f5097a4803419417e682cd39af4"},{"sha":"e46916c6de24ea11e783cad254421c7b22dc63f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e46916c6de24ea11e783cad254421c7b22dc63f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e46916c6de24ea11e783cad254421c7b22dc63f4"}]},"merge_base_commit":{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","node_id":"C_kwDOF83__NoAKGEzYWRjMmQ1ODkyOTgyMTQwMTJkNDlmNGFmYzQzNTZiYWYzMDk1NmM","commit":{"author":{"name":"cmsbuild","email":"cmsbuild@cern.ch","date":"2024-02-26T20:24:31Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-02-26T20:24:31Z"},"message":"Merge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry","tree":{"sha":"b3febb83f1d4f95da12369122179a60af82b258b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b3febb83f1d4f95da12369122179a60af82b258b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJl3PN/CRC1aQ7uu5UhlAAA0o8QAH7r51UtpmBRfehPvKNqekf0\nUTBPUWX/WRw5Sb7K62Nuhu40m9GiFK3Q5W8WxexbrUVlWfZbADrQXvYhRRgQaMhp\nYCErAGTC2UfdWZHygcgMjkJKkX+fNzkPjym6/69LgDSXO2N84xx3Yilu4Nauos8l\nMk0otEDN/wMkry+A6qANSfCPQM/hgM9ROPcKFgkqdWogKLmDBnpmjSL1d0ya9RNs\ns3h2iAU7CMf5NNADeIs5xjnmS68x5TK4sNJNpUlY/j9tUuMWSQasWDU7ccmI+khu\nVy9eIIRooTlSyYAChduoodM7yMbiBGJ1CpVXOYq771HVz5mx+VWaGwdmbkJ4KCGu\n6N1NnSRdQyIq55s/k4M1d+PTMSG3L36AaOEasVT34ATgCmj9vnKtIIAHNwF68+1x\njdFlxEMKoxOc1GU0IOXXyPBX/LKAI+amBcWLcQcC8BeQ/7BpRB6oq8uA7GjZFBtJ\nnpu9PjDMMTo63EfNqQt+HsZUoWgHPTv7OMy6NboBsa0TcYFq1cnVeAxwDSoi2pbK\nvgxgZfZXBb+2XlIUwWnnzQ2B3VHxq8DYhZrqSCcIa6nct8wlOcRqnAgB0khcFguD\nw/esgbkVmIWGn+CSvWiWwySGgMQMmb4faavtuGLFzFLh6nb6fv3wzRr+nOw3YnjY\nz85LNBFNzC4GUTlNSN3k\n=ZrDb\n-----END PGP SIGNATURE-----\n","payload":"tree b3febb83f1d4f95da12369122179a60af82b258b\nparent 06ca7a53434f0f5097a4803419417e682cd39af4\nparent e46916c6de24ea11e783cad254421c7b22dc63f4\nauthor cmsbuild 1708979071 +0100\ncommitter GitHub 1708979071 +0100\n\nMerge pull request #44083 from yeckang/GEMPad_2024_14_1_X\n\n[GEM][bug fix] avoid the segmentation fault caused by the 2024 GEMGeometry"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c/comments","author":{"login":"cmsbuild","id":4170616,"node_id":"MDQ6VXNlcjQxNzA2MTY=","avatar_url":"https://avatars.githubusercontent.com/u/4170616?v=4","gravatar_id":"","url":"https://api.github.com/users/cmsbuild","html_url":"https://github.com/cmsbuild","followers_url":"https://api.github.com/users/cmsbuild/followers","following_url":"https://api.github.com/users/cmsbuild/following{/other_user}","gists_url":"https://api.github.com/users/cmsbuild/gists{/gist_id}","starred_url":"https://api.github.com/users/cmsbuild/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmsbuild/subscriptions","organizations_url":"https://api.github.com/users/cmsbuild/orgs","repos_url":"https://api.github.com/users/cmsbuild/repos","events_url":"https://api.github.com/users/cmsbuild/events{/privacy}","received_events_url":"https://api.github.com/users/cmsbuild/received_events","type":"User","site_admin":false},"committer":{"login":"web-flow","id":19864447,"node_id":"MDQ6VXNlcjE5ODY0NDQ3","avatar_url":"https://avatars.githubusercontent.com/u/19864447?v=4","gravatar_id":"","url":"https://api.github.com/users/web-flow","html_url":"https://github.com/web-flow","followers_url":"https://api.github.com/users/web-flow/followers","following_url":"https://api.github.com/users/web-flow/following{/other_user}","gists_url":"https://api.github.com/users/web-flow/gists{/gist_id}","starred_url":"https://api.github.com/users/web-flow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/web-flow/subscriptions","organizations_url":"https://api.github.com/users/web-flow/orgs","repos_url":"https://api.github.com/users/web-flow/repos","events_url":"https://api.github.com/users/web-flow/events{/privacy}","received_events_url":"https://api.github.com/users/web-flow/received_events","type":"User","site_admin":false},"parents":[{"sha":"06ca7a53434f0f5097a4803419417e682cd39af4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/06ca7a53434f0f5097a4803419417e682cd39af4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/06ca7a53434f0f5097a4803419417e682cd39af4"},{"sha":"e46916c6de24ea11e783cad254421c7b22dc63f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e46916c6de24ea11e783cad254421c7b22dc63f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e46916c6de24ea11e783cad254421c7b22dc63f4"}]},"status":"ahead","ahead_by":1,"behind_by":0,"total_commits":1,"commits":[{"sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","node_id":"C_kwDOF83__NoAKDFkNzQxOWE0MzYyOTNjMDMzN2NhMzQ2ZmU4NjhjYjUwY2ZkZWRjMTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:25:47Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"59ca8d083da13dcfe54b584fd1f0690872d5f788","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/59ca8d083da13dcfe54b584fd1f0690872d5f788"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1d7419a436293c0337ca346fe868cb50cfdedc18","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]}],"files":[{"sha":"08cedc77a303a689fbda9b90b2636950237425b2","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":3,"deletions":0,"changes":3,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/1d7419a436293c0337ca346fe868cb50cfdedc18/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/1d7419a436293c0337ca346fe868cb50cfdedc18/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=1d7419a436293c0337ca346fe868cb50cfdedc18","patch":"@@ -4,6 +4,9 @@\n \n \n \n+\n+\n+\n \n \n "}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:26:27 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"51e86c3067450ab0b564e63560f793fa586a1ed9f056857c6edd77c4694590b5"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:25:47 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4942'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '58'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D1F8:C1461:6E79473:6F0D4AF:661E5253')] +{"sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","node_id":"C_kwDOF83__NoAKDFkNzQxOWE0MzYyOTNjMDMzN2NhMzQ2ZmU4NjhjYjUwY2ZkZWRjMTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:25:47Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"59ca8d083da13dcfe54b584fd1f0690872d5f788","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/59ca8d083da13dcfe54b584fd1f0690872d5f788"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1d7419a436293c0337ca346fe868cb50cfdedc18","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"stats":{"total":3,"additions":3,"deletions":0},"files":[{"sha":"08cedc77a303a689fbda9b90b2636950237425b2","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":3,"deletions":0,"changes":3,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/1d7419a436293c0337ca346fe868cb50cfdedc18/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/1d7419a436293c0337ca346fe868cb50cfdedc18/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=1d7419a436293c0337ca346fe868cb50cfdedc18","patch":"@@ -4,6 +4,9 @@\n \n \n \n+\n+\n+\n \n \n "}]} + diff --git a/tests/ReplayData/TestProcessPr.test_hold.txt b/tests/ReplayData/TestProcessPr.test_hold.txt new file mode 100644 index 000000000000..6f663fbfef93 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_hold.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:30:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e1df18831e9e10cd96cad5a308e73a1fb869e91c72d2c166c92246777b46e453"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4934'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '66'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E0A8:1066E:1303F018:131C66D0:661D1DF0')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:30:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e28ec49aab8e0728fc3c114848d8904dc87e0b2b695acc1326716dc0cc2fe996"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:30:20 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4933'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '67'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E0AE:1B4F11:186F00B:1886CD5:661D1DF1')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":10,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T12:30:20Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:30:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4933'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '67'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E0B2:279377:1505285F:151F4A6A:661D1DF1')] +{"resources":{"core":{"limit":5000,"used":67,"remaining":4933,"reset":1713184962},"search":{"limit":30,"used":0,"remaining":30,"reset":1713184301},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713187841},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713187841},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713184301},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713187841},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713187841},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713187841},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713184301},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713187841},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713184301}},"rate":{"limit":5000,"used":67,"remaining":4933,"reset":1713184962}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:30:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2eaa4ed50ef350b5c912dcaa7c98e42a032db205a6618dae49d7a1c28fe18f7e"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:30:20 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4932'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '68'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E0B8:2E61E0:3EC0620A:3F0A7D32:661D1DF1')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T12:30:20Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":10,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:30:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:30:20 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4931'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '69'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E0BC:2E61E0:3EC06686:3F0A81AE:661D1DF2')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:30:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:30:20 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4930'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '70'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E0C0:2934F8:158C53C4:15A67ACC:661D1DF2')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:30:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7b159f61af57dda91dfd7f7684a90f5efc7b5a8d194595727a5c3df8709cdf3e"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4929'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '71'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E0C2:29E823:871BC44:87CB114:661D1DF2')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592326842,"node_id":"SC_kwDOF83__M8AAAAGqDxIug","state":"success","description":"Tests requested by iarspider at 2024-04-15 12:28:44 UTC.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","context":"bot/17/jenkins","created_at":"2024-04-15T12:29:57Z","updated_at":"2024-04-15T12:29:57Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592327652,"node_id":"SC_kwDOF83__M8AAAAGqDxL5A","state":"success","description":"Comment by iarspider at 2024-04-15 12:28:44 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","context":"bot/17/ack","created_at":"2024-04-15T12:29:59Z","updated_at":"2024-04-15T12:29:59Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":16,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:30:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4928'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '72'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E0CC:2C0410:11777BC2:118E5DD4:661D1DF2')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:30:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"94c74d1e47b57b47acf6cd2522bc380dde97deb9fb03f3fbe5c4f87e0c4cbb95"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4927'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '73'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'E0CE:2934F8:158C5D2A:15A68430:661D1DF3')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T12:29:59Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_invalid_type.txt b/tests/ReplayData/TestProcessPr.test_invalid_type.txt new file mode 100644 index 000000000000..64f6ce55626a --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_invalid_type.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:13:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5f8064ebaf701adbdb654b2eecdd65d4898049f3ad24f824dff657bad77e1ee1"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4892'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '108'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D930:2E61E0:3FFA0749:40452849:661D3617')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:13:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d4561d52ed81f8b5df49f039a316c79970d7f6c58de8b65f937d839d39553739"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:05:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4891'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '109'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D940:2943B3:3C3697A5:3C7D651D:661D3617')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"comments":21,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T14:05:25Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:13:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4891'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '109'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D942:1066E:1435B950:144F35FE:661D3617')] +{"resources":{"core":{"limit":5000,"used":109,"remaining":4891,"reset":1713193106},"search":{"limit":30,"used":0,"remaining":30,"reset":1713190483},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713194023},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713194023},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713190483},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713194023},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713194023},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713194023},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713190483},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713194023},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713190483}},"rate":{"limit":5000,"used":109,"remaining":4891,"reset":1713193106}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:13:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b6c1c77fc55ebfb5f6d624296771feb1438027f292775052296592bd2561da7f"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:05:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4890'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '110'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D948:122DEA:163892F1:1653E5F4:661D3618')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T14:05:25Z","closed_at":null,"merged_at":null,"merge_commit_sha":"b6845203ee1d8d89320de71c5b77164a7b67d8ad","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":21,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:13:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:05:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4889'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '111'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D954:289E16:3D4D77EC:3D94DD1B:661D3618')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:13:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:05:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4888'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '112'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D95E:279377:163E4C32:16597463:661D3618')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:13:45 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5b3d40adfad5cd652b694f2281a5af804b58c48b2cebf95aa926ce190a05ab16"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4887'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '113'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D96C:279377:163E54D2:16597CE6:661D3619')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28593241550,"node_id":"SC_kwDOF83__M8AAAAGqEo9zg","state":"success","description":"2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","context":"bot/17/test_parameters","created_at":"2024-04-15T13:12:09Z","updated_at":"2024-04-15T13:12:09Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594424899,"node_id":"SC_kwDOF83__M8AAAAGqFxMQw","state":"pending","description":"Aborted, waiting for authorized user to issue the test command.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","context":"bot/17/jenkins","created_at":"2024-04-15T13:58:55Z","updated_at":"2024-04-15T13:58:55Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594528913,"node_id":"SC_kwDOF83__M8AAAAGqF3ikQ","state":"success","description":"Comment by iarspider at 2024-04-15 14:00:44 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056935714","context":"bot/17/ack","created_at":"2024-04-15T14:02:45Z","updated_at":"2024-04-15T14:02:45Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":17,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:13:45 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4886'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '114'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D96E:2AC267:3CF594E3:3D3D3325:661D3619')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:13:46 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d870210d9c3ebfc1cd539ecdfbf29e6471d26c53f92956c476fd57a6235e2973"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4885'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '115'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D972:289E16:3D4D8A59:3D94EF95:661D3619')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T14:02:45Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056903278,"node_id":"IC_kwDOF83__M56mdpu","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:46:04Z","updated_at":"2024-04-15T13:46:04Z","author_association":"MEMBER","body":"please test for CMSSW_14_1_CPP20_X","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056930228,"node_id":"IC_kwDOF83__M56mkO0","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:58:14Z","updated_at":"2024-04-15T13:58:14Z","author_association":"MEMBER","body":"please abort","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056934192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056934192,"node_id":"IC_kwDOF83__M56mlMw","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:05Z","updated_at":"2024-04-15T14:00:05Z","author_association":"MEMBER","body":"please close","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056935714","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056935714,"node_id":"IC_kwDOF83__M56mlki","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:44Z","updated_at":"2024-04-15T14:01:29Z","author_association":"MEMBER","body":"please reopen","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056946596","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056946596,"node_id":"IC_kwDOF83__M56moOk","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:05:24Z","updated_at":"2024-04-15T14:05:24Z","author_association":"MEMBER","body":"type invalid","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_many_commits.txt b/tests/ReplayData/TestProcessPr.test_many_commits.txt new file mode 100644 index 000000000000..f3ce41cfdd86 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_many_commits.txt @@ -0,0 +1,77 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:52:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cb9c19151520a56bf2918aa887bf22a3bad8aa9795643725493ce05202161831"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4843'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '157'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '90B2:117B54:6BB67E7:6C4DAA1:661E585C')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:47:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:45:47Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:45:47Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:52:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"83588c958016847dbc8d9b9563331733b5a8493d0f6803e6160e14114a150c64"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4842'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '158'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '90B4:28A0B9:15F4EBD:160ABC1:661E585C')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","id":2245729026,"node_id":"PR_kwDOF83__M5syVdt","number":18,"title":"Commit flood","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-04-16T10:47:28Z","updated_at":"2024-04-16T10:51:23Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:52:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4842'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '158'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '90C0:117B54:6BB6E56:6C4E13F:661E585D')] +{"resources":{"core":{"limit":5000,"used":158,"remaining":4842,"reset":1713266570},"search":{"limit":30,"used":0,"remaining":30,"reset":1713264793},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713268333},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713268333},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713264793},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713268333},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713268333},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713268333},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713264793},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713268333},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713264793}},"rate":{"limit":5000,"used":158,"remaining":4842,"reset":1713266570}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:52:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"97b808193bd9f8277ad3118d07a323fae3f58ec3e3889c8de3651164a364e909"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4841'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '159'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '90C8:3A6FB9:713D050:71D3E81:661E585D')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18","id":1825134445,"node_id":"PR_kwDOF83__M5syVdt","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","number":18,"state":"open","locked":false,"title":"Commit flood","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-04-16T10:47:28Z","updated_at":"2024-04-16T10:51:23Z","closed_at":null,"merged_at":null,"merge_commit_sha":"ad6b604c0efe525f5151558f16145702288e86df","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/fd99bd146e87a00eb90eccef12f487ecc8f4c496","head":{"label":"iarspider-cmssw:commit-flood","ref":"commit-flood","sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:47:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:47:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/18"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/fd99bd146e87a00eb90eccef12f487ecc8f4c496"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":151,"additions":151,"deletions":0,"changed_files":151} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/milestones/4 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:52:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"43d42f7c66c18396bab63e5c6c8feb3b760aaa4d9abdf1763f06a235a0b7d0bf"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:02:44 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4840'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '160'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '90CC:769E0:6D54CE7:6DEB5EA:661E585D')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:52:14 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2f713a4040dbdc2f62e7c62fa3c6d312f32c8e92b17944647e90d4926d306cad"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="next", ; rel="last"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4839'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '161'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '90D2:242361:6F417F7:6FD9C5D:661E585D')] +[{"sha":"cfd9e48cab9681ba2d67961b48b5e82f10dda300","filename":"Alignment/APEEstimation/python/AlcaRecoSelection_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -60,3 +60,4 @@\n \n \n \n+# dummy dummy"},{"sha":"47ba2c8d1ad64c6a26cef1eed4777be4db5dd5c5","filename":"Alignment/APEEstimation/python/AlignmentTrackSelector_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -110,3 +110,4 @@\n \n \n \n+# dummy dummy"},{"sha":"47e8b236b0cb387592ec908ca3d3475e3d6abbe8","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -24,3 +24,4 @@\n \n \n \n+# dummy dummy"},{"sha":"909bc01cda8be93058f669684eb1ee49bd8e8323","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -47,3 +47,4 @@\n ApeOutputFile = cms.string(os.environ['CMSSW_BASE'] + '/src/Alignment/APEEstimation/hists/apeOutput.txt'),\n \n )\n+# dummy dummy"},{"sha":"5522b0dfa2ac9f6208791f0937b6687dcd4ecdea","filename":"Alignment/APEEstimation/python/ApeEstimator_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n \n \n \n+# dummy dummy"},{"sha":"06fd47eb14b15dc3b226b529ad54bebb3b43bc75","filename":"Alignment/APEEstimation/python/ApeEstimator_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -98,3 +98,4 @@\n #Define intervals in residual error for calculation of APE (one estimation per interval), (for APE calculation)\n residualErrorBinning = cms.vdouble(),\n )\n+# dummy dummy"},{"sha":"926a2fd7728d4b7a7784bd6b4bfcb8855e57f66f","filename":"Alignment/APEEstimation/python/PrivateSkim_EventContent_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -43,3 +43,4 @@\n \t#'drop *_MEtoEDMConverter_*_*',\n ),\n )\n+# dummy dummy"},{"sha":"f39d7c3c0cce2c48e772aab2f7d959616e24bc6a","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_Phase0_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -95,3 +95,4 @@\n \n \n \n+# dummy dummy"},{"sha":"25e7c20f7ca2f28260a83780c19acac9cc19768f","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -110,3 +110,4 @@\n \n \n \n+# dummy dummy"},{"sha":"4b1fb0f9fdf497b5ff86a22e8e73b961f4c25e71","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_Phase0_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -124,3 +124,4 @@\n \n \n \n+# dummy dummy"},{"sha":"626849ade48b6cb9318c504d36f4a90db0614c6a","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -154,3 +154,4 @@\n \n \n \n+# dummy dummy"},{"sha":"02f5b3ac9c70762afb5da8ed2d29869337f2bc63","filename":"Alignment/APEEstimation/python/SectorBuilder_Tec_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -421,3 +421,4 @@\n \n \n \n+# dummy dummy"},{"sha":"86f7703d587d59e570b64fc0c2f6aa8787c1e4b1","filename":"Alignment/APEEstimation/python/SectorBuilder_Tib_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -212,3 +212,4 @@\n \n \n \n+# dummy dummy"},{"sha":"2292b97aa2f737afbdec97b09e463726980346fa","filename":"Alignment/APEEstimation/python/SectorBuilder_Tid_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -253,3 +253,4 @@\n \n \n \n+# dummy dummy"},{"sha":"8a508a1c472165f5355c0ef004fd427908a51375","filename":"Alignment/APEEstimation/python/SectorBuilder_Tob_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -253,3 +253,4 @@\n \n \n \n+# dummy dummy"},{"sha":"a8c4a4af5fc6768816ee13b3dfc36c61daf25363","filename":"Alignment/APEEstimation/python/SectorBuilder_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -132,3 +132,4 @@\n \n \n \n+# dummy dummy"},{"sha":"c2e852bd0671ee7480ceffdf9817db7b8f7713ab","filename":"Alignment/APEEstimation/python/SectorBuilder_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n posY = cms.vdouble(), #(-120.,120.) must contain Intervals\n posZ = cms.vdouble() #(-280.,280.) must contain Intervals\n )\n+# dummy dummy"},{"sha":"ede8c99a7e694ac539439cd391fb259d06b77e5d","filename":"Alignment/APEEstimation/python/TrackRefitter_38T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -42,3 +42,4 @@\n \n \n \n+# dummy dummy"},{"sha":"82025f076ada050be8e40a327dfe374b6844d3dd","filename":"Alignment/APEEstimation/python/TriggerSelection_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -26,3 +26,4 @@\n \n \n \n+# dummy dummy"},{"sha":"994cb46514551b9bd545e36d5cfa0900f30dceb0","filename":"Alignment/APEEstimation/python/conditions/init.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -1 +1,2 @@\n #Automatically created by SCRAM\n+# dummy dummy"},{"sha":"19e21e35e8907ecd1c2e9d0a8f2218db681b2726","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -31,3 +31,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"a27fa224cbaaf0eff8d60872deb62cd42b5c3e99","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -30,3 +30,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"5324a43787666746b8add627370e9e8a97584f21","filename":"Alignment/APEEstimation/python/samples/Data_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -26,3 +26,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"5ccb672a5ee21315c404eb68c4a434e2ee7b8887","filename":"Alignment/APEEstimation/python/samples/MC_UL16_ttbar_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -57,3 +57,4 @@\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0920227F-8FE9-C641-81B1-E4E33CBC50DE.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0837296D-D6B4-4244-8BB8-4E01D53DA5EF.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/060F5791-2313-2241-A6DE-729007C98C57.root'])\n+# dummy dummy"},{"sha":"4cfc76e15c4e05d8f42cb36bb3be265f39f630c0","filename":"Alignment/APEEstimation/python/samples/MC_UnitTest_TkAlMuonIsolated_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -18,3 +18,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"e9ffad09f2e2ec97fbb44650bed8e6525e4e1ab7","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n ] )\n \n \n+# dummy dummy"},{"sha":"434ce5f09947dcaaeca656bdb33f300ed46117e0","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -63,3 +63,4 @@\n ] )\n \n \n+# dummy dummy"},{"sha":"2412450215024294c8b6f0a6ceda06039ed627a0","filename":"Alignment/APEEstimation/test/SkimProducer/skimProducer_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -205,3 +205,4 @@\n ## Outpath\n ##\n process.outpath = cms.EndPath(process.out)\n+# dummy dummy"},{"sha":"d5a54e0e54bcae306f74fec4398d6c830fbe5b60","filename":"Alignment/APEEstimation/test/SkimProducer/skimTemplates.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -88,3 +88,4 @@\n endif\n \"\"\"\n \n+# dummy dummy"},{"sha":"dc17d6c0d3ae82056db2693f9118a88b5f48feb2","filename":"Alignment/APEEstimation/test/SkimProducer/startSkim.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -186,3 +186,4 @@ def main(argv):\n pass # The keyboard interrupt will be forwarded to the subprocesses anyway, stopping them without terminating them immediately\n if __name__ == \"__main__\":\n main(sys.argv)\n+# dummy dummy"},{"sha":"12559d4c8e039007fcc4bd28cfc1bc5da91ae659","filename":"Alignment/APEEstimation/test/apeTreeCreateDefault_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -133,3 +133,4 @@\n \n \n \n+# dummy dummy"},{"sha":"381c957d95d467117577295a9053ee78b9978320","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -611,3 +611,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"d5a6f54fcc3e8d9b2397c4e5f896685474c174ac","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitterTemplates.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -74,3 +74,4 @@ def applyConditions(process):\n )\n process.prefer_my{record}Conditions = cms.ESPrefer(\"PoolDBESSource\", \"my{record}Conditions\")\n \"\"\"\n+# dummy dummy"},{"sha":"967898252d1276a2548c4bab1ba1b3b6456ef235","filename":"Alignment/APEEstimation/test/autoSubmitter/helpers.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -199,3 +199,4 @@ def loadConditions(dictionary):\n goodConditions = False\n print(\"'{}' is not a valid record name.\".format(condition[\"record\"]))\n return conditions, goodConditions\n+# dummy dummy"},{"sha":"67bdfaa3cca0c7462f3062cc865e71fe29786401","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimatorSummary_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -142,3 +142,4 @@\n \n \n \n+# dummy dummy"},{"sha":"af5ed6947eadeaa60f840e76631920be8fdd6eac","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimator_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -267,3 +267,4 @@\n \n \n \n+# dummy dummy"},{"sha":"c65139a711a28dab94ac988b4e0e53a8c57d7ef1","filename":"Alignment/APEEstimation/test/cfgTemplate/apeLocalSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -112,3 +112,4 @@\n \n \n \n+# dummy dummy"},{"sha":"8f4c50febf4cf0e58c4790d7f779e01306b52092","filename":"Alignment/APEEstimation/test/createTrackerAlignmentErrorExtendedRcd_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -168,3 +168,4 @@\n )\n \n # We do not even need a path - producer is called anyway...\n+# dummy dummy"},{"sha":"63ce808f98d3fe4f13fcc057298fa0a9acff277e","filename":"Alignment/APEEstimation/test/plottingTools/drawIterations.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -15,3 +15,4 @@\n plot.setTitle(\"Title\")\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"},{"sha":"616425941405cfb232e41a44f2f9767763b85cb2","filename":"Alignment/APEEstimation/test/plottingTools/drawResults.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -16,3 +16,4 @@\n plot.addInputFile(\"label\", base+\"/hists/workingArea/iter14/allData_iterationApe.root\", color = ROOT.kGray+2)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"},{"sha":"03f041cd1901b5042a2b285f2b2dee6ab9d66139","filename":"Alignment/APEEstimation/test/plottingTools/drawTrend.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -35,3 +35,4 @@\n plot.log = False\n \n plot.draw()\n+# dummy dummy"},{"sha":"01be60bba3796cbed5ada4ef8b014c4d69c58656","filename":"Alignment/APEEstimation/test/plottingTools/drawValidation.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n plot.addInputFile(\"Design\", \"{base}/hists/Design/baseline/allData.root\".format(base=base),color=ROOT.kRed,marker=0)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"},{"sha":"69b618cf13fce1aa2e356920f8c7426a171aed2b","filename":"Alignment/APEEstimation/test/plottingTools/granularity.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -44,3 +44,4 @@ def __init__(self):\n # BpixLayer1Out, BpixLayer3In, FpixMinusLayer1, TibLayer1RphiOut, TibLayer4In, TobLayer1StereoOut, TobLayer5Out, TecPlusRing7\n # This can be changed in apeEstimator_cfg or in SectorBuilder_cff\n # For these sectors, additional hit validation plots are created\n+# dummy dummy"},{"sha":"e2903cd9ef95e0b42c719a5415fd269af0058f4d","filename":"Alignment/APEEstimation/test/plottingTools/iterationsPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -127,3 +127,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"fc88770ad71ac034a876d729d9050a1e89313d8d","filename":"Alignment/APEEstimation/test/plottingTools/resultPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -237,3 +237,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"b7034340bc87e32e4dc513f59642bc22facd29dd","filename":"Alignment/APEEstimation/test/plottingTools/setTDRStyle.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -168,3 +168,4 @@ def setTDRStyle():\n \n tdrStyle.cd()\n return tdrStyle\n+# dummy dummy"},{"sha":"72f8ed57763a191fc2fe15eba50e726e950ed6a5","filename":"Alignment/APEEstimation/test/plottingTools/systematicErrors.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -114,3 +114,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"10286125398107dd8babc05003fc8084dfd1a239","filename":"Alignment/APEEstimation/test/plottingTools/trendPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -309,3 +309,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"af01a36e11c9e40574697002363af03e8af08085","filename":"Alignment/APEEstimation/test/plottingTools/validationPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -293,3 +293,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"4ffb3b11c42ef4aa65462742c8965c3c1263dc65","filename":"Alignment/APEEstimation/test/trackerTreeGenerator_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -88,3 +88,4 @@\n \n \n \n+# dummy dummy"},{"sha":"06b273510f174af8c8399e2871c3f5aeffdf59ae","filename":"Alignment/CocoaApplication/test/cocoaAnalyzer_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -82,3 +82,4 @@\n \n process.p = cms.Path(process.cocoa)\n \n+# dummy dummy"},{"sha":"d02bdb16a75821a5c87b3a1d032edbe2ab05f63a","filename":"Alignment/CommonAlignmentAlgorithm/python/AlignmentParameterStore_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -12,3 +12,4 @@\n )\n )\n \n+# dummy dummy"},{"sha":"747859a31cb854ed1664770622d7e05c22ff09db","filename":"Alignment/CommonAlignmentAlgorithm/python/ApeSettingAlgorithm_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -31,3 +31,4 @@\n # Also note:\n # process.AlignmentProducer.saveApeToDB -- to save as an sqlite file\n # and associated entries in _cfg.py\n+# dummy dummy"},{"sha":"871c1f4bc1e38c61f1385a1d43c0688cd82c17e3","filename":"Alignment/CommonAlignmentAlgorithm/python/SiPixelLorentzAngleCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n # one directly uses the unlabelled version, i.e. \"\"\n lorentzAngleLabel = cms.string(\"fromAlignment\"),\n )\n+# dummy dummy"},{"sha":"6ce31625b1e72bb606171f611d48d441c791bc19","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripBackplaneCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -17,3 +17,4 @@\n # Configuration of the granularity for the backplane correction determination\n BackplaneModuleGroups = cms.PSet(),\n )\n+# dummy dummy"},{"sha":"5291a55b2b45ecae62a32082b0b94c17a960056d","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripLorentzAngleCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n readoutMode = 'deconvolution',\n recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_deco'),\n )\n+# dummy dummy"},{"sha":"b9af2f1101f5e9a012f2ed43fb4f26b72fbc1ee5","filename":"Alignment/CommonAlignmentAlgorithm/test/apeLocalSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -104,3 +104,4 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy"},{"sha":"2391a950ac20ba1921b287c39cd7214b0e3fec5c","filename":"Alignment/CommonAlignmentAlgorithm/test/apeSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -94,3 +94,4 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy"},{"sha":"83cddfa719453e6b918bab73da5403fd064e077e","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonResidualsDefaults_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -11,3 +11,4 @@\n ystdev_bins = cms.uint32(300), ystdev_low = cms.double(0.0), ystdev_high = cms.double(30.0),\n yerronmean_bins = cms.uint32(300), yerronmean_low = cms.double(0.0), yerronmean_high = cms.double(1.0),\n )\n+# dummy dummy"},{"sha":"662ab89add756d599832c641b7ab26f1c719d26c","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonSystemMap1D_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -20,3 +20,4 @@\n useStubPosition = cms.bool(False),\n createNtuple = cms.bool(False)\n )\n+# dummy dummy"},{"sha":"f483b5a4ccdeab05230e1a9037c0cfe396ca5b5b","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonVsCurvature_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -18,3 +18,4 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy"},{"sha":"ff6668d4e2859434466fb87c4002d24343cfd4e9","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorSegmentDifferences_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -16,3 +16,4 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy"},{"sha":"c0be7655db2b7bbeb90b7ed2acef3ce88ffb4e01","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentStats_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -1,2 +1,3 @@\n import FWCore.ParameterSet.Config as cms\n from Alignment.CommonAlignmentMonitor.AlignmentStats_cfi import *\n+# dummy dummy"},{"sha":"91baa52f43f6e950c0e77c5e7fd9acc5f2116204","filename":"Alignment/CommonAlignmentMonitor/test/testAlignmentStats_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -190,3 +190,4 @@\n process.NewStatsCTF)\n \n process.p2 = cms.Path(process.seqALCARECOTkAlMinBiasSkimmed)\n+# dummy dummy"},{"sha":"895c7abc7def8e403bcaf0cf1e7b5fb99a8fe786","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOMuAlBeamHaloOverlaps = copy.deepcopy(OutALCARECOMuAlBeamHaloOverlaps_noDrop)\n OutALCARECOMuAlBeamHaloOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"0fe5fe669e6beab5e90ced161e923c8ff88e8e32","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -35,3 +35,4 @@\n )\n \n seqALCARECOMuAlBeamHaloOverlaps = cms.Sequence(ALCARECOMuAlBeamHaloOverlapsHLT + ALCARECOMuAlBeamHaloOverlapsDCSFilter + ALCARECOMuAlBeamHaloOverlapsEnergyCut * ALCARECOMuAlBeamHaloOverlaps)\n+# dummy dummy"},{"sha":"ea659b58a2e96de718292249011e8ecd54c6fd8d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOMuAlBeamHalo = copy.deepcopy(OutALCARECOMuAlBeamHalo_noDrop)\n OutALCARECOMuAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"ae076f9d342c0c1465126e03200f9ef1b9fdd675","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -29,3 +29,4 @@\n \n seqALCARECOMuAlBeamHalo = cms.Sequence(ALCARECOMuAlBeamHaloHLT + ALCARECOMuAlBeamHaloDCSFilter + ALCARECOMuAlBeamHalo)\n \n+# dummy dummy"},{"sha":"877ec9b785eeffc02df2f7aaf517fefd4f72284b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n import copy\n OutALCARECOMuAlCalIsolatedMu = copy.deepcopy(OutALCARECOMuAlCalIsolatedMu_noDrop)\n OutALCARECOMuAlCalIsolatedMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"2f2fa7bcdf5dec5ccb84bfba0d1037bbbb3afdfe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -48,3 +48,4 @@\n seqALCARECOMuAlCalIsolatedMu = cms.Sequence(ALCARECOMuAlCalIsolatedMuHLT + ALCARECOMuAlCalIsolatedDCSFilter + ALCARECOMuAlCalIsolatedMu)\n \n seqALCARECOMuAlCalIsolatedMuGeneralTracks = cms.Sequence(ALCARECOMuAlCalIsolatedMuGeneralTracks)\n+# dummy dummy"},{"sha":"e692f91dab0a417c82f71e8668fe62fdaecec892","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n import copy\n OutALCARECOMuAlGlobalCosmicsInCollisions = copy.deepcopy(OutALCARECOMuAlGlobalCosmicsInCollisions_noDrop)\n OutALCARECOMuAlGlobalCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"0f482289c448cb880d9e98cf4b34ff3ae220e2e4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -33,3 +33,4 @@\n )\n \n seqALCARECOMuAlGlobalCosmicsInCollisions = cms.Sequence(ALCARECOMuAlGlobalCosmicsInCollisionsHLT + ALCARECOMuAlGlobalCosmicsInCollisionsDCSFilter + ALCARECOMuAlGlobalCosmicsInCollisions)\n+# dummy dummy"},{"sha":"29d1edc9fbd44d32b3a80481d7574c8b9e9b75f4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -35,3 +35,4 @@\n import copy\n OutALCARECOMuAlGlobalCosmics = copy.deepcopy(OutALCARECOMuAlGlobalCosmics_noDrop)\n OutALCARECOMuAlGlobalCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"86477423de63681eba81e21d86802ec1d7648449","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n seqALCARECOMuAlGlobalCosmicsCombinatorialTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCombinatorialTF)\n seqALCARECOMuAlGlobalCosmicsCosmicTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCosmicTF)\n seqALCARECOMuAlGlobalCosmicsRegionalTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsRegionalTF)\n+# dummy dummy"},{"sha":"3cd238715472e4d745891449f067165210c271cc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -29,3 +29,4 @@\n import copy\n OutALCARECOMuAlOverlaps = copy.deepcopy(OutALCARECOMuAlOverlaps_noDrop)\n OutALCARECOMuAlOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"659d1cc21ac5e925f49b01e8fccd4949ea55d329","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -51,3 +51,4 @@\n seqALCARECOMuAlOverlaps = cms.Sequence(ALCARECOMuAlOverlapsHLT+ALCARECOMuAlOverlapsDCSFilter+ALCARECOMuAlOverlapsMuonSelector*ALCARECOMuAlOverlaps)\n \n seqALCARECOMuAlOverlapsGeneralTracks = cms.Sequence(ALCARECOMuAlOverlapsGeneralTracks)\n+# dummy dummy"},{"sha":"844c2022bf741a2e3b0ac4b4e95e61306ccc1394","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -27,3 +27,4 @@\n import copy\n OutALCARECOMuAlStandAloneCosmics = copy.deepcopy(OutALCARECOMuAlStandAloneCosmics_noDrop)\n OutALCARECOMuAlStandAloneCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"379d125af11a4575a462030a5f4ddf17061cd847","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n \n seqALCARECOMuAlStandAloneCosmics = cms.Sequence(ALCARECOMuAlStandAloneCosmicsHLT + ALCARECOMuAlStandAloneCosmicsDCSFilter + ALCARECOMuAlStandAloneCosmics)\n \n+# dummy dummy"},{"sha":"42f263db7980f4da0a4767b7a445df78923c8bb9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -29,3 +29,4 @@\n import copy\n OutALCARECOMuAlZMuMu = copy.deepcopy(OutALCARECOMuAlZMuMu_noDrop)\n OutALCARECOMuAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b549c72e3cd5046c15f45b3334e4d4410592a49e","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -49,3 +49,4 @@\n seqALCARECOMuAlZMuMu = cms.Sequence(ALCARECOMuAlZMuMuHLT+ALCARECOMuAlZMuMuDCSFilter+ALCARECOMuAlZMuMu)\n \n seqALCARECOMuAlZMuMuGeneralTracks = cms.Sequence(ALCARECOMuAlZMuMuGeneralTracks)\n+# dummy dummy"},{"sha":"e69ad471f785c84484582cf8dbf1dc5372eb1f09","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -161,3 +161,4 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy"},{"sha":"30ac7ba2338abca4b5c7e3c4cd7d8fba4957b19f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHGComb=OutALCARECOPromptCalibProdSiPixelAliHGComb_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHGComb.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"219601e77d98b73e2cf378682f0d2b0976114800","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -133,3 +133,4 @@\n SiPixelAliTrackRefitterHGDimuon1*\n SiPixelAliMilleAlignmentProducerHGDimuon*\n SiPixelAliMillePedeFileConverterHGDimuon)\n+# dummy dummy"},{"sha":"d35a544bf35310c31a7573858641680a2fdf7a73","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHG=OutALCARECOPromptCalibProdSiPixelAliHG_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHG.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"cb2ae4c6030f1708233eb6e1a66242c5c48640cf","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -74,3 +74,4 @@\n SiPixelAliTrackRefitterHG1*\n SiPixelAliMilleAlignmentProducerHG*\n SiPixelAliMillePedeFileConverterHG)\n+# dummy dummy"},{"sha":"45a673727453c92ebb43e03aaeb3b56aa8f8c805","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAli=OutALCARECOPromptCalibProdSiPixelAli_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAli.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"75d68863cb6dcca952393df752b961fa5780baea","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -159,3 +159,4 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy"},{"sha":"713486889d33b7ddcf3ebd7da763822fe6ff6d79","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlBeamHalo = copy.deepcopy(OutALCARECOTkAlBeamHalo_noDrop)\n OutALCARECOTkAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"68cb6596cfbb294ac8ec01f3e8716ff98cdfe8c3","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n ALCARECOTkAlBeamHalo.TwoBodyDecaySelector.applyAcoplanarityFilter = False\n \n seqALCARECOTkAlBeamHalo = cms.Sequence(ALCARECOTkAlBeamHaloDCSFilter+ALCARECOTkAlBeamHalo)\n+# dummy dummy"},{"sha":"ed40983bf8eeae5cd9bb84737409cdd08941df19","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOTkAlCosmics0THLT = copy.deepcopy(OutALCARECOTkAlCosmics0THLT_noDrop)\n OutALCARECOTkAlCosmics0THLT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"bef9ce2c93843d77ba1f77fa78163c3c9695df91","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n seqALCARECOTkAlCosmicsCTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCTF0T)\n seqALCARECOTkAlCosmicsCosmicTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsRegional0T)\n+# dummy dummy"},{"sha":"bbcaed50c8e8ea47b328a8423964da3708c3d685","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -31,3 +31,4 @@\n import copy\n OutALCARECOTkAlCosmics0T = copy.deepcopy(OutALCARECOTkAlCosmics0T_noDrop)\n OutALCARECOTkAlCosmics0T.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"72c2b8173d9c28d372c4761d9029b006924f5bcc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Skimmed_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -142,3 +142,4 @@\n #seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF+NewStatsCTF)\n seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF)\n \n+# dummy dummy"},{"sha":"91dba01036de233a38e8407a373c9668794c2e16","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -57,3 +57,4 @@\n seqALCARECOTkAlCosmicsCosmicTF0T = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0T = cms.Sequence(ALCARECOTkAlCosmicsRegional0T)\n seqALCARECOTkAlCosmicsDuringCollisions0T = cms.Sequence(ALCARECOTkAlCosmicsDuringCollisions0T)\n+# dummy dummy"},{"sha":"686ae30481e0950370e0dd558fd2a4b1642dab50","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n OutALCARECOTkAlCosmicsHLT = copy.deepcopy(OutALCARECOTkAlCosmicsHLT_noDrop)\n OutALCARECOTkAlCosmicsHLT.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy"},{"sha":"e71cfbc60a0df9a70493b779d71bf7c445857916","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n seqALCARECOTkAlCosmicsCosmicTFHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegionalHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsRegional)\n \n+# dummy dummy"},{"sha":"000b9675c5188d949a19dbcbea73b04ca25238d0","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -25,3 +25,4 @@\n import copy\n OutALCARECOTkAlCosmicsInCollisions = copy.deepcopy(OutALCARECOTkAlCosmicsInCollisions_noDrop)\n OutALCARECOTkAlCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"33f3a6fd4ab9831581ca61152d7c3b2f7f8c91fc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -53,3 +53,4 @@\n \n #________________________________Sequences____________________________________\n seqALCARECOTkAlCosmicsInCollisions = cms.Sequence(cosmicDCTracksSeq*ALCARECOTkAlCosmicsInCollisionsHLT+ALCARECOTkAlCosmicsInCollisionsDCSFilter+ALCARECOTkAlCosmicsInCollisions)\n+# dummy dummy"},{"sha":"1fa4661e7963ec6e940daa5a90b7d44ee06ff9ec","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -28,3 +28,4 @@\n import copy\n OutALCARECOTkAlCosmics = copy.deepcopy(OutALCARECOTkAlCosmics_noDrop)\n OutALCARECOTkAlCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"091fbee592d0a09c0d0e3278a1f09a8fb7e398b9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -56,3 +56,4 @@\n seqALCARECOTkAlCosmicsCTF = cms.Sequence(ALCARECOTkAlCosmicsCTF)\n seqALCARECOTkAlCosmicsCosmicTF = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegional = cms.Sequence(ALCARECOTkAlCosmicsRegional)\n+# dummy dummy"}] + +https +GET +api.github.com +None +/repositories/399376380/pulls/18/files?per_page=100&page=2 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:52:14 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7b34eed8939bf6664aee7cd8db9363f9cce5b02c7c1b2a82633d9911fad11d2d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="prev", ; rel="first"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4838'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '162'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '90E0:14E79:6914092:69AC54B:661E585E')] +[{"sha":"04e2d813ac585e1b7673cfbb8fc1923dedafa59f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -36,3 +36,4 @@\n \n OutALCARECOTkAlDiMuonAndVertex = OutALCARECOTkAlDiMuonAndVertex_noDrop.clone()\n OutALCARECOTkAlDiMuonAndVertex.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"95b1f254dffb1313d929032538d77052b4161080","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -34,3 +34,4 @@\n eventSetupPathsKey='TkAlZMuMuHI')\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlDiMuon, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"40c7addf56393c1a7bde9fc55e48ae9bb434cfc4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -42,3 +42,4 @@\n \n OutALCARECOTkAlJetHT = OutALCARECOTkAlJetHT_noDrop.clone()\n OutALCARECOTkAlJetHT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"560bf98333a3142d57a6f197637b08d36d2408e1","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -47,3 +47,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJetHT, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"740618cab38b590946602344d8f81a4b844ce12b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMuHI = OutALCARECOTkAlJpsiMuMuHI_noDrop.clone()\n OutALCARECOTkAlJpsiMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"bf859b1017bc91f4fa4cc69f0a3f462e40db7adc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n +ALCARECOTkAlJpsiMuMuHIGoodMuons\n +ALCARECOTkAlJpsiMuMuHI\n )\n+# dummy dummy"},{"sha":"3a74b9aea426eaf71bfb189a1ef031ca7a19ed68","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMu = OutALCARECOTkAlJpsiMuMu_noDrop.clone()\n OutALCARECOTkAlJpsiMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"16c9d0587c7f1ca36f19494751bc5fd61414fe0c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -60,3 +60,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJpsiMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"ca5d3981af1d54cccfa4c91f6b18a723f8c2335c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -13,3 +13,4 @@\n import copy\n OutALCARECOTkAlLAS = copy.deepcopy(OutALCARECOTkAlLAS_noDrop)\n OutALCARECOTkAlLAS.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"37ad0535fa3f082ef3085a7cba35cc3a101a3395","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -23,3 +23,4 @@\n )\n \n seqALCARECOTkAlLAS = cms.Sequence(ALCARECOTkAlLASsiStripDigis+ALCARECOTkAlLASEventFilter+ALCARECOTkAlLAST0Producer)\n+# dummy dummy"},{"sha":"ec3ea92010c2560fdc8dec05d1b8da649d587a39","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlMinBiasHI = copy.deepcopy(OutALCARECOTkAlMinBiasHI_noDrop)\n OutALCARECOTkAlMinBiasHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1c627ee4220e2bdc2a8c1590b9c32a5ac7a80af6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -17,3 +17,4 @@\n #ALCARECOTkAlMinBiasHI.pMin = 3.0 ##GeV\n \n seqALCARECOTkAlMinBiasHI = cms.Sequence(ALCARECOTkAlMinBiasHIHLT+ALCARECOTkAlMinBiasHIDCSFilter+ALCARECOTkAlMinBiasHI)\n+# dummy dummy"},{"sha":"bbe624309fad5e7d0069c975b58e42f91a772daf","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -41,3 +41,4 @@\n \n OutALCARECOTkAlMinBias = OutALCARECOTkAlMinBias_noDrop.clone()\n OutALCARECOTkAlMinBias.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"f12db1ad9d5d5208c8723fe2564d5810a0b13d3a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Skimmed_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -141,3 +141,4 @@\n \n \n \n+# dummy dummy"},{"sha":"23de0a29ee8829cc2cb3cac9b62d69ef93fd016d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -70,3 +70,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMinBias, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"812ecac0085dee52a0d36009b321ca87c721e60f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedHI = OutALCARECOTkAlMuonIsolatedHI_noDrop.clone()\n OutALCARECOTkAlMuonIsolatedHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b1bcdf384d62646da81f4fe38aa40898644516d6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -28,3 +28,4 @@\n +ALCARECOTkAlMuonIsolatedHIDCSFilter\n +ALCARECOTkAlMuonIsolatedHI\n )\n+# dummy dummy"},{"sha":"db2d480f19e16b06a2baadfdf8e6d45fd4f558be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedPA = copy.deepcopy(OutALCARECOTkAlMuonIsolatedPA_noDrop)\n OutALCARECOTkAlMuonIsolatedPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"ad25e41b012b8d51b886d841e629c58bb1523164","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -44,3 +44,4 @@\n seqALCARECOTkAlMuonIsolatedPA = cms.Sequence(ALCARECOTkAlMuonIsolatedPAHLT\n +ALCARECOTkAlMuonIsolatedPADCSFilter\n +ALCARECOTkAlMuonIsolatedPA)\n+# dummy dummy"},{"sha":"64e4be787a63b8d84bba977606a0eeee9229746a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolated = OutALCARECOTkAlMuonIsolated_noDrop.clone()\n OutALCARECOTkAlMuonIsolated.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"150d629df9c4243d8a03ea4640cd17a7db77e7fe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMuonIsolated, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"15faac5d2bf408166454d118ec3d33b7afc165da","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMuHI = OutALCARECOTkAlUpsilonMuMuHI_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"a37326e8e5e180955b0497ede6f5b149284ce7ba","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuHIGoodMuons\n +ALCARECOTkAlUpsilonMuMuHI\n )\n+# dummy dummy"},{"sha":"caa0a6885bbf08aa3c233cf65a80b29e4a5c78e2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlUpsilonMuMuPA = copy.deepcopy(OutALCARECOTkAlUpsilonMuMuPA_noDrop)\n OutALCARECOTkAlUpsilonMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"52398e4ccae91588670d8017e1b455925d57e42b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuPAGoodMuons\n +ALCARECOTkAlUpsilonMuMuPA\n )\n+# dummy dummy"},{"sha":"a0ad5327c3312489af64708dfee132c72c45b4be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMu = OutALCARECOTkAlUpsilonMuMu_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1099c00ffe243c7be34319a5d6e89139052ce70b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -64,3 +64,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlUpsilonMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"3ff6614f26c23998b935ecec43b33cea1982dfc2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -50,3 +50,4 @@\n \n OutALCARECOTkAlV0s = OutALCARECOTkAlV0s_noDrop.clone()\n OutALCARECOTkAlV0s.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1e6869c43e1bada2c14fa7b4b0944b4dfbac38e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -38,3 +38,4 @@\n ##################################################################\n seqALCARECOTkAlK0s = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sKShortEventSelector + ALCARECOTkAlKShortTracks)\n seqALCARECOTkAlLambdas = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sLambdaEventSelector + ALCARECOTkAlLambdaTracks)\n+# dummy dummy"},{"sha":"4984db89d155cc9e42edfeab63704f9b6c2e06cd","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -41,3 +41,4 @@\n OutALCARECOTkAlWMuNu = OutALCARECOTkAlWMuNu_noDrop.clone()\n OutALCARECOTkAlWMuNu.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy"},{"sha":"12d45b9f6946d0cd8f2c3b801f0fb064fadaa4b2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -59,3 +59,4 @@\n ALCARECOTkAlWMuNu.TwoBodyDecaySelector.acoplanarDistance = 1 ##radian\n \n seqALCARECOTkAlWMuNu = cms.Sequence(ALCARECOTkAlWMuNuHLT+ALCARECOTkAlWMuNuDCSFilter+ALCARECOTkAlWMuNuGoodMuons+ALCARECOTkAlWMuNuRelCombIsoMuons+ALCARECOTkAlWMuNu)\n+# dummy dummy"},{"sha":"2e1d642fc7bf7bb735da62936f015b7c959ee265","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMuHI = OutALCARECOTkAlZMuMuHI_noDrop.clone()\n OutALCARECOTkAlZMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b10490d6d7bd2c4412c315a1d13d4b6deb3b9cb9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuHIGoodMuons\n +ALCARECOTkAlZMuMuHI\n )\n+# dummy dummy"},{"sha":"ad3df1e1e69c4ab367457b7483f9880b5f23c525","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlZMuMuPA = copy.deepcopy(OutALCARECOTkAlZMuMuPA_noDrop)\n OutALCARECOTkAlZMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"788c071104caa4f263abcb2a37137aa34cf094e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuPAGoodMuons\n +ALCARECOTkAlZMuMuPA\n )\n+# dummy dummy"},{"sha":"ae380fe2fb275ff268af5b7a244b25b562934ffc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMu = OutALCARECOTkAlZMuMu_noDrop.clone()\n OutALCARECOTkAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"f4410fb589cfa4fd1805f5bb58e6c938f34d2e28","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlZMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"920b3ea769172d92355979895b4c6c15adfd643a","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -55,3 +55,4 @@\n \n ALCAHARVESTSiPixelAli = cms.Sequence(SiPixelAliMilleFileExtractor*\n SiPixelAliPedeAlignmentProducer)\n+# dummy dummy"},{"sha":"ed5ef5ddf63e60c775b9f8fb45d77a2fff73fba3","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHGCombined_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -90,3 +90,4 @@\n SiPixelAliPedeAlignmentProducerHGCombined*\n SiPixelAliDQMModuleHGCombined*\n dqmEnvSiPixelAliHGCombined)\n+# dummy dummy"},{"sha":"78eb11a43a7ea82a94992397608d64942d5bb145","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHG_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -78,3 +78,4 @@\n SiPixelAliPedeAlignmentProducerHG*\n SiPixelAliDQMModuleHG*\n dqmEnvSiPixelAliHG)\n+# dummy dummy"},{"sha":"158b8847e1c548f23cb1b99c85e89edbd5cc3978","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -61,3 +61,4 @@\n SiPixelAliPedeAlignmentProducer*\n SiPixelAliDQMModule*\n dqmEnvSiPixelAli)\n+# dummy dummy"},{"sha":"ba9b7eaf9365feb77dafb85924e3bf161ecc6076","filename":"Alignment/CommonAlignmentProducer/python/AlignmentMuonSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -44,3 +44,4 @@\n minMassPair = cms.double(89.0),\n maxMassPair = cms.double(90.0)\n )\n+# dummy dummy"},{"sha":"8a212b2ed5c0c0c3b8892798e7b36cc1b7073a53","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducerAsAnalyzer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -88,3 +88,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"},{"sha":"4143f9d9ec58863e84f7725d3721fa7fef4a158d","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -91,3 +91,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"},{"sha":"6f57ca13d86fe929af57b4425beaa3e9b1359029","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTrackSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -120,3 +120,4 @@\n )\n \n \n+# dummy dummy"},{"sha":"5cd06205a6bb4174c50304aa4343871572503e1e","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -2,3 +2,4 @@\n \n from Alignment.CommonAlignmentProducer.alignmentTrackFromVertexCompositeCandidateSelectorModule_cfi import alignmentTrackFromVertexCompositeCandidateSelectorModule\n AlignmentTracksFromVertexCompositeCandidateSelector = alignmentTrackFromVertexCompositeCandidateSelectorModule.clone()\n+# dummy dummy"},{"sha":"f0b6960be9fd73052c1a73c32edf45e4c6d816ef","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -5,3 +5,4 @@\n vertices = cms.InputTag(\"offlinePrimaryVertices\"),\n vertexIndex = cms.uint32(0),\n filter = cms.bool(False))\n+# dummy dummy"},{"sha":"99f3383f32bac03f478218b5c53966f9ec5f2c26","filename":"Alignment/CommonAlignmentProducer/python/DBConfiguration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -33,3 +33,4 @@\n )\n \n \n+# dummy dummy"},{"sha":"2d1716bcbd3ac0cab354a05a40a454cb35643c41","filename":"Alignment/CommonAlignmentProducer/python/FakeAlignmentSource_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -9,3 +9,4 @@\n produceTrackerSurfaceDeformation = cms.bool(True),\n appendToDataLabel = cms.string('')\n )\n+# dummy dummy"},{"sha":"7efc3c8be0a1220d356495ddbb11d5ab24921f62","filename":"Alignment/CommonAlignmentProducer/python/customizeLSNumberFilterForRelVals.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@ def lowerHitsPerStructure(process):\n 'skipemptycons'\n )\n return process\n+# dummy dummy"},{"sha":"38a9225bda00da0f45d5ca8ab21ae7afadf0e38a","filename":"Alignment/CommonAlignmentProducer/python/fakeAlignmentProducer_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -5,3 +5,4 @@\n )\n \n \n+# dummy dummy"}] + diff --git a/tests/ReplayData/TestProcessPr.test_many_commits_ok.txt b/tests/ReplayData/TestProcessPr.test_many_commits_ok.txt new file mode 100644 index 000000000000..6d665704b364 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_many_commits_ok.txt @@ -0,0 +1,1782 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:37 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"f2bbbca8019521c2d0369f3e454a99d6c1ee847fbb150ec37522cac036cd44d2"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4677'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '323'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A1EA:1294DB:9959EA7:9A1A93B:661E7099')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:47:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207812,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T12:25:01Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":893,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":893,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T12:25:01Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":893,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":893,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:37 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"defb4ff987289622a9a1886780801d59feaa587507618090742e25e26f01aa4f"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:59:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4676'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '324'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A1FA:3A2467:99B5157:9A75C42:661E7099')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","id":2245729026,"node_id":"PR_kwDOF83__M5syVdt","number":18,"title":"Commit flood","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-16T10:59:01Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2024-04-16T10:47:28Z","updated_at":"2024-04-16T10:59:45Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:37 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4676'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '324'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A208:38D48F:7F19D59:7FC1A1C:661E7099')] +{"resources":{"core":{"limit":5000,"used":324,"remaining":4676,"reset":1713273973},"search":{"limit":30,"used":0,"remaining":30,"reset":1713270997},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713274537},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713274537},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713270997},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713274537},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713274537},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713274537},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713270997},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713274537},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713270997}},"rate":{"limit":5000,"used":324,"remaining":4676,"reset":1713273973}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:38 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"387d5093d19346e8afb3332f4aa0f177a5a6debf6848f4b26a1e3b8747bb0594"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:59:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4675'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '325'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A218:117B54:7DF95C5:7EA102D:661E7099')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18","id":1825134445,"node_id":"PR_kwDOF83__M5syVdt","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","number":18,"state":"open","locked":false,"title":"Commit flood","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-04-16T10:47:28Z","updated_at":"2024-04-16T10:59:45Z","closed_at":null,"merged_at":null,"merge_commit_sha":"ad6b604c0efe525f5151558f16145702288e86df","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-16T10:59:01Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/fd99bd146e87a00eb90eccef12f487ecc8f4c496","head":{"label":"iarspider-cmssw:commit-flood","ref":"commit-flood","sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:47:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207812,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:47:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207812,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/18"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/fd99bd146e87a00eb90eccef12f487ecc8f4c496"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":2,"review_comments":0,"maintainer_can_modify":false,"commits":151,"additions":151,"deletions":0,"changed_files":151} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:38 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2f713a4040dbdc2f62e7c62fa3c6d312f32c8e92b17944647e90d4926d306cad"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:59:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="next", ; rel="last"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4674'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '326'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A222:29BB20:7D47656:7DEEC89:661E709A')] +[{"sha":"cfd9e48cab9681ba2d67961b48b5e82f10dda300","filename":"Alignment/APEEstimation/python/AlcaRecoSelection_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -60,3 +60,4 @@\n \n \n \n+# dummy dummy"},{"sha":"47ba2c8d1ad64c6a26cef1eed4777be4db5dd5c5","filename":"Alignment/APEEstimation/python/AlignmentTrackSelector_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -110,3 +110,4 @@\n \n \n \n+# dummy dummy"},{"sha":"47e8b236b0cb387592ec908ca3d3475e3d6abbe8","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -24,3 +24,4 @@\n \n \n \n+# dummy dummy"},{"sha":"909bc01cda8be93058f669684eb1ee49bd8e8323","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -47,3 +47,4 @@\n ApeOutputFile = cms.string(os.environ['CMSSW_BASE'] + '/src/Alignment/APEEstimation/hists/apeOutput.txt'),\n \n )\n+# dummy dummy"},{"sha":"5522b0dfa2ac9f6208791f0937b6687dcd4ecdea","filename":"Alignment/APEEstimation/python/ApeEstimator_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n \n \n \n+# dummy dummy"},{"sha":"06fd47eb14b15dc3b226b529ad54bebb3b43bc75","filename":"Alignment/APEEstimation/python/ApeEstimator_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -98,3 +98,4 @@\n #Define intervals in residual error for calculation of APE (one estimation per interval), (for APE calculation)\n residualErrorBinning = cms.vdouble(),\n )\n+# dummy dummy"},{"sha":"926a2fd7728d4b7a7784bd6b4bfcb8855e57f66f","filename":"Alignment/APEEstimation/python/PrivateSkim_EventContent_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -43,3 +43,4 @@\n \t#'drop *_MEtoEDMConverter_*_*',\n ),\n )\n+# dummy dummy"},{"sha":"f39d7c3c0cce2c48e772aab2f7d959616e24bc6a","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_Phase0_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -95,3 +95,4 @@\n \n \n \n+# dummy dummy"},{"sha":"25e7c20f7ca2f28260a83780c19acac9cc19768f","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -110,3 +110,4 @@\n \n \n \n+# dummy dummy"},{"sha":"4b1fb0f9fdf497b5ff86a22e8e73b961f4c25e71","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_Phase0_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -124,3 +124,4 @@\n \n \n \n+# dummy dummy"},{"sha":"626849ade48b6cb9318c504d36f4a90db0614c6a","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -154,3 +154,4 @@\n \n \n \n+# dummy dummy"},{"sha":"02f5b3ac9c70762afb5da8ed2d29869337f2bc63","filename":"Alignment/APEEstimation/python/SectorBuilder_Tec_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -421,3 +421,4 @@\n \n \n \n+# dummy dummy"},{"sha":"86f7703d587d59e570b64fc0c2f6aa8787c1e4b1","filename":"Alignment/APEEstimation/python/SectorBuilder_Tib_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -212,3 +212,4 @@\n \n \n \n+# dummy dummy"},{"sha":"2292b97aa2f737afbdec97b09e463726980346fa","filename":"Alignment/APEEstimation/python/SectorBuilder_Tid_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -253,3 +253,4 @@\n \n \n \n+# dummy dummy"},{"sha":"8a508a1c472165f5355c0ef004fd427908a51375","filename":"Alignment/APEEstimation/python/SectorBuilder_Tob_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -253,3 +253,4 @@\n \n \n \n+# dummy dummy"},{"sha":"a8c4a4af5fc6768816ee13b3dfc36c61daf25363","filename":"Alignment/APEEstimation/python/SectorBuilder_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -132,3 +132,4 @@\n \n \n \n+# dummy dummy"},{"sha":"c2e852bd0671ee7480ceffdf9817db7b8f7713ab","filename":"Alignment/APEEstimation/python/SectorBuilder_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n posY = cms.vdouble(), #(-120.,120.) must contain Intervals\n posZ = cms.vdouble() #(-280.,280.) must contain Intervals\n )\n+# dummy dummy"},{"sha":"ede8c99a7e694ac539439cd391fb259d06b77e5d","filename":"Alignment/APEEstimation/python/TrackRefitter_38T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -42,3 +42,4 @@\n \n \n \n+# dummy dummy"},{"sha":"82025f076ada050be8e40a327dfe374b6844d3dd","filename":"Alignment/APEEstimation/python/TriggerSelection_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -26,3 +26,4 @@\n \n \n \n+# dummy dummy"},{"sha":"994cb46514551b9bd545e36d5cfa0900f30dceb0","filename":"Alignment/APEEstimation/python/conditions/init.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -1 +1,2 @@\n #Automatically created by SCRAM\n+# dummy dummy"},{"sha":"19e21e35e8907ecd1c2e9d0a8f2218db681b2726","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -31,3 +31,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"a27fa224cbaaf0eff8d60872deb62cd42b5c3e99","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -30,3 +30,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"5324a43787666746b8add627370e9e8a97584f21","filename":"Alignment/APEEstimation/python/samples/Data_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -26,3 +26,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"5ccb672a5ee21315c404eb68c4a434e2ee7b8887","filename":"Alignment/APEEstimation/python/samples/MC_UL16_ttbar_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -57,3 +57,4 @@\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0920227F-8FE9-C641-81B1-E4E33CBC50DE.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0837296D-D6B4-4244-8BB8-4E01D53DA5EF.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/060F5791-2313-2241-A6DE-729007C98C57.root'])\n+# dummy dummy"},{"sha":"4cfc76e15c4e05d8f42cb36bb3be265f39f630c0","filename":"Alignment/APEEstimation/python/samples/MC_UnitTest_TkAlMuonIsolated_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -18,3 +18,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"e9ffad09f2e2ec97fbb44650bed8e6525e4e1ab7","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n ] )\n \n \n+# dummy dummy"},{"sha":"434ce5f09947dcaaeca656bdb33f300ed46117e0","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -63,3 +63,4 @@\n ] )\n \n \n+# dummy dummy"},{"sha":"2412450215024294c8b6f0a6ceda06039ed627a0","filename":"Alignment/APEEstimation/test/SkimProducer/skimProducer_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -205,3 +205,4 @@\n ## Outpath\n ##\n process.outpath = cms.EndPath(process.out)\n+# dummy dummy"},{"sha":"d5a54e0e54bcae306f74fec4398d6c830fbe5b60","filename":"Alignment/APEEstimation/test/SkimProducer/skimTemplates.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -88,3 +88,4 @@\n endif\n \"\"\"\n \n+# dummy dummy"},{"sha":"dc17d6c0d3ae82056db2693f9118a88b5f48feb2","filename":"Alignment/APEEstimation/test/SkimProducer/startSkim.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -186,3 +186,4 @@ def main(argv):\n pass # The keyboard interrupt will be forwarded to the subprocesses anyway, stopping them without terminating them immediately\n if __name__ == \"__main__\":\n main(sys.argv)\n+# dummy dummy"},{"sha":"12559d4c8e039007fcc4bd28cfc1bc5da91ae659","filename":"Alignment/APEEstimation/test/apeTreeCreateDefault_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -133,3 +133,4 @@\n \n \n \n+# dummy dummy"},{"sha":"381c957d95d467117577295a9053ee78b9978320","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -611,3 +611,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"d5a6f54fcc3e8d9b2397c4e5f896685474c174ac","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitterTemplates.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -74,3 +74,4 @@ def applyConditions(process):\n )\n process.prefer_my{record}Conditions = cms.ESPrefer(\"PoolDBESSource\", \"my{record}Conditions\")\n \"\"\"\n+# dummy dummy"},{"sha":"967898252d1276a2548c4bab1ba1b3b6456ef235","filename":"Alignment/APEEstimation/test/autoSubmitter/helpers.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -199,3 +199,4 @@ def loadConditions(dictionary):\n goodConditions = False\n print(\"'{}' is not a valid record name.\".format(condition[\"record\"]))\n return conditions, goodConditions\n+# dummy dummy"},{"sha":"67bdfaa3cca0c7462f3062cc865e71fe29786401","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimatorSummary_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -142,3 +142,4 @@\n \n \n \n+# dummy dummy"},{"sha":"af5ed6947eadeaa60f840e76631920be8fdd6eac","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimator_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -267,3 +267,4 @@\n \n \n \n+# dummy dummy"},{"sha":"c65139a711a28dab94ac988b4e0e53a8c57d7ef1","filename":"Alignment/APEEstimation/test/cfgTemplate/apeLocalSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -112,3 +112,4 @@\n \n \n \n+# dummy dummy"},{"sha":"8f4c50febf4cf0e58c4790d7f779e01306b52092","filename":"Alignment/APEEstimation/test/createTrackerAlignmentErrorExtendedRcd_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -168,3 +168,4 @@\n )\n \n # We do not even need a path - producer is called anyway...\n+# dummy dummy"},{"sha":"63ce808f98d3fe4f13fcc057298fa0a9acff277e","filename":"Alignment/APEEstimation/test/plottingTools/drawIterations.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -15,3 +15,4 @@\n plot.setTitle(\"Title\")\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"},{"sha":"616425941405cfb232e41a44f2f9767763b85cb2","filename":"Alignment/APEEstimation/test/plottingTools/drawResults.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -16,3 +16,4 @@\n plot.addInputFile(\"label\", base+\"/hists/workingArea/iter14/allData_iterationApe.root\", color = ROOT.kGray+2)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"},{"sha":"03f041cd1901b5042a2b285f2b2dee6ab9d66139","filename":"Alignment/APEEstimation/test/plottingTools/drawTrend.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -35,3 +35,4 @@\n plot.log = False\n \n plot.draw()\n+# dummy dummy"},{"sha":"01be60bba3796cbed5ada4ef8b014c4d69c58656","filename":"Alignment/APEEstimation/test/plottingTools/drawValidation.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n plot.addInputFile(\"Design\", \"{base}/hists/Design/baseline/allData.root\".format(base=base),color=ROOT.kRed,marker=0)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"},{"sha":"69b618cf13fce1aa2e356920f8c7426a171aed2b","filename":"Alignment/APEEstimation/test/plottingTools/granularity.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -44,3 +44,4 @@ def __init__(self):\n # BpixLayer1Out, BpixLayer3In, FpixMinusLayer1, TibLayer1RphiOut, TibLayer4In, TobLayer1StereoOut, TobLayer5Out, TecPlusRing7\n # This can be changed in apeEstimator_cfg or in SectorBuilder_cff\n # For these sectors, additional hit validation plots are created\n+# dummy dummy"},{"sha":"e2903cd9ef95e0b42c719a5415fd269af0058f4d","filename":"Alignment/APEEstimation/test/plottingTools/iterationsPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -127,3 +127,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"fc88770ad71ac034a876d729d9050a1e89313d8d","filename":"Alignment/APEEstimation/test/plottingTools/resultPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -237,3 +237,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"b7034340bc87e32e4dc513f59642bc22facd29dd","filename":"Alignment/APEEstimation/test/plottingTools/setTDRStyle.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -168,3 +168,4 @@ def setTDRStyle():\n \n tdrStyle.cd()\n return tdrStyle\n+# dummy dummy"},{"sha":"72f8ed57763a191fc2fe15eba50e726e950ed6a5","filename":"Alignment/APEEstimation/test/plottingTools/systematicErrors.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -114,3 +114,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"10286125398107dd8babc05003fc8084dfd1a239","filename":"Alignment/APEEstimation/test/plottingTools/trendPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -309,3 +309,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"af01a36e11c9e40574697002363af03e8af08085","filename":"Alignment/APEEstimation/test/plottingTools/validationPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -293,3 +293,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"4ffb3b11c42ef4aa65462742c8965c3c1263dc65","filename":"Alignment/APEEstimation/test/trackerTreeGenerator_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -88,3 +88,4 @@\n \n \n \n+# dummy dummy"},{"sha":"06b273510f174af8c8399e2871c3f5aeffdf59ae","filename":"Alignment/CocoaApplication/test/cocoaAnalyzer_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -82,3 +82,4 @@\n \n process.p = cms.Path(process.cocoa)\n \n+# dummy dummy"},{"sha":"d02bdb16a75821a5c87b3a1d032edbe2ab05f63a","filename":"Alignment/CommonAlignmentAlgorithm/python/AlignmentParameterStore_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -12,3 +12,4 @@\n )\n )\n \n+# dummy dummy"},{"sha":"747859a31cb854ed1664770622d7e05c22ff09db","filename":"Alignment/CommonAlignmentAlgorithm/python/ApeSettingAlgorithm_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -31,3 +31,4 @@\n # Also note:\n # process.AlignmentProducer.saveApeToDB -- to save as an sqlite file\n # and associated entries in _cfg.py\n+# dummy dummy"},{"sha":"871c1f4bc1e38c61f1385a1d43c0688cd82c17e3","filename":"Alignment/CommonAlignmentAlgorithm/python/SiPixelLorentzAngleCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n # one directly uses the unlabelled version, i.e. \"\"\n lorentzAngleLabel = cms.string(\"fromAlignment\"),\n )\n+# dummy dummy"},{"sha":"6ce31625b1e72bb606171f611d48d441c791bc19","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripBackplaneCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -17,3 +17,4 @@\n # Configuration of the granularity for the backplane correction determination\n BackplaneModuleGroups = cms.PSet(),\n )\n+# dummy dummy"},{"sha":"5291a55b2b45ecae62a32082b0b94c17a960056d","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripLorentzAngleCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n readoutMode = 'deconvolution',\n recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_deco'),\n )\n+# dummy dummy"},{"sha":"b9af2f1101f5e9a012f2ed43fb4f26b72fbc1ee5","filename":"Alignment/CommonAlignmentAlgorithm/test/apeLocalSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -104,3 +104,4 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy"},{"sha":"2391a950ac20ba1921b287c39cd7214b0e3fec5c","filename":"Alignment/CommonAlignmentAlgorithm/test/apeSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -94,3 +94,4 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy"},{"sha":"83cddfa719453e6b918bab73da5403fd064e077e","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonResidualsDefaults_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -11,3 +11,4 @@\n ystdev_bins = cms.uint32(300), ystdev_low = cms.double(0.0), ystdev_high = cms.double(30.0),\n yerronmean_bins = cms.uint32(300), yerronmean_low = cms.double(0.0), yerronmean_high = cms.double(1.0),\n )\n+# dummy dummy"},{"sha":"662ab89add756d599832c641b7ab26f1c719d26c","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonSystemMap1D_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -20,3 +20,4 @@\n useStubPosition = cms.bool(False),\n createNtuple = cms.bool(False)\n )\n+# dummy dummy"},{"sha":"f483b5a4ccdeab05230e1a9037c0cfe396ca5b5b","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonVsCurvature_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -18,3 +18,4 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy"},{"sha":"ff6668d4e2859434466fb87c4002d24343cfd4e9","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorSegmentDifferences_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -16,3 +16,4 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy"},{"sha":"c0be7655db2b7bbeb90b7ed2acef3ce88ffb4e01","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentStats_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -1,2 +1,3 @@\n import FWCore.ParameterSet.Config as cms\n from Alignment.CommonAlignmentMonitor.AlignmentStats_cfi import *\n+# dummy dummy"},{"sha":"91baa52f43f6e950c0e77c5e7fd9acc5f2116204","filename":"Alignment/CommonAlignmentMonitor/test/testAlignmentStats_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -190,3 +190,4 @@\n process.NewStatsCTF)\n \n process.p2 = cms.Path(process.seqALCARECOTkAlMinBiasSkimmed)\n+# dummy dummy"},{"sha":"895c7abc7def8e403bcaf0cf1e7b5fb99a8fe786","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOMuAlBeamHaloOverlaps = copy.deepcopy(OutALCARECOMuAlBeamHaloOverlaps_noDrop)\n OutALCARECOMuAlBeamHaloOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"0fe5fe669e6beab5e90ced161e923c8ff88e8e32","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -35,3 +35,4 @@\n )\n \n seqALCARECOMuAlBeamHaloOverlaps = cms.Sequence(ALCARECOMuAlBeamHaloOverlapsHLT + ALCARECOMuAlBeamHaloOverlapsDCSFilter + ALCARECOMuAlBeamHaloOverlapsEnergyCut * ALCARECOMuAlBeamHaloOverlaps)\n+# dummy dummy"},{"sha":"ea659b58a2e96de718292249011e8ecd54c6fd8d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOMuAlBeamHalo = copy.deepcopy(OutALCARECOMuAlBeamHalo_noDrop)\n OutALCARECOMuAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"ae076f9d342c0c1465126e03200f9ef1b9fdd675","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -29,3 +29,4 @@\n \n seqALCARECOMuAlBeamHalo = cms.Sequence(ALCARECOMuAlBeamHaloHLT + ALCARECOMuAlBeamHaloDCSFilter + ALCARECOMuAlBeamHalo)\n \n+# dummy dummy"},{"sha":"877ec9b785eeffc02df2f7aaf517fefd4f72284b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n import copy\n OutALCARECOMuAlCalIsolatedMu = copy.deepcopy(OutALCARECOMuAlCalIsolatedMu_noDrop)\n OutALCARECOMuAlCalIsolatedMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"2f2fa7bcdf5dec5ccb84bfba0d1037bbbb3afdfe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -48,3 +48,4 @@\n seqALCARECOMuAlCalIsolatedMu = cms.Sequence(ALCARECOMuAlCalIsolatedMuHLT + ALCARECOMuAlCalIsolatedDCSFilter + ALCARECOMuAlCalIsolatedMu)\n \n seqALCARECOMuAlCalIsolatedMuGeneralTracks = cms.Sequence(ALCARECOMuAlCalIsolatedMuGeneralTracks)\n+# dummy dummy"},{"sha":"e692f91dab0a417c82f71e8668fe62fdaecec892","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n import copy\n OutALCARECOMuAlGlobalCosmicsInCollisions = copy.deepcopy(OutALCARECOMuAlGlobalCosmicsInCollisions_noDrop)\n OutALCARECOMuAlGlobalCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"0f482289c448cb880d9e98cf4b34ff3ae220e2e4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -33,3 +33,4 @@\n )\n \n seqALCARECOMuAlGlobalCosmicsInCollisions = cms.Sequence(ALCARECOMuAlGlobalCosmicsInCollisionsHLT + ALCARECOMuAlGlobalCosmicsInCollisionsDCSFilter + ALCARECOMuAlGlobalCosmicsInCollisions)\n+# dummy dummy"},{"sha":"29d1edc9fbd44d32b3a80481d7574c8b9e9b75f4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -35,3 +35,4 @@\n import copy\n OutALCARECOMuAlGlobalCosmics = copy.deepcopy(OutALCARECOMuAlGlobalCosmics_noDrop)\n OutALCARECOMuAlGlobalCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"86477423de63681eba81e21d86802ec1d7648449","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n seqALCARECOMuAlGlobalCosmicsCombinatorialTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCombinatorialTF)\n seqALCARECOMuAlGlobalCosmicsCosmicTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCosmicTF)\n seqALCARECOMuAlGlobalCosmicsRegionalTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsRegionalTF)\n+# dummy dummy"},{"sha":"3cd238715472e4d745891449f067165210c271cc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -29,3 +29,4 @@\n import copy\n OutALCARECOMuAlOverlaps = copy.deepcopy(OutALCARECOMuAlOverlaps_noDrop)\n OutALCARECOMuAlOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"659d1cc21ac5e925f49b01e8fccd4949ea55d329","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -51,3 +51,4 @@\n seqALCARECOMuAlOverlaps = cms.Sequence(ALCARECOMuAlOverlapsHLT+ALCARECOMuAlOverlapsDCSFilter+ALCARECOMuAlOverlapsMuonSelector*ALCARECOMuAlOverlaps)\n \n seqALCARECOMuAlOverlapsGeneralTracks = cms.Sequence(ALCARECOMuAlOverlapsGeneralTracks)\n+# dummy dummy"},{"sha":"844c2022bf741a2e3b0ac4b4e95e61306ccc1394","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -27,3 +27,4 @@\n import copy\n OutALCARECOMuAlStandAloneCosmics = copy.deepcopy(OutALCARECOMuAlStandAloneCosmics_noDrop)\n OutALCARECOMuAlStandAloneCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"379d125af11a4575a462030a5f4ddf17061cd847","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n \n seqALCARECOMuAlStandAloneCosmics = cms.Sequence(ALCARECOMuAlStandAloneCosmicsHLT + ALCARECOMuAlStandAloneCosmicsDCSFilter + ALCARECOMuAlStandAloneCosmics)\n \n+# dummy dummy"},{"sha":"42f263db7980f4da0a4767b7a445df78923c8bb9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -29,3 +29,4 @@\n import copy\n OutALCARECOMuAlZMuMu = copy.deepcopy(OutALCARECOMuAlZMuMu_noDrop)\n OutALCARECOMuAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b549c72e3cd5046c15f45b3334e4d4410592a49e","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -49,3 +49,4 @@\n seqALCARECOMuAlZMuMu = cms.Sequence(ALCARECOMuAlZMuMuHLT+ALCARECOMuAlZMuMuDCSFilter+ALCARECOMuAlZMuMu)\n \n seqALCARECOMuAlZMuMuGeneralTracks = cms.Sequence(ALCARECOMuAlZMuMuGeneralTracks)\n+# dummy dummy"},{"sha":"e69ad471f785c84484582cf8dbf1dc5372eb1f09","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -161,3 +161,4 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy"},{"sha":"30ac7ba2338abca4b5c7e3c4cd7d8fba4957b19f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHGComb=OutALCARECOPromptCalibProdSiPixelAliHGComb_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHGComb.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"219601e77d98b73e2cf378682f0d2b0976114800","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -133,3 +133,4 @@\n SiPixelAliTrackRefitterHGDimuon1*\n SiPixelAliMilleAlignmentProducerHGDimuon*\n SiPixelAliMillePedeFileConverterHGDimuon)\n+# dummy dummy"},{"sha":"d35a544bf35310c31a7573858641680a2fdf7a73","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHG=OutALCARECOPromptCalibProdSiPixelAliHG_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHG.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"cb2ae4c6030f1708233eb6e1a66242c5c48640cf","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -74,3 +74,4 @@\n SiPixelAliTrackRefitterHG1*\n SiPixelAliMilleAlignmentProducerHG*\n SiPixelAliMillePedeFileConverterHG)\n+# dummy dummy"},{"sha":"45a673727453c92ebb43e03aaeb3b56aa8f8c805","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAli=OutALCARECOPromptCalibProdSiPixelAli_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAli.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"75d68863cb6dcca952393df752b961fa5780baea","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -159,3 +159,4 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy"},{"sha":"713486889d33b7ddcf3ebd7da763822fe6ff6d79","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlBeamHalo = copy.deepcopy(OutALCARECOTkAlBeamHalo_noDrop)\n OutALCARECOTkAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"68cb6596cfbb294ac8ec01f3e8716ff98cdfe8c3","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n ALCARECOTkAlBeamHalo.TwoBodyDecaySelector.applyAcoplanarityFilter = False\n \n seqALCARECOTkAlBeamHalo = cms.Sequence(ALCARECOTkAlBeamHaloDCSFilter+ALCARECOTkAlBeamHalo)\n+# dummy dummy"},{"sha":"ed40983bf8eeae5cd9bb84737409cdd08941df19","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOTkAlCosmics0THLT = copy.deepcopy(OutALCARECOTkAlCosmics0THLT_noDrop)\n OutALCARECOTkAlCosmics0THLT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"bef9ce2c93843d77ba1f77fa78163c3c9695df91","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n seqALCARECOTkAlCosmicsCTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCTF0T)\n seqALCARECOTkAlCosmicsCosmicTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsRegional0T)\n+# dummy dummy"},{"sha":"bbcaed50c8e8ea47b328a8423964da3708c3d685","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -31,3 +31,4 @@\n import copy\n OutALCARECOTkAlCosmics0T = copy.deepcopy(OutALCARECOTkAlCosmics0T_noDrop)\n OutALCARECOTkAlCosmics0T.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"72c2b8173d9c28d372c4761d9029b006924f5bcc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Skimmed_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -142,3 +142,4 @@\n #seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF+NewStatsCTF)\n seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF)\n \n+# dummy dummy"},{"sha":"91dba01036de233a38e8407a373c9668794c2e16","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -57,3 +57,4 @@\n seqALCARECOTkAlCosmicsCosmicTF0T = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0T = cms.Sequence(ALCARECOTkAlCosmicsRegional0T)\n seqALCARECOTkAlCosmicsDuringCollisions0T = cms.Sequence(ALCARECOTkAlCosmicsDuringCollisions0T)\n+# dummy dummy"},{"sha":"686ae30481e0950370e0dd558fd2a4b1642dab50","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n OutALCARECOTkAlCosmicsHLT = copy.deepcopy(OutALCARECOTkAlCosmicsHLT_noDrop)\n OutALCARECOTkAlCosmicsHLT.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy"},{"sha":"e71cfbc60a0df9a70493b779d71bf7c445857916","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n seqALCARECOTkAlCosmicsCosmicTFHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegionalHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsRegional)\n \n+# dummy dummy"},{"sha":"000b9675c5188d949a19dbcbea73b04ca25238d0","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -25,3 +25,4 @@\n import copy\n OutALCARECOTkAlCosmicsInCollisions = copy.deepcopy(OutALCARECOTkAlCosmicsInCollisions_noDrop)\n OutALCARECOTkAlCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"33f3a6fd4ab9831581ca61152d7c3b2f7f8c91fc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -53,3 +53,4 @@\n \n #________________________________Sequences____________________________________\n seqALCARECOTkAlCosmicsInCollisions = cms.Sequence(cosmicDCTracksSeq*ALCARECOTkAlCosmicsInCollisionsHLT+ALCARECOTkAlCosmicsInCollisionsDCSFilter+ALCARECOTkAlCosmicsInCollisions)\n+# dummy dummy"},{"sha":"1fa4661e7963ec6e940daa5a90b7d44ee06ff9ec","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -28,3 +28,4 @@\n import copy\n OutALCARECOTkAlCosmics = copy.deepcopy(OutALCARECOTkAlCosmics_noDrop)\n OutALCARECOTkAlCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"091fbee592d0a09c0d0e3278a1f09a8fb7e398b9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -56,3 +56,4 @@\n seqALCARECOTkAlCosmicsCTF = cms.Sequence(ALCARECOTkAlCosmicsCTF)\n seqALCARECOTkAlCosmicsCosmicTF = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegional = cms.Sequence(ALCARECOTkAlCosmicsRegional)\n+# dummy dummy"}] + +https +GET +api.github.com +None +/repositories/399376380/pulls/18/files?per_page=100&page=2 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:38 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7b34eed8939bf6664aee7cd8db9363f9cce5b02c7c1b2a82633d9911fad11d2d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:59:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="prev", ; rel="first"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4673'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '327'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A232:14E79:7B049B0:7BAD909:661E709A')] +[{"sha":"04e2d813ac585e1b7673cfbb8fc1923dedafa59f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -36,3 +36,4 @@\n \n OutALCARECOTkAlDiMuonAndVertex = OutALCARECOTkAlDiMuonAndVertex_noDrop.clone()\n OutALCARECOTkAlDiMuonAndVertex.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"95b1f254dffb1313d929032538d77052b4161080","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -34,3 +34,4 @@\n eventSetupPathsKey='TkAlZMuMuHI')\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlDiMuon, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"40c7addf56393c1a7bde9fc55e48ae9bb434cfc4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -42,3 +42,4 @@\n \n OutALCARECOTkAlJetHT = OutALCARECOTkAlJetHT_noDrop.clone()\n OutALCARECOTkAlJetHT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"560bf98333a3142d57a6f197637b08d36d2408e1","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -47,3 +47,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJetHT, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"740618cab38b590946602344d8f81a4b844ce12b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMuHI = OutALCARECOTkAlJpsiMuMuHI_noDrop.clone()\n OutALCARECOTkAlJpsiMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"bf859b1017bc91f4fa4cc69f0a3f462e40db7adc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n +ALCARECOTkAlJpsiMuMuHIGoodMuons\n +ALCARECOTkAlJpsiMuMuHI\n )\n+# dummy dummy"},{"sha":"3a74b9aea426eaf71bfb189a1ef031ca7a19ed68","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMu = OutALCARECOTkAlJpsiMuMu_noDrop.clone()\n OutALCARECOTkAlJpsiMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"16c9d0587c7f1ca36f19494751bc5fd61414fe0c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -60,3 +60,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJpsiMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"ca5d3981af1d54cccfa4c91f6b18a723f8c2335c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -13,3 +13,4 @@\n import copy\n OutALCARECOTkAlLAS = copy.deepcopy(OutALCARECOTkAlLAS_noDrop)\n OutALCARECOTkAlLAS.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"37ad0535fa3f082ef3085a7cba35cc3a101a3395","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -23,3 +23,4 @@\n )\n \n seqALCARECOTkAlLAS = cms.Sequence(ALCARECOTkAlLASsiStripDigis+ALCARECOTkAlLASEventFilter+ALCARECOTkAlLAST0Producer)\n+# dummy dummy"},{"sha":"ec3ea92010c2560fdc8dec05d1b8da649d587a39","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlMinBiasHI = copy.deepcopy(OutALCARECOTkAlMinBiasHI_noDrop)\n OutALCARECOTkAlMinBiasHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1c627ee4220e2bdc2a8c1590b9c32a5ac7a80af6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -17,3 +17,4 @@\n #ALCARECOTkAlMinBiasHI.pMin = 3.0 ##GeV\n \n seqALCARECOTkAlMinBiasHI = cms.Sequence(ALCARECOTkAlMinBiasHIHLT+ALCARECOTkAlMinBiasHIDCSFilter+ALCARECOTkAlMinBiasHI)\n+# dummy dummy"},{"sha":"bbe624309fad5e7d0069c975b58e42f91a772daf","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -41,3 +41,4 @@\n \n OutALCARECOTkAlMinBias = OutALCARECOTkAlMinBias_noDrop.clone()\n OutALCARECOTkAlMinBias.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"f12db1ad9d5d5208c8723fe2564d5810a0b13d3a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Skimmed_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -141,3 +141,4 @@\n \n \n \n+# dummy dummy"},{"sha":"23de0a29ee8829cc2cb3cac9b62d69ef93fd016d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -70,3 +70,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMinBias, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"812ecac0085dee52a0d36009b321ca87c721e60f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedHI = OutALCARECOTkAlMuonIsolatedHI_noDrop.clone()\n OutALCARECOTkAlMuonIsolatedHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b1bcdf384d62646da81f4fe38aa40898644516d6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -28,3 +28,4 @@\n +ALCARECOTkAlMuonIsolatedHIDCSFilter\n +ALCARECOTkAlMuonIsolatedHI\n )\n+# dummy dummy"},{"sha":"db2d480f19e16b06a2baadfdf8e6d45fd4f558be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedPA = copy.deepcopy(OutALCARECOTkAlMuonIsolatedPA_noDrop)\n OutALCARECOTkAlMuonIsolatedPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"ad25e41b012b8d51b886d841e629c58bb1523164","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -44,3 +44,4 @@\n seqALCARECOTkAlMuonIsolatedPA = cms.Sequence(ALCARECOTkAlMuonIsolatedPAHLT\n +ALCARECOTkAlMuonIsolatedPADCSFilter\n +ALCARECOTkAlMuonIsolatedPA)\n+# dummy dummy"},{"sha":"64e4be787a63b8d84bba977606a0eeee9229746a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolated = OutALCARECOTkAlMuonIsolated_noDrop.clone()\n OutALCARECOTkAlMuonIsolated.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"150d629df9c4243d8a03ea4640cd17a7db77e7fe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMuonIsolated, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"15faac5d2bf408166454d118ec3d33b7afc165da","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMuHI = OutALCARECOTkAlUpsilonMuMuHI_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"a37326e8e5e180955b0497ede6f5b149284ce7ba","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuHIGoodMuons\n +ALCARECOTkAlUpsilonMuMuHI\n )\n+# dummy dummy"},{"sha":"caa0a6885bbf08aa3c233cf65a80b29e4a5c78e2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlUpsilonMuMuPA = copy.deepcopy(OutALCARECOTkAlUpsilonMuMuPA_noDrop)\n OutALCARECOTkAlUpsilonMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"52398e4ccae91588670d8017e1b455925d57e42b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuPAGoodMuons\n +ALCARECOTkAlUpsilonMuMuPA\n )\n+# dummy dummy"},{"sha":"a0ad5327c3312489af64708dfee132c72c45b4be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMu = OutALCARECOTkAlUpsilonMuMu_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1099c00ffe243c7be34319a5d6e89139052ce70b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -64,3 +64,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlUpsilonMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"3ff6614f26c23998b935ecec43b33cea1982dfc2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -50,3 +50,4 @@\n \n OutALCARECOTkAlV0s = OutALCARECOTkAlV0s_noDrop.clone()\n OutALCARECOTkAlV0s.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1e6869c43e1bada2c14fa7b4b0944b4dfbac38e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -38,3 +38,4 @@\n ##################################################################\n seqALCARECOTkAlK0s = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sKShortEventSelector + ALCARECOTkAlKShortTracks)\n seqALCARECOTkAlLambdas = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sLambdaEventSelector + ALCARECOTkAlLambdaTracks)\n+# dummy dummy"},{"sha":"4984db89d155cc9e42edfeab63704f9b6c2e06cd","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -41,3 +41,4 @@\n OutALCARECOTkAlWMuNu = OutALCARECOTkAlWMuNu_noDrop.clone()\n OutALCARECOTkAlWMuNu.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy"},{"sha":"12d45b9f6946d0cd8f2c3b801f0fb064fadaa4b2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -59,3 +59,4 @@\n ALCARECOTkAlWMuNu.TwoBodyDecaySelector.acoplanarDistance = 1 ##radian\n \n seqALCARECOTkAlWMuNu = cms.Sequence(ALCARECOTkAlWMuNuHLT+ALCARECOTkAlWMuNuDCSFilter+ALCARECOTkAlWMuNuGoodMuons+ALCARECOTkAlWMuNuRelCombIsoMuons+ALCARECOTkAlWMuNu)\n+# dummy dummy"},{"sha":"2e1d642fc7bf7bb735da62936f015b7c959ee265","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMuHI = OutALCARECOTkAlZMuMuHI_noDrop.clone()\n OutALCARECOTkAlZMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b10490d6d7bd2c4412c315a1d13d4b6deb3b9cb9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuHIGoodMuons\n +ALCARECOTkAlZMuMuHI\n )\n+# dummy dummy"},{"sha":"ad3df1e1e69c4ab367457b7483f9880b5f23c525","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlZMuMuPA = copy.deepcopy(OutALCARECOTkAlZMuMuPA_noDrop)\n OutALCARECOTkAlZMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"788c071104caa4f263abcb2a37137aa34cf094e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuPAGoodMuons\n +ALCARECOTkAlZMuMuPA\n )\n+# dummy dummy"},{"sha":"ae380fe2fb275ff268af5b7a244b25b562934ffc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMu = OutALCARECOTkAlZMuMu_noDrop.clone()\n OutALCARECOTkAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"f4410fb589cfa4fd1805f5bb58e6c938f34d2e28","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlZMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"920b3ea769172d92355979895b4c6c15adfd643a","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -55,3 +55,4 @@\n \n ALCAHARVESTSiPixelAli = cms.Sequence(SiPixelAliMilleFileExtractor*\n SiPixelAliPedeAlignmentProducer)\n+# dummy dummy"},{"sha":"ed5ef5ddf63e60c775b9f8fb45d77a2fff73fba3","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHGCombined_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -90,3 +90,4 @@\n SiPixelAliPedeAlignmentProducerHGCombined*\n SiPixelAliDQMModuleHGCombined*\n dqmEnvSiPixelAliHGCombined)\n+# dummy dummy"},{"sha":"78eb11a43a7ea82a94992397608d64942d5bb145","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHG_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -78,3 +78,4 @@\n SiPixelAliPedeAlignmentProducerHG*\n SiPixelAliDQMModuleHG*\n dqmEnvSiPixelAliHG)\n+# dummy dummy"},{"sha":"158b8847e1c548f23cb1b99c85e89edbd5cc3978","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -61,3 +61,4 @@\n SiPixelAliPedeAlignmentProducer*\n SiPixelAliDQMModule*\n dqmEnvSiPixelAli)\n+# dummy dummy"},{"sha":"ba9b7eaf9365feb77dafb85924e3bf161ecc6076","filename":"Alignment/CommonAlignmentProducer/python/AlignmentMuonSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -44,3 +44,4 @@\n minMassPair = cms.double(89.0),\n maxMassPair = cms.double(90.0)\n )\n+# dummy dummy"},{"sha":"8a212b2ed5c0c0c3b8892798e7b36cc1b7073a53","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducerAsAnalyzer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -88,3 +88,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"},{"sha":"4143f9d9ec58863e84f7725d3721fa7fef4a158d","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -91,3 +91,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"},{"sha":"6f57ca13d86fe929af57b4425beaa3e9b1359029","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTrackSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -120,3 +120,4 @@\n )\n \n \n+# dummy dummy"},{"sha":"5cd06205a6bb4174c50304aa4343871572503e1e","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -2,3 +2,4 @@\n \n from Alignment.CommonAlignmentProducer.alignmentTrackFromVertexCompositeCandidateSelectorModule_cfi import alignmentTrackFromVertexCompositeCandidateSelectorModule\n AlignmentTracksFromVertexCompositeCandidateSelector = alignmentTrackFromVertexCompositeCandidateSelectorModule.clone()\n+# dummy dummy"},{"sha":"f0b6960be9fd73052c1a73c32edf45e4c6d816ef","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -5,3 +5,4 @@\n vertices = cms.InputTag(\"offlinePrimaryVertices\"),\n vertexIndex = cms.uint32(0),\n filter = cms.bool(False))\n+# dummy dummy"},{"sha":"99f3383f32bac03f478218b5c53966f9ec5f2c26","filename":"Alignment/CommonAlignmentProducer/python/DBConfiguration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -33,3 +33,4 @@\n )\n \n \n+# dummy dummy"},{"sha":"2d1716bcbd3ac0cab354a05a40a454cb35643c41","filename":"Alignment/CommonAlignmentProducer/python/FakeAlignmentSource_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -9,3 +9,4 @@\n produceTrackerSurfaceDeformation = cms.bool(True),\n appendToDataLabel = cms.string('')\n )\n+# dummy dummy"},{"sha":"7efc3c8be0a1220d356495ddbb11d5ab24921f62","filename":"Alignment/CommonAlignmentProducer/python/customizeLSNumberFilterForRelVals.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@ def lowerHitsPerStructure(process):\n 'skipemptycons'\n )\n return process\n+# dummy dummy"},{"sha":"38a9225bda00da0f45d5ca8ab21ae7afadf0e38a","filename":"Alignment/CommonAlignmentProducer/python/fakeAlignmentProducer_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -5,3 +5,4 @@\n )\n \n \n+# dummy dummy"}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:47 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c12c1f5ff515f29d04661e5aca54969941d7f19e36868d154b354ae6af427b42"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:59:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="next", ; rel="last"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4672'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '328'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A216:127A77:82C4E50:836C851:661E70A3')] +[{"sha":"6955d8ed3dc748e23c565b2978083036918468f6","node_id":"C_kwDOF83__NoAKDY5NTVkOGVkM2RjNzQ4ZTIzYzU2NWIyOTc4MDgzMDM2OTE4NDY4ZjY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"5e054c4761f3d6f5b7a20fbd107796ffaf7aa773","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5e054c4761f3d6f5b7a20fbd107796ffaf7aa773"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6955d8ed3dc748e23c565b2978083036918468f6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6955d8ed3dc748e23c565b2978083036918468f6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"247c0caac63c4155f2a10acc26b59d7547ff6f21","node_id":"C_kwDOF83__NoAKDI0N2MwY2FhYzYzYzQxNTVmMmExMGFjYzI2YjU5ZDc1NDdmZjZmMjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"5ee2fed7809c2c4a64b2a9cfb6d66a19763783df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5ee2fed7809c2c4a64b2a9cfb6d66a19763783df"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/247c0caac63c4155f2a10acc26b59d7547ff6f21","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6955d8ed3dc748e23c565b2978083036918468f6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6955d8ed3dc748e23c565b2978083036918468f6"}]},{"sha":"e51cf1bf814047845cf0e6a09112abb57a0b6299","node_id":"C_kwDOF83__NoAKGU1MWNmMWJmODE0MDQ3ODQ1Y2YwZTZhMDkxMTJhYmI1N2EwYjYyOTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"d1d3223bbfee32e1192a1e4afe894fc2ac98f90f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d1d3223bbfee32e1192a1e4afe894fc2ac98f90f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e51cf1bf814047845cf0e6a09112abb57a0b6299","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"247c0caac63c4155f2a10acc26b59d7547ff6f21","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/247c0caac63c4155f2a10acc26b59d7547ff6f21"}]},{"sha":"8afccd866520ab62c501af476ad5b3b9af8f77eb","node_id":"C_kwDOF83__NoAKDhhZmNjZDg2NjUyMGFiNjJjNTAxYWY0NzZhZDViM2I5YWY4Zjc3ZWI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"6c81a6cb7c3ba6bd69df6e1715d38b2501ad8d31","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6c81a6cb7c3ba6bd69df6e1715d38b2501ad8d31"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8afccd866520ab62c501af476ad5b3b9af8f77eb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e51cf1bf814047845cf0e6a09112abb57a0b6299","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e51cf1bf814047845cf0e6a09112abb57a0b6299"}]},{"sha":"5710511d889195da564138babf2d14dc82f0b27f","node_id":"C_kwDOF83__NoAKDU3MTA1MTFkODg5MTk1ZGE1NjQxMzhiYWJmMmQxNGRjODJmMGIyN2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"53a4e6779dd443ee456cfe89ecf28319ed9b85bb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/53a4e6779dd443ee456cfe89ecf28319ed9b85bb"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5710511d889195da564138babf2d14dc82f0b27f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5710511d889195da564138babf2d14dc82f0b27f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8afccd866520ab62c501af476ad5b3b9af8f77eb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8afccd866520ab62c501af476ad5b3b9af8f77eb"}]},{"sha":"d9a57159b2c24366f0d1b880aab463aaaf5da412","node_id":"C_kwDOF83__NoAKGQ5YTU3MTU5YjJjMjQzNjZmMGQxYjg4MGFhYjQ2M2FhYWY1ZGE0MTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"af5c7dd9931ebbc0af6c2704467ac88ca87b13f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/af5c7dd9931ebbc0af6c2704467ac88ca87b13f4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d9a57159b2c24366f0d1b880aab463aaaf5da412","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5710511d889195da564138babf2d14dc82f0b27f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5710511d889195da564138babf2d14dc82f0b27f"}]},{"sha":"d18965eed76efeb820839413951e7b490756ded2","node_id":"C_kwDOF83__NoAKGQxODk2NWVlZDc2ZWZlYjgyMDgzOTQxMzk1MWU3YjQ5MDc1NmRlZDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"2217eae6f286992914af68ec89c06b8bda3962e3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2217eae6f286992914af68ec89c06b8bda3962e3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d18965eed76efeb820839413951e7b490756ded2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d18965eed76efeb820839413951e7b490756ded2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d9a57159b2c24366f0d1b880aab463aaaf5da412","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d9a57159b2c24366f0d1b880aab463aaaf5da412"}]},{"sha":"f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","node_id":"C_kwDOF83__NoAKGY1YmZmODVmMTM5M2FmZTQ1NWZlNDJhNDg3M2ZmM2ZjZmNmYzAyYjU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"6c3eff6c9fa350668233e3c158c33e5777f077aa","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6c3eff6c9fa350668233e3c158c33e5777f077aa"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d18965eed76efeb820839413951e7b490756ded2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d18965eed76efeb820839413951e7b490756ded2"}]},{"sha":"f3b440e9ca574ac4971cc1478dae15a25e4357c4","node_id":"C_kwDOF83__NoAKGYzYjQ0MGU5Y2E1NzRhYzQ5NzFjYzE0NzhkYWUxNWEyNWU0MzU3YzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"f0c3e3d6ac6029c6a12814bfafa7d1215eaefd2e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f0c3e3d6ac6029c6a12814bfafa7d1215eaefd2e"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f3b440e9ca574ac4971cc1478dae15a25e4357c4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5"}]},{"sha":"b16a737b809df919dd2e8e3ab615b1cfbe112bd4","node_id":"C_kwDOF83__NoAKGIxNmE3MzdiODA5ZGY5MTlkZDJlOGUzYWI2MTViMWNmYmUxMTJiZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"bad34a10e058de4e4e86cb13bae4f8336e628fe8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bad34a10e058de4e4e86cb13bae4f8336e628fe8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f3b440e9ca574ac4971cc1478dae15a25e4357c4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f3b440e9ca574ac4971cc1478dae15a25e4357c4"}]},{"sha":"2382eabec2dab6ab48fc7186266ccb6c7b964dc3","node_id":"C_kwDOF83__NoAKDIzODJlYWJlYzJkYWI2YWI0OGZjNzE4NjI2NmNjYjZjN2I5NjRkYzM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"11ff41a0805431ecc8b92c47bdfc1bc7edb58d7f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/11ff41a0805431ecc8b92c47bdfc1bc7edb58d7f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b16a737b809df919dd2e8e3ab615b1cfbe112bd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b16a737b809df919dd2e8e3ab615b1cfbe112bd4"}]},{"sha":"89f220f19348e3c2f0c4c6dc7945d469f1331786","node_id":"C_kwDOF83__NoAKDg5ZjIyMGYxOTM0OGUzYzJmMGM0YzZkYzc5NDVkNDY5ZjEzMzE3ODY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"ca0b5cc489f32297be4b323ca83f6752e219a93a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ca0b5cc489f32297be4b323ca83f6752e219a93a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/89f220f19348e3c2f0c4c6dc7945d469f1331786","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2382eabec2dab6ab48fc7186266ccb6c7b964dc3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2382eabec2dab6ab48fc7186266ccb6c7b964dc3"}]},{"sha":"e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","node_id":"C_kwDOF83__NoAKGU1YjdlMWI2MmY2Y2VjMmZhNDdiNmIyNWVmNmZjZjcyMjViYWRjMjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"953200290b9ea8d399019baa124d5d74e2b145b5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/953200290b9ea8d399019baa124d5d74e2b145b5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"89f220f19348e3c2f0c4c6dc7945d469f1331786","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/89f220f19348e3c2f0c4c6dc7945d469f1331786"}]},{"sha":"8965abe7d624415d97cadc713b7e149d71ff65f1","node_id":"C_kwDOF83__NoAKDg5NjVhYmU3ZDYyNDQxNWQ5N2NhZGM3MTNiN2UxNDlkNzFmZjY1ZjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"1081d42476a3f4f419f6123387738ecffa28e074","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1081d42476a3f4f419f6123387738ecffa28e074"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8965abe7d624415d97cadc713b7e149d71ff65f1","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27"}]},{"sha":"2aaed36eb31d0b944c227a24799b77e101cc22f2","node_id":"C_kwDOF83__NoAKDJhYWVkMzZlYjMxZDBiOTQ0YzIyN2EyNDc5OWI3N2UxMDFjYzIyZjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"6efe70a21b279efeac2cf929adbdf71fefe286cd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6efe70a21b279efeac2cf929adbdf71fefe286cd"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2aaed36eb31d0b944c227a24799b77e101cc22f2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8965abe7d624415d97cadc713b7e149d71ff65f1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8965abe7d624415d97cadc713b7e149d71ff65f1"}]},{"sha":"fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","node_id":"C_kwDOF83__NoAKGZiMDcwZTQ3Y2I1YTdhZjEyNGJiMmNjNzhjMDBiMzlkOGQ5NTY3ZWM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"2fada430faba664c4a955a5c816ca675da716cfc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2fada430faba664c4a955a5c816ca675da716cfc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2aaed36eb31d0b944c227a24799b77e101cc22f2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2aaed36eb31d0b944c227a24799b77e101cc22f2"}]},{"sha":"639802afc54c74ac0dc8b396099bf5c8f233dd91","node_id":"C_kwDOF83__NoAKDYzOTgwMmFmYzU0Yzc0YWMwZGM4YjM5NjA5OWJmNWM4ZjIzM2RkOTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"ea2b2bd36674fdba6641b22a8ecb04f4f6b27fe2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ea2b2bd36674fdba6641b22a8ecb04f4f6b27fe2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/639802afc54c74ac0dc8b396099bf5c8f233dd91","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec"}]},{"sha":"a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","node_id":"C_kwDOF83__NoAKGEzYjBkYmFhNTQzOTg2Y2E5NDNlMWRkN2ExZGVkNTgxYjc1ZWQ0MmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"413891e07ffb962450fdd61a75da8e0813bc7625","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/413891e07ffb962450fdd61a75da8e0813bc7625"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"639802afc54c74ac0dc8b396099bf5c8f233dd91","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/639802afc54c74ac0dc8b396099bf5c8f233dd91"}]},{"sha":"9cbfcbb09eae7cac65425211c039a8f252d49143","node_id":"C_kwDOF83__NoAKDljYmZjYmIwOWVhZTdjYWM2NTQyNTIxMWMwMzlhOGYyNTJkNDkxNDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"c19e228bf08daac524ad2d56c10e16eec7ebef14","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c19e228bf08daac524ad2d56c10e16eec7ebef14"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9cbfcbb09eae7cac65425211c039a8f252d49143","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a"}]},{"sha":"561d6cfcd9df7f9567c66bd0f638d602081c02c5","node_id":"C_kwDOF83__NoAKDU2MWQ2Y2ZjZDlkZjdmOTU2N2M2NmJkMGY2MzhkNjAyMDgxYzAyYzU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"8b439ff7fca802596e2e169290f2296d1dd412e1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8b439ff7fca802596e2e169290f2296d1dd412e1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/561d6cfcd9df7f9567c66bd0f638d602081c02c5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9cbfcbb09eae7cac65425211c039a8f252d49143","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9cbfcbb09eae7cac65425211c039a8f252d49143"}]},{"sha":"c84a9d9f368018e0672e7d2e931f8ae24a90ad83","node_id":"C_kwDOF83__NoAKGM4NGE5ZDlmMzY4MDE4ZTA2NzJlN2QyZTkzMWY4YWUyNGE5MGFkODM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"f45fb80386c5b459086a3dc5595ff8714ff97687","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f45fb80386c5b459086a3dc5595ff8714ff97687"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"561d6cfcd9df7f9567c66bd0f638d602081c02c5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/561d6cfcd9df7f9567c66bd0f638d602081c02c5"}]},{"sha":"fa29a9f267a1c45ffa701242e9250f2ba50991df","node_id":"C_kwDOF83__NoAKGZhMjlhOWYyNjdhMWM0NWZmYTcwMTI0MmU5MjUwZjJiYTUwOTkxZGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"a411a65f9cdc442d4530080b2eeff1bcd51fbccd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a411a65f9cdc442d4530080b2eeff1bcd51fbccd"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa29a9f267a1c45ffa701242e9250f2ba50991df","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c84a9d9f368018e0672e7d2e931f8ae24a90ad83","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c84a9d9f368018e0672e7d2e931f8ae24a90ad83"}]},{"sha":"5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","node_id":"C_kwDOF83__NoAKDViN2I1NmZmODg4NjI3ZDBkYmMxMzQwZWQyZjVmN2ExZDI5NjE4Zjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"edd0bdfb4ad28e6b210f9a5fb77c554031e8ee55","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/edd0bdfb4ad28e6b210f9a5fb77c554031e8ee55"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa29a9f267a1c45ffa701242e9250f2ba50991df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa29a9f267a1c45ffa701242e9250f2ba50991df"}]},{"sha":"8c926930d03076afbc7f8385f6bd00ce8b1a1c01","node_id":"C_kwDOF83__NoAKDhjOTI2OTMwZDAzMDc2YWZiYzdmODM4NWY2YmQwMGNlOGIxYTFjMDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"1accb80ab9117a43b65686d1484a886b8572d931","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1accb80ab9117a43b65686d1484a886b8572d931"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7"}]},{"sha":"acd63acec5999824c69d122ee9bfe4e486175edf","node_id":"C_kwDOF83__NoAKGFjZDYzYWNlYzU5OTk4MjRjNjlkMTIyZWU5YmZlNGU0ODYxNzVlZGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"73de3071727dd5e45b7c78070eae728570b23fe1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/73de3071727dd5e45b7c78070eae728570b23fe1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/acd63acec5999824c69d122ee9bfe4e486175edf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/acd63acec5999824c69d122ee9bfe4e486175edf","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8c926930d03076afbc7f8385f6bd00ce8b1a1c01","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c926930d03076afbc7f8385f6bd00ce8b1a1c01"}]},{"sha":"62b4517e606f00a5155e904306a2cdffbdb686e4","node_id":"C_kwDOF83__NoAKDYyYjQ1MTdlNjA2ZjAwYTUxNTVlOTA0MzA2YTJjZGZmYmRiNjg2ZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"ff3f2da01f1fb109e3f578e48e799f86a4848c08","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ff3f2da01f1fb109e3f578e48e799f86a4848c08"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/62b4517e606f00a5155e904306a2cdffbdb686e4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"acd63acec5999824c69d122ee9bfe4e486175edf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/acd63acec5999824c69d122ee9bfe4e486175edf"}]},{"sha":"9687f4e8953e009205e255f49ace95dda6413888","node_id":"C_kwDOF83__NoAKDk2ODdmNGU4OTUzZTAwOTIwNWUyNTVmNDlhY2U5NWRkYTY0MTM4ODg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"a0bb4a1b7fc956a8a6183d70b8d4a98eef1ddefc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a0bb4a1b7fc956a8a6183d70b8d4a98eef1ddefc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9687f4e8953e009205e255f49ace95dda6413888","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9687f4e8953e009205e255f49ace95dda6413888","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"62b4517e606f00a5155e904306a2cdffbdb686e4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/62b4517e606f00a5155e904306a2cdffbdb686e4"}]},{"sha":"a1585e75d345a0aa57d3d82947b0fe54acb14eb6","node_id":"C_kwDOF83__NoAKGExNTg1ZTc1ZDM0NWEwYWE1N2QzZDgyOTQ3YjBmZTU0YWNiMTRlYjY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"c545a539046669576ca5222662f9cd8cca0562ba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c545a539046669576ca5222662f9cd8cca0562ba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9687f4e8953e009205e255f49ace95dda6413888","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9687f4e8953e009205e255f49ace95dda6413888"}]},{"sha":"d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","node_id":"C_kwDOF83__NoAKGQzZWQ3OGExYmI2YWJmMTJhYTMwYjMxMzRjNGU1MDZmMmE1ZjhkNTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"9f230834e36af0eb754d1eb804cbbbf37a22ce52","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9f230834e36af0eb754d1eb804cbbbf37a22ce52"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a1585e75d345a0aa57d3d82947b0fe54acb14eb6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1585e75d345a0aa57d3d82947b0fe54acb14eb6"}]},{"sha":"577cfd8011ce680166019acad3b78d4d1aec5704","node_id":"C_kwDOF83__NoAKDU3N2NmZDgwMTFjZTY4MDE2NjAxOWFjYWQzYjc4ZDRkMWFlYzU3MDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"c54f0c020f41fa54d4dda7d76036e92d784da2f0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c54f0c020f41fa54d4dda7d76036e92d784da2f0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/577cfd8011ce680166019acad3b78d4d1aec5704","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/577cfd8011ce680166019acad3b78d4d1aec5704","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58"}]},{"sha":"ac021e5cda8755d345731bee5df062757bdc8d0b","node_id":"C_kwDOF83__NoAKGFjMDIxZTVjZGE4NzU1ZDM0NTczMWJlZTVkZjA2Mjc1N2JkYzhkMGI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"c2e5cb0a97d5ca275b81ba07640f0f74610c014d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c2e5cb0a97d5ca275b81ba07640f0f74610c014d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac021e5cda8755d345731bee5df062757bdc8d0b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"577cfd8011ce680166019acad3b78d4d1aec5704","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/577cfd8011ce680166019acad3b78d4d1aec5704"}]},{"sha":"48e890c532fdfe2150006de853719fab3cffdc34","node_id":"C_kwDOF83__NoAKDQ4ZTg5MGM1MzJmZGZlMjE1MDAwNmRlODUzNzE5ZmFiM2NmZmRjMzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"7fd811a9c99d35dcbd83eefde7cec30ff09a741f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7fd811a9c99d35dcbd83eefde7cec30ff09a741f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/48e890c532fdfe2150006de853719fab3cffdc34","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48e890c532fdfe2150006de853719fab3cffdc34","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ac021e5cda8755d345731bee5df062757bdc8d0b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac021e5cda8755d345731bee5df062757bdc8d0b"}]},{"sha":"b97f6a05ba120a65d58d103938db8df9baf4f806","node_id":"C_kwDOF83__NoAKGI5N2Y2YTA1YmExMjBhNjVkNThkMTAzOTM4ZGI4ZGY5YmFmNGY4MDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"fa965ce397d1bf0b1fc5b3c1fa73387f48a8037c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fa965ce397d1bf0b1fc5b3c1fa73387f48a8037c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b97f6a05ba120a65d58d103938db8df9baf4f806","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"48e890c532fdfe2150006de853719fab3cffdc34","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48e890c532fdfe2150006de853719fab3cffdc34"}]},{"sha":"add7d8dadbca5bc85cc272df8cf61276baf04cd4","node_id":"C_kwDOF83__NoAKGFkZDdkOGRhZGJjYTViYzg1Y2MyNzJkZjhjZjYxMjc2YmFmMDRjZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"3236c22560ed1514a36c1b4b7bf02be114ec7355","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3236c22560ed1514a36c1b4b7bf02be114ec7355"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/add7d8dadbca5bc85cc272df8cf61276baf04cd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b97f6a05ba120a65d58d103938db8df9baf4f806","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b97f6a05ba120a65d58d103938db8df9baf4f806"}]},{"sha":"79f3589b1a2b00e7ad39d538a9e44473864a697d","node_id":"C_kwDOF83__NoAKDc5ZjM1ODliMWEyYjAwZTdhZDM5ZDUzOGE5ZTQ0NDczODY0YTY5N2Q","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"4dc0c89d9a3910531c9318e3c75096436f67a606","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4dc0c89d9a3910531c9318e3c75096436f67a606"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79f3589b1a2b00e7ad39d538a9e44473864a697d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"add7d8dadbca5bc85cc272df8cf61276baf04cd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/add7d8dadbca5bc85cc272df8cf61276baf04cd4"}]},{"sha":"de5759756a4b88a6da27e6f1d1697373db4da96c","node_id":"C_kwDOF83__NoAKGRlNTc1OTc1NmE0Yjg4YTZkYTI3ZTZmMWQxNjk3MzczZGI0ZGE5NmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"0da27b42c606d0c01676e63ebc1d4d5a22d39b11","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0da27b42c606d0c01676e63ebc1d4d5a22d39b11"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/de5759756a4b88a6da27e6f1d1697373db4da96c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79f3589b1a2b00e7ad39d538a9e44473864a697d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79f3589b1a2b00e7ad39d538a9e44473864a697d"}]},{"sha":"6ce2f1ca3368168db2046b418e246a4cd9482340","node_id":"C_kwDOF83__NoAKDZjZTJmMWNhMzM2ODE2OGRiMjA0NmI0MThlMjQ2YTRjZDk0ODIzNDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"89291d0cc4c2009ff8ba2c4f5bfcc61c5937d484","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/89291d0cc4c2009ff8ba2c4f5bfcc61c5937d484"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6ce2f1ca3368168db2046b418e246a4cd9482340","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"de5759756a4b88a6da27e6f1d1697373db4da96c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/de5759756a4b88a6da27e6f1d1697373db4da96c"}]},{"sha":"54643679f52ced591752a2f2e0d2f19d61818ce4","node_id":"C_kwDOF83__NoAKDU0NjQzNjc5ZjUyY2VkNTkxNzUyYTJmMmUwZDJmMTlkNjE4MThjZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"4801f0118cfad4ab673cbdf81100f72b88da291d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4801f0118cfad4ab673cbdf81100f72b88da291d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54643679f52ced591752a2f2e0d2f19d61818ce4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6ce2f1ca3368168db2046b418e246a4cd9482340","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6ce2f1ca3368168db2046b418e246a4cd9482340"}]},{"sha":"7768fa4600824dd0b65dd81554cf06f57ce2e636","node_id":"C_kwDOF83__NoAKDc3NjhmYTQ2MDA4MjRkZDBiNjVkZDgxNTU0Y2YwNmY1N2NlMmU2MzY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"2f6ecdfbadfca783e72c3a051a439b83a1258876","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2f6ecdfbadfca783e72c3a051a439b83a1258876"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7768fa4600824dd0b65dd81554cf06f57ce2e636","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54643679f52ced591752a2f2e0d2f19d61818ce4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54643679f52ced591752a2f2e0d2f19d61818ce4"}]},{"sha":"c5b694fb9ddd2908939b0bdf644c997587af5322","node_id":"C_kwDOF83__NoAKGM1YjY5NGZiOWRkZDI5MDg5MzliMGJkZjY0NGM5OTc1ODdhZjUzMjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"5dee9d335cff7d52b54ed1e66acfdcb300b0d227","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5dee9d335cff7d52b54ed1e66acfdcb300b0d227"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5b694fb9ddd2908939b0bdf644c997587af5322","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7768fa4600824dd0b65dd81554cf06f57ce2e636","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7768fa4600824dd0b65dd81554cf06f57ce2e636"}]},{"sha":"32389ecf320569de6f3eb0a721574ba90bc8c751","node_id":"C_kwDOF83__NoAKDMyMzg5ZWNmMzIwNTY5ZGU2ZjNlYjBhNzIxNTc0YmE5MGJjOGM3NTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"ea6dd5157a2001daa0a3d6f78bb23de46e5fd173","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ea6dd5157a2001daa0a3d6f78bb23de46e5fd173"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/32389ecf320569de6f3eb0a721574ba90bc8c751","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c5b694fb9ddd2908939b0bdf644c997587af5322","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5b694fb9ddd2908939b0bdf644c997587af5322"}]},{"sha":"7bb612cdc6079b0ada45c2eda67de3c756436cb3","node_id":"C_kwDOF83__NoAKDdiYjYxMmNkYzYwNzliMGFkYTQ1YzJlZGE2N2RlM2M3NTY0MzZjYjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"b82b57b1baaee7e2553d7623c261bffcbee681bc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b82b57b1baaee7e2553d7623c261bffcbee681bc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bb612cdc6079b0ada45c2eda67de3c756436cb3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"32389ecf320569de6f3eb0a721574ba90bc8c751","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/32389ecf320569de6f3eb0a721574ba90bc8c751"}]},{"sha":"7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","node_id":"C_kwDOF83__NoAKDdiZDYxZTYzMzI1NjU5YTM1MjkxY2IxYmYxYTBjZmRiNmViNTdlZWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"9d54baad426346aa19f395ee31b162bec4571a36","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9d54baad426346aa19f395ee31b162bec4571a36"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7bb612cdc6079b0ada45c2eda67de3c756436cb3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bb612cdc6079b0ada45c2eda67de3c756436cb3"}]},{"sha":"4c8cc3cfe87c45e330c41b0728be267288fe5c02","node_id":"C_kwDOF83__NoAKDRjOGNjM2NmZTg3YzQ1ZTMzMGM0MWIwNzI4YmUyNjcyODhmZTVjMDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"6201a2b4167b4796468a458aace564384f59a1b1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6201a2b4167b4796468a458aace564384f59a1b1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4c8cc3cfe87c45e330c41b0728be267288fe5c02","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea"}]},{"sha":"456336e23277759bd12515136da78f7fef5dcae6","node_id":"C_kwDOF83__NoAKDQ1NjMzNmUyMzI3Nzc1OWJkMTI1MTUxMzZkYTc4ZjdmZWY1ZGNhZTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"3d3a700141e833201f7d02769ed4884c2c5e1975","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3d3a700141e833201f7d02769ed4884c2c5e1975"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/456336e23277759bd12515136da78f7fef5dcae6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/456336e23277759bd12515136da78f7fef5dcae6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4c8cc3cfe87c45e330c41b0728be267288fe5c02","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4c8cc3cfe87c45e330c41b0728be267288fe5c02"}]},{"sha":"348546d623ee31bace9df6a1aa71604b990527ff","node_id":"C_kwDOF83__NoAKDM0ODU0NmQ2MjNlZTMxYmFjZTlkZjZhMWFhNzE2MDRiOTkwNTI3ZmY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"2c0bb0e914665b718d14a9f7f43151d020c95970","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2c0bb0e914665b718d14a9f7f43151d020c95970"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/348546d623ee31bace9df6a1aa71604b990527ff","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/348546d623ee31bace9df6a1aa71604b990527ff","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"456336e23277759bd12515136da78f7fef5dcae6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/456336e23277759bd12515136da78f7fef5dcae6"}]},{"sha":"ec5c91c29611a67043bd36b4c409fd938dde2e0b","node_id":"C_kwDOF83__NoAKGVjNWM5MWMyOTYxMWE2NzA0M2JkMzZiNGM0MDlmZDkzOGRkZTJlMGI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"4ea6f06a9fad68c4f79ee7df9d869e90155f6338","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4ea6f06a9fad68c4f79ee7df9d869e90155f6338"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ec5c91c29611a67043bd36b4c409fd938dde2e0b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"348546d623ee31bace9df6a1aa71604b990527ff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/348546d623ee31bace9df6a1aa71604b990527ff"}]},{"sha":"a8d51426d8398cdfd67e05d0e522f00cf18d962d","node_id":"C_kwDOF83__NoAKGE4ZDUxNDI2ZDgzOThjZGZkNjdlMDVkMGU1MjJmMDBjZjE4ZDk2MmQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"7747c1b44a85d1d293fcc3a8ba91ebe1ed9c1268","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7747c1b44a85d1d293fcc3a8ba91ebe1ed9c1268"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a8d51426d8398cdfd67e05d0e522f00cf18d962d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ec5c91c29611a67043bd36b4c409fd938dde2e0b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ec5c91c29611a67043bd36b4c409fd938dde2e0b"}]},{"sha":"c0b2b32fe21f87917b8134e435a9d944a1593eee","node_id":"C_kwDOF83__NoAKGMwYjJiMzJmZTIxZjg3OTE3YjgxMzRlNDM1YTlkOTQ0YTE1OTNlZWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"5572e410e8c4eb4a92a73b29b93626f9b6ae3cc4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5572e410e8c4eb4a92a73b29b93626f9b6ae3cc4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c0b2b32fe21f87917b8134e435a9d944a1593eee","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a8d51426d8398cdfd67e05d0e522f00cf18d962d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a8d51426d8398cdfd67e05d0e522f00cf18d962d"}]},{"sha":"a795b32e0086bf1e95b73851de4fb2d2fa863c1f","node_id":"C_kwDOF83__NoAKGE3OTViMzJlMDA4NmJmMWU5NWI3Mzg1MWRlNGZiMmQyZmE4NjNjMWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"3bdc6d11c6916bcd6b53e4ff878e64bb882e5180","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3bdc6d11c6916bcd6b53e4ff878e64bb882e5180"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c0b2b32fe21f87917b8134e435a9d944a1593eee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c0b2b32fe21f87917b8134e435a9d944a1593eee"}]},{"sha":"841284bbd93b36212d3a7dc0efe66029db4ed642","node_id":"C_kwDOF83__NoAKDg0MTI4NGJiZDkzYjM2MjEyZDNhN2RjMGVmZTY2MDI5ZGI0ZWQ2NDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"4bcc4080da7734cba24b06634ac8a4d7a6c1a3a0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4bcc4080da7734cba24b06634ac8a4d7a6c1a3a0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/841284bbd93b36212d3a7dc0efe66029db4ed642","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a795b32e0086bf1e95b73851de4fb2d2fa863c1f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a795b32e0086bf1e95b73851de4fb2d2fa863c1f"}]},{"sha":"952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","node_id":"C_kwDOF83__NoAKDk1MmFhMzYzNWY4NGYyYjMyZDE2YWM0Nzc1ZmJkYTM3ZmE1ZTFkZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"79b5850fb119629e322d589bcb0865dc14b341b7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/79b5850fb119629e322d589bcb0865dc14b341b7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"841284bbd93b36212d3a7dc0efe66029db4ed642","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/841284bbd93b36212d3a7dc0efe66029db4ed642"}]},{"sha":"35bb64a0679da9b688f184f5b90fbccca98b8cf0","node_id":"C_kwDOF83__NoAKDM1YmI2NGEwNjc5ZGE5YjY4OGYxODRmNWI5MGZiY2NjYTk4YjhjZjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"1804cd121682fc6e2a43137218c9469b618dfd23","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1804cd121682fc6e2a43137218c9469b618dfd23"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35bb64a0679da9b688f184f5b90fbccca98b8cf0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4"}]},{"sha":"38a549d26370b1e7b5f3425f977194e08dc5fde7","node_id":"C_kwDOF83__NoAKDM4YTU0OWQyNjM3MGIxZTdiNWYzNDI1Zjk3NzE5NGUwOGRjNWZkZTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"3daa68b7261760f3b8aaf2219a2dab2e735dc3b7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3daa68b7261760f3b8aaf2219a2dab2e735dc3b7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/38a549d26370b1e7b5f3425f977194e08dc5fde7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"35bb64a0679da9b688f184f5b90fbccca98b8cf0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35bb64a0679da9b688f184f5b90fbccca98b8cf0"}]},{"sha":"56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","node_id":"C_kwDOF83__NoAKDU2ZDJiODYzZWFmNTU3MGEwYzY1ZWE5YjYzMjZhOTdhYjJlMzljOWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"40c593030da220c8deaf1574aa33261486d4b51b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/40c593030da220c8deaf1574aa33261486d4b51b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"38a549d26370b1e7b5f3425f977194e08dc5fde7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/38a549d26370b1e7b5f3425f977194e08dc5fde7"}]},{"sha":"713ba2443a4447a1d41355760c895ecc703ec57c","node_id":"C_kwDOF83__NoAKDcxM2JhMjQ0M2E0NDQ3YTFkNDEzNTU3NjBjODk1ZWNjNzAzZWM1N2M","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"5926efe56789a5a9ee9cea599656bdb89b2bc497","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5926efe56789a5a9ee9cea599656bdb89b2bc497"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/713ba2443a4447a1d41355760c895ecc703ec57c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/713ba2443a4447a1d41355760c895ecc703ec57c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e"}]},{"sha":"991dfec2212e29c247349c0a111b9daaacba4e54","node_id":"C_kwDOF83__NoAKDk5MWRmZWMyMjEyZTI5YzI0NzM0OWMwYTExMWI5ZGFhYWNiYTRlNTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"470d5e0317648a9a0e5aba7d37391c6c3cecba37","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/470d5e0317648a9a0e5aba7d37391c6c3cecba37"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/991dfec2212e29c247349c0a111b9daaacba4e54","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/991dfec2212e29c247349c0a111b9daaacba4e54","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"713ba2443a4447a1d41355760c895ecc703ec57c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/713ba2443a4447a1d41355760c895ecc703ec57c"}]},{"sha":"27e957c10865d54f442abb9a4db2b2f67548d928","node_id":"C_kwDOF83__NoAKDI3ZTk1N2MxMDg2NWQ1NGY0NDJhYmI5YTRkYjJiMmY2NzU0OGQ5Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"1efe944aad1ff712e310d7d68627973a51f72a0f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1efe944aad1ff712e310d7d68627973a51f72a0f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/27e957c10865d54f442abb9a4db2b2f67548d928","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27e957c10865d54f442abb9a4db2b2f67548d928","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"991dfec2212e29c247349c0a111b9daaacba4e54","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/991dfec2212e29c247349c0a111b9daaacba4e54"}]},{"sha":"f16d666bbaa62e716c0d66caac74d0eabed9dca2","node_id":"C_kwDOF83__NoAKGYxNmQ2NjZiYmFhNjJlNzE2YzBkNjZjYWFjNzRkMGVhYmVkOWRjYTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"698253b7da8df6a37935ddf42e31a378fa107b10","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/698253b7da8df6a37935ddf42e31a378fa107b10"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f16d666bbaa62e716c0d66caac74d0eabed9dca2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"27e957c10865d54f442abb9a4db2b2f67548d928","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27e957c10865d54f442abb9a4db2b2f67548d928"}]},{"sha":"7dfb8db88bca87267617e2d9f231cdf217241fe7","node_id":"C_kwDOF83__NoAKDdkZmI4ZGI4OGJjYTg3MjY3NjE3ZTJkOWYyMzFjZGYyMTcyNDFmZTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"0f2f6fc250488cfd4062021d21a50b6e4b9dcd67","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0f2f6fc250488cfd4062021d21a50b6e4b9dcd67"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dfb8db88bca87267617e2d9f231cdf217241fe7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f16d666bbaa62e716c0d66caac74d0eabed9dca2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f16d666bbaa62e716c0d66caac74d0eabed9dca2"}]},{"sha":"86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","node_id":"C_kwDOF83__NoAKDg2ZTMwZmRmMDJkZWEyZGQ1ZmMzY2RkNDRkZDQ3YmJhMTc4MjczYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"74665de2755706e0a98aedefddf05a064d6f9050","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/74665de2755706e0a98aedefddf05a064d6f9050"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7dfb8db88bca87267617e2d9f231cdf217241fe7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dfb8db88bca87267617e2d9f231cdf217241fe7"}]},{"sha":"3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","node_id":"C_kwDOF83__NoAKDNkNDFlNTdmNDRiOWFlZGViMGNlODhjMTc1Yjk5MzdkZTZhZDNjMTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"1a7b295426d5dc94e8eccd9b88700f4995950753","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1a7b295426d5dc94e8eccd9b88700f4995950753"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9"}]},{"sha":"c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","node_id":"C_kwDOF83__NoAKGM2NTVjMGYyZDAwNDJlOWU0NWFhNWVkZmVlOWEzMDc2OTBjMGNkOWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"e339a930f697c525214fdef4876dc656c940e667","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e339a930f697c525214fdef4876dc656c940e667"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13"}]},{"sha":"fa830292720ccabc7c199249551291da825e1a90","node_id":"C_kwDOF83__NoAKGZhODMwMjkyNzIwY2NhYmM3YzE5OTI0OTU1MTI5MWRhODI1ZTFhOTA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"0b793573ecdb6789cba81c2fe00e1eb6df948b1d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b793573ecdb6789cba81c2fe00e1eb6df948b1d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa830292720ccabc7c199249551291da825e1a90","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa830292720ccabc7c199249551291da825e1a90","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e"}]},{"sha":"0b169bf8c51721082d8b4b175557a4fd7a41859e","node_id":"C_kwDOF83__NoAKDBiMTY5YmY4YzUxNzIxMDgyZDhiNGIxNzU1NTdhNGZkN2E0MTg1OWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"e92ed7519ba0954ecbd3b9af771266e6263ed784","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e92ed7519ba0954ecbd3b9af771266e6263ed784"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b169bf8c51721082d8b4b175557a4fd7a41859e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa830292720ccabc7c199249551291da825e1a90","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa830292720ccabc7c199249551291da825e1a90"}]},{"sha":"9313683ebe3a199a999ddd4435f1f8f577ecbb2b","node_id":"C_kwDOF83__NoAKDkzMTM2ODNlYmUzYTE5OWE5OTlkZGQ0NDM1ZjFmOGY1NzdlY2JiMmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"bedb61d85c7dd955dd610e090f7c541c69bcf302","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bedb61d85c7dd955dd610e090f7c541c69bcf302"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0b169bf8c51721082d8b4b175557a4fd7a41859e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b169bf8c51721082d8b4b175557a4fd7a41859e"}]},{"sha":"b6c2bff101779e4b82efc928ce50db4cd3464c4d","node_id":"C_kwDOF83__NoAKGI2YzJiZmYxMDE3NzllNGI4MmVmYzkyOGNlNTBkYjRjZDM0NjRjNGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"c0a3ed4a1a82e3751c98386673f3477df89d23ee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c0a3ed4a1a82e3751c98386673f3477df89d23ee"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b6c2bff101779e4b82efc928ce50db4cd3464c4d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9313683ebe3a199a999ddd4435f1f8f577ecbb2b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9313683ebe3a199a999ddd4435f1f8f577ecbb2b"}]},{"sha":"141848de6118a8ec0031d42a239b532e28ba7b20","node_id":"C_kwDOF83__NoAKDE0MTg0OGRlNjExOGE4ZWMwMDMxZDQyYTIzOWI1MzJlMjhiYTdiMjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"23dad5f42e28a693961cc1bf2aa9b23ae5df1bec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/23dad5f42e28a693961cc1bf2aa9b23ae5df1bec"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/141848de6118a8ec0031d42a239b532e28ba7b20","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/141848de6118a8ec0031d42a239b532e28ba7b20","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b6c2bff101779e4b82efc928ce50db4cd3464c4d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b6c2bff101779e4b82efc928ce50db4cd3464c4d"}]},{"sha":"746cefc3b695998fca753f27b7937f7b8b0fd73a","node_id":"C_kwDOF83__NoAKDc0NmNlZmMzYjY5NTk5OGZjYTc1M2YyN2I3OTM3ZjdiOGIwZmQ3M2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fe961ba6bd030acdaaad5af65547bfebb95e5b87","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fe961ba6bd030acdaaad5af65547bfebb95e5b87"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/746cefc3b695998fca753f27b7937f7b8b0fd73a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"141848de6118a8ec0031d42a239b532e28ba7b20","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/141848de6118a8ec0031d42a239b532e28ba7b20"}]},{"sha":"3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","node_id":"C_kwDOF83__NoAKDNmOWZmZTcwYmIxZDNlZmNiM2I2ZGJkYTI1MWYzMDM1YjVkOWVlNTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"c8775313f1683f64728b5bf2b8fe13ac392d31e6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c8775313f1683f64728b5bf2b8fe13ac392d31e6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"746cefc3b695998fca753f27b7937f7b8b0fd73a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/746cefc3b695998fca753f27b7937f7b8b0fd73a"}]},{"sha":"ac81fc9eeaa7ebe9071efe91205570db06a728cb","node_id":"C_kwDOF83__NoAKGFjODFmYzllZWFhN2ViZTkwNzFlZmU5MTIwNTU3MGRiMDZhNzI4Y2I","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"2d52611bc40e1e74308dd0716db200da9c07806f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2d52611bc40e1e74308dd0716db200da9c07806f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac81fc9eeaa7ebe9071efe91205570db06a728cb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56"}]},{"sha":"f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","node_id":"C_kwDOF83__NoAKGY4MmY4ODRlNDIyY2MwYTNmMjBkMzgwMTZiN2IxYmE5YjhmZDRkZTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"db7d14712f3554f347f319364f3bcd2ab69cd279","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/db7d14712f3554f347f319364f3bcd2ab69cd279"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ac81fc9eeaa7ebe9071efe91205570db06a728cb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac81fc9eeaa7ebe9071efe91205570db06a728cb"}]},{"sha":"d81c5623eff68a8c0c5f25827b85655dc611d186","node_id":"C_kwDOF83__NoAKGQ4MWM1NjIzZWZmNjhhOGMwYzVmMjU4MjdiODU2NTVkYzYxMWQxODY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fe4b117b678b53e46fed7717ba42a8b746749782","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fe4b117b678b53e46fed7717ba42a8b746749782"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d81c5623eff68a8c0c5f25827b85655dc611d186","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2"}]},{"sha":"9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","node_id":"C_kwDOF83__NoAKDlkYmUxNWFkYjVmNDE0YzFkNDIyYjY1ZTRiMGZiNDM0YWMyYjhhMGM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"1bad7cc557c1d691b024189fc6fae30bfcd8e196","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bad7cc557c1d691b024189fc6fae30bfcd8e196"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d81c5623eff68a8c0c5f25827b85655dc611d186","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d81c5623eff68a8c0c5f25827b85655dc611d186"}]},{"sha":"67402bf06994fb808632d5194c505b3cef667749","node_id":"C_kwDOF83__NoAKDY3NDAyYmYwNjk5NGZiODA4NjMyZDUxOTRjNTA1YjNjZWY2Njc3NDk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fc96727b643600198687942640cae3202de0bc3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fc96727b643600198687942640cae3202de0bc3f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/67402bf06994fb808632d5194c505b3cef667749","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67402bf06994fb808632d5194c505b3cef667749","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c"}]},{"sha":"9d9fa3ef63254933653481c5d3b5d17bd827c7a8","node_id":"C_kwDOF83__NoAKDlkOWZhM2VmNjMyNTQ5MzM2NTM0ODFjNWQzYjVkMTdiZDgyN2M3YTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"6b56f029c24b50d23819dc35587ca154f59070a7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6b56f029c24b50d23819dc35587ca154f59070a7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"67402bf06994fb808632d5194c505b3cef667749","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67402bf06994fb808632d5194c505b3cef667749"}]},{"sha":"fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","node_id":"C_kwDOF83__NoAKGZhMjJmOWRjZTRhYWY4OWZlOWJkNmEzYjYyOWQ4NjUzYTk5ZjY5NjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"88acfb49e074adebacf3a94eec90ce72d855998f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/88acfb49e074adebacf3a94eec90ce72d855998f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9d9fa3ef63254933653481c5d3b5d17bd827c7a8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9d9fa3ef63254933653481c5d3b5d17bd827c7a8"}]},{"sha":"28da794cf3573f21e2d2b7ab67f4b70faa424ef7","node_id":"C_kwDOF83__NoAKDI4ZGE3OTRjZjM1NzNmMjFlMmQyYjdhYjY3ZjRiNzBmYWE0MjRlZjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"d78999e6316deb9eaacb3eda259d8ef05cdeb100","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d78999e6316deb9eaacb3eda259d8ef05cdeb100"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961"}]},{"sha":"dd79321d938d68ff7634c0594d63609a81d08f6e","node_id":"C_kwDOF83__NoAKGRkNzkzMjFkOTM4ZDY4ZmY3NjM0YzA1OTRkNjM2MDlhODFkMDhmNmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"f4e93e721f778a41cf429127b398d6fe5a19e9bf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f4e93e721f778a41cf429127b398d6fe5a19e9bf"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dd79321d938d68ff7634c0594d63609a81d08f6e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"28da794cf3573f21e2d2b7ab67f4b70faa424ef7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28da794cf3573f21e2d2b7ab67f4b70faa424ef7"}]},{"sha":"b01cfede232680315b8e776989863016c434c1c4","node_id":"C_kwDOF83__NoAKGIwMWNmZWRlMjMyNjgwMzE1YjhlNzc2OTg5ODYzMDE2YzQzNGMxYzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"980e5f0bf331e9972241c1f9e27d2783a1cff424","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/980e5f0bf331e9972241c1f9e27d2783a1cff424"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b01cfede232680315b8e776989863016c434c1c4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b01cfede232680315b8e776989863016c434c1c4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"dd79321d938d68ff7634c0594d63609a81d08f6e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dd79321d938d68ff7634c0594d63609a81d08f6e"}]},{"sha":"6bc380dd03a72ed6b936206410d5d306635baffb","node_id":"C_kwDOF83__NoAKDZiYzM4MGRkMDNhNzJlZDZiOTM2MjA2NDEwZDVkMzA2NjM1YmFmZmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"905ca3640c73a8eeff596afdadfe54f21a2a7827","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/905ca3640c73a8eeff596afdadfe54f21a2a7827"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6bc380dd03a72ed6b936206410d5d306635baffb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6bc380dd03a72ed6b936206410d5d306635baffb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b01cfede232680315b8e776989863016c434c1c4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b01cfede232680315b8e776989863016c434c1c4"}]},{"sha":"e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","node_id":"C_kwDOF83__NoAKGU3ODMwZWFlNjg4ZGVjMGJjZDZiYTE2YzdlYjMxZDA2OWY0Yzc5ZDk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"7cbf5e72517459eaa4e27ab2f9612bc020fb081d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7cbf5e72517459eaa4e27ab2f9612bc020fb081d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6bc380dd03a72ed6b936206410d5d306635baffb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6bc380dd03a72ed6b936206410d5d306635baffb"}]},{"sha":"9ead59ffdbd00680efdcd278c945d0190f5431a2","node_id":"C_kwDOF83__NoAKDllYWQ1OWZmZGJkMDA2ODBlZmRjZDI3OGM5NDVkMDE5MGY1NDMxYTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"d4106ae332badffb76ba65d14f573bacdc622bf9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d4106ae332badffb76ba65d14f573bacdc622bf9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9ead59ffdbd00680efdcd278c945d0190f5431a2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9"}]},{"sha":"bf4f3003d8ca2adca1fa6521e79de2e38fa00085","node_id":"C_kwDOF83__NoAKGJmNGYzMDAzZDhjYTJhZGNhMWZhNjUyMWU3OWRlMmUzOGZhMDAwODU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"108372a18861f1313ea463464fa0556adff6cd2c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/108372a18861f1313ea463464fa0556adff6cd2c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9ead59ffdbd00680efdcd278c945d0190f5431a2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9ead59ffdbd00680efdcd278c945d0190f5431a2"}]},{"sha":"54d57f1f7cd199df49c988724d9b630389964ce8","node_id":"C_kwDOF83__NoAKDU0ZDU3ZjFmN2NkMTk5ZGY0OWM5ODg3MjRkOWI2MzAzODk5NjRjZTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"48622698e104ea5980cad5c132faf25c431ef97b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/48622698e104ea5980cad5c132faf25c431ef97b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54d57f1f7cd199df49c988724d9b630389964ce8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54d57f1f7cd199df49c988724d9b630389964ce8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"bf4f3003d8ca2adca1fa6521e79de2e38fa00085","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bf4f3003d8ca2adca1fa6521e79de2e38fa00085"}]},{"sha":"b65976a868ea2226600ac191d4a63767b514bef0","node_id":"C_kwDOF83__NoAKGI2NTk3NmE4NjhlYTIyMjY2MDBhYzE5MWQ0YTYzNzY3YjUxNGJlZjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"89a20c2ed2e32c6bf161e05441c62873839f7a3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/89a20c2ed2e32c6bf161e05441c62873839f7a3f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b65976a868ea2226600ac191d4a63767b514bef0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b65976a868ea2226600ac191d4a63767b514bef0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54d57f1f7cd199df49c988724d9b630389964ce8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54d57f1f7cd199df49c988724d9b630389964ce8"}]},{"sha":"8cb55938020bf324697a713ef8341cf74c676473","node_id":"C_kwDOF83__NoAKDhjYjU1OTM4MDIwYmYzMjQ2OTdhNzEzZWY4MzQxY2Y3NGM2NzY0NzM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"90d6190c3c177b8b68a435928a49983ab456bd70","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/90d6190c3c177b8b68a435928a49983ab456bd70"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8cb55938020bf324697a713ef8341cf74c676473","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8cb55938020bf324697a713ef8341cf74c676473","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b65976a868ea2226600ac191d4a63767b514bef0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b65976a868ea2226600ac191d4a63767b514bef0"}]},{"sha":"a67fc27c06fcb20088043e80e5c70f9a7c7f557f","node_id":"C_kwDOF83__NoAKGE2N2ZjMjdjMDZmY2IyMDA4ODA0M2U4MGU1YzcwZjlhN2M3ZjU1N2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"68e4b0159f0da11f7515c9dd474b97231034cd9a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/68e4b0159f0da11f7515c9dd474b97231034cd9a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8cb55938020bf324697a713ef8341cf74c676473","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8cb55938020bf324697a713ef8341cf74c676473"}]},{"sha":"2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","node_id":"C_kwDOF83__NoAKDJkYjczZDllOGI2Yjk1YjA1ODkwZjQ2YTdlZTdiNWI4MGQwMjVjYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"06b0eeca8e5f85d7c15e450e878dad2dc31547ea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/06b0eeca8e5f85d7c15e450e878dad2dc31547ea"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a67fc27c06fcb20088043e80e5c70f9a7c7f557f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a67fc27c06fcb20088043e80e5c70f9a7c7f557f"}]},{"sha":"771cd52d642b567fd401abeeeb73f6a03b7c25d1","node_id":"C_kwDOF83__NoAKDc3MWNkNTJkNjQyYjU2N2ZkNDAxYWJlZWViNzNmNmEwM2I3YzI1ZDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"979d57f875243288b385bd75240c9c458f4e07ba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/979d57f875243288b385bd75240c9c458f4e07ba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/771cd52d642b567fd401abeeeb73f6a03b7c25d1","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9"}]},{"sha":"54a311b32085fd8a201f47993987cd3898519913","node_id":"C_kwDOF83__NoAKDU0YTMxMWIzMjA4NWZkOGEyMDFmNDc5OTM5ODdjZDM4OTg1MTk5MTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"0d67f9361497af6f5244d44d6c09b2e66f2f6ee2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0d67f9361497af6f5244d44d6c09b2e66f2f6ee2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54a311b32085fd8a201f47993987cd3898519913","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54a311b32085fd8a201f47993987cd3898519913","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"771cd52d642b567fd401abeeeb73f6a03b7c25d1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/771cd52d642b567fd401abeeeb73f6a03b7c25d1"}]},{"sha":"2d4fe5cac27d329c45335fff21a76cc6f2887a42","node_id":"C_kwDOF83__NoAKDJkNGZlNWNhYzI3ZDMyOWM0NTMzNWZmZjIxYTc2Y2M2ZjI4ODdhNDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"8fadb57323efcca3b534843dc60d7d73ae896585","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8fadb57323efcca3b534843dc60d7d73ae896585"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2d4fe5cac27d329c45335fff21a76cc6f2887a42","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54a311b32085fd8a201f47993987cd3898519913","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54a311b32085fd8a201f47993987cd3898519913"}]},{"sha":"1a0c294006f0727c08a8c535d4c35ca9d3a11560","node_id":"C_kwDOF83__NoAKDFhMGMyOTQwMDZmMDcyN2MwOGE4YzUzNWQ0YzM1Y2E5ZDNhMTE1NjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"98758694e1b4f67766769904addeeda09118051e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/98758694e1b4f67766769904addeeda09118051e"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1a0c294006f0727c08a8c535d4c35ca9d3a11560","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2d4fe5cac27d329c45335fff21a76cc6f2887a42","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2d4fe5cac27d329c45335fff21a76cc6f2887a42"}]},{"sha":"5fd537309af26ec463652904bb9b4af194f053f9","node_id":"C_kwDOF83__NoAKDVmZDUzNzMwOWFmMjZlYzQ2MzY1MjkwNGJiOWI0YWYxOTRmMDUzZjk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"783b9b4e10c56fa33fa6b65be1fb5dd64ef4ad52","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/783b9b4e10c56fa33fa6b65be1fb5dd64ef4ad52"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5fd537309af26ec463652904bb9b4af194f053f9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5fd537309af26ec463652904bb9b4af194f053f9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1a0c294006f0727c08a8c535d4c35ca9d3a11560","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1a0c294006f0727c08a8c535d4c35ca9d3a11560"}]},{"sha":"5850a11ff295071daa92b2e0ae3e9351e555e22a","node_id":"C_kwDOF83__NoAKDU4NTBhMTFmZjI5NTA3MWRhYTkyYjJlMGFlM2U5MzUxZTU1NWUyMmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"8c71ecf787f5275b75447146d6e79ae612a2c183","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8c71ecf787f5275b75447146d6e79ae612a2c183"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5850a11ff295071daa92b2e0ae3e9351e555e22a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5fd537309af26ec463652904bb9b4af194f053f9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5fd537309af26ec463652904bb9b4af194f053f9"}]},{"sha":"f414411be9156696683ecf374478379ae1e65799","node_id":"C_kwDOF83__NoAKGY0MTQ0MTFiZTkxNTY2OTY2ODNlY2YzNzQ0NzgzNzlhZTFlNjU3OTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"d73a882c8f6f1b7f5ead65b5ec6f377810be5317","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d73a882c8f6f1b7f5ead65b5ec6f377810be5317"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f414411be9156696683ecf374478379ae1e65799","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f414411be9156696683ecf374478379ae1e65799","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5850a11ff295071daa92b2e0ae3e9351e555e22a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5850a11ff295071daa92b2e0ae3e9351e555e22a"}]},{"sha":"9494846e873fba740874ec7ecadce4a6d00f2321","node_id":"C_kwDOF83__NoAKDk0OTQ4NDZlODczZmJhNzQwODc0ZWM3ZWNhZGNlNGE2ZDAwZjIzMjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"90f6324360eb960205133c9824ba404cadbf5207","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/90f6324360eb960205133c9824ba404cadbf5207"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9494846e873fba740874ec7ecadce4a6d00f2321","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9494846e873fba740874ec7ecadce4a6d00f2321","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f414411be9156696683ecf374478379ae1e65799","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f414411be9156696683ecf374478379ae1e65799"}]},{"sha":"140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","node_id":"C_kwDOF83__NoAKDE0MGMzM2VjODI0OWE0YTFlZmUyZmZjOGJjYzNlNGI1Zjg0Y2JjNWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"d912a3b26e30a7ffa5d679ac528841905c31b982","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d912a3b26e30a7ffa5d679ac528841905c31b982"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9494846e873fba740874ec7ecadce4a6d00f2321","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9494846e873fba740874ec7ecadce4a6d00f2321"}]},{"sha":"965c832e10ac29e3c0f1b91fbb5f06891189f011","node_id":"C_kwDOF83__NoAKDk2NWM4MzJlMTBhYzI5ZTNjMGYxYjkxZmJiNWYwNjg5MTE4OWYwMTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"055491f8f5a4f7b6dba92bca653c2fe4a36e01a1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/055491f8f5a4f7b6dba92bca653c2fe4a36e01a1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/965c832e10ac29e3c0f1b91fbb5f06891189f011","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f"}]},{"sha":"33bab99045167f9b921bd150ec6b92a07cabbb68","node_id":"C_kwDOF83__NoAKDMzYmFiOTkwNDUxNjdmOWI5MjFiZDE1MGVjNmI5MmEwN2NhYmJiNjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"414bcaafd60db705603d60bdc727f6bd4dde4433","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/414bcaafd60db705603d60bdc727f6bd4dde4433"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/33bab99045167f9b921bd150ec6b92a07cabbb68","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"965c832e10ac29e3c0f1b91fbb5f06891189f011","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/965c832e10ac29e3c0f1b91fbb5f06891189f011"}]}] + +https +GET +api.github.com +None +/repositories/399376380/pulls/18/commits?per_page=100&page=2 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:48 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9daf800dcf9c6d95497d2e403eeb187fb9d988696065f13e7d5256015cbb7c67"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:59:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="prev", ; rel="first"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4671'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '329'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A21A:38D48F:7F2201E:7FC9D3B:661E70A3')] +[{"sha":"d53b9bd64685138bda5b058402f47aa23b2f4e1e","node_id":"C_kwDOF83__NoAKGQ1M2I5YmQ2NDY4NTEzOGJkYTViMDU4NDAyZjQ3YWEyM2IyZjRlMWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"0b3a284b618aba7b17669dc6146235846bceceec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b3a284b618aba7b17669dc6146235846bceceec"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d53b9bd64685138bda5b058402f47aa23b2f4e1e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"33bab99045167f9b921bd150ec6b92a07cabbb68","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/33bab99045167f9b921bd150ec6b92a07cabbb68"}]},{"sha":"989900e5eb2a5260f308b0b1818139704e5888ae","node_id":"C_kwDOF83__NoAKDk4OTkwMGU1ZWIyYTUyNjBmMzA4YjBiMTgxODEzOTcwNGU1ODg4YWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"7038be5b17b879c1212a5487c56c4cb7cca22d5c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7038be5b17b879c1212a5487c56c4cb7cca22d5c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/989900e5eb2a5260f308b0b1818139704e5888ae","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/989900e5eb2a5260f308b0b1818139704e5888ae","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d53b9bd64685138bda5b058402f47aa23b2f4e1e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d53b9bd64685138bda5b058402f47aa23b2f4e1e"}]},{"sha":"e11e6666b3cafc148568d7e58d46bcaf9e0f2143","node_id":"C_kwDOF83__NoAKGUxMWU2NjY2YjNjYWZjMTQ4NTY4ZDdlNThkNDZiY2FmOWUwZjIxNDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"bdcab15b193a509725860b74e6172db9c9e0442d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bdcab15b193a509725860b74e6172db9c9e0442d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"989900e5eb2a5260f308b0b1818139704e5888ae","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/989900e5eb2a5260f308b0b1818139704e5888ae"}]},{"sha":"f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","node_id":"C_kwDOF83__NoAKGY0YTM5Y2E2NDQyZTdkNzgzZDdkNTdkOGNkZGY5OGViZjkwY2MxNDg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"3b33e28e611043e355d0a046a9ec8f1ed60cde92","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3b33e28e611043e355d0a046a9ec8f1ed60cde92"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e11e6666b3cafc148568d7e58d46bcaf9e0f2143","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e11e6666b3cafc148568d7e58d46bcaf9e0f2143"}]},{"sha":"94c509c1d2433ff6733e6d5e555fd0f9af47667a","node_id":"C_kwDOF83__NoAKDk0YzUwOWMxZDI0MzNmZjY3MzNlNmQ1ZTU1NWZkMGY5YWY0NzY2N2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"faf236dc1d98b0c0e791036ffec66bd188269494","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/faf236dc1d98b0c0e791036ffec66bd188269494"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/94c509c1d2433ff6733e6d5e555fd0f9af47667a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148"}]},{"sha":"b1da2ff5d37ce752da86c15bd721b990f72d2204","node_id":"C_kwDOF83__NoAKGIxZGEyZmY1ZDM3Y2U3NTJkYTg2YzE1YmQ3MjFiOTkwZjcyZDIyMDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"494757ef627490593e82cb4e7f6441f313cd22b1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/494757ef627490593e82cb4e7f6441f313cd22b1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1da2ff5d37ce752da86c15bd721b990f72d2204","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"94c509c1d2433ff6733e6d5e555fd0f9af47667a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/94c509c1d2433ff6733e6d5e555fd0f9af47667a"}]},{"sha":"b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","node_id":"C_kwDOF83__NoAKGI5YTRhOTVhNzY2OWJiNjg4ZWFmOWM5OWQ3NDE2MTViZGViOWEzYmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"5d5c995d45b83a5223abbd798c13cc6eec188762","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5d5c995d45b83a5223abbd798c13cc6eec188762"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b1da2ff5d37ce752da86c15bd721b990f72d2204","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1da2ff5d37ce752da86c15bd721b990f72d2204"}]},{"sha":"7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","node_id":"C_kwDOF83__NoAKDdjMDlkZDcxYTVmOWVlYTYwNjVkMWJjYTI1NjNmZDBiYTI2Y2IzMWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"ce6e200389ac6b83ec810fa348f21da113ab39ad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ce6e200389ac6b83ec810fa348f21da113ab39ad"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be"}]},{"sha":"8138ac02f7370f2b3e0ba18eb326231f3dc25767","node_id":"C_kwDOF83__NoAKDgxMzhhYzAyZjczNzBmMmIzZTBiYTE4ZWIzMjYyMzFmM2RjMjU3Njc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7b370eb3d1ba22879377f043473d4a71704097a2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7b370eb3d1ba22879377f043473d4a71704097a2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8138ac02f7370f2b3e0ba18eb326231f3dc25767","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f"}]},{"sha":"4342dab36ead5f115ab89eb5d20d33b00afa67dc","node_id":"C_kwDOF83__NoAKDQzNDJkYWIzNmVhZDVmMTE1YWI4OWViNWQyMGQzM2IwMGFmYTY3ZGM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7173a5c3984e3511ad730752432cbdec0b21de35","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7173a5c3984e3511ad730752432cbdec0b21de35"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4342dab36ead5f115ab89eb5d20d33b00afa67dc","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8138ac02f7370f2b3e0ba18eb326231f3dc25767","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8138ac02f7370f2b3e0ba18eb326231f3dc25767"}]},{"sha":"a3a61e5788ec64eff9d219dd89a0e9168a21941f","node_id":"C_kwDOF83__NoAKGEzYTYxZTU3ODhlYzY0ZWZmOWQyMTlkZDg5YTBlOTE2OGEyMTk0MWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7ee0271301886bf533e5dbfe15c901528a4d669f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7ee0271301886bf533e5dbfe15c901528a4d669f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3a61e5788ec64eff9d219dd89a0e9168a21941f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4342dab36ead5f115ab89eb5d20d33b00afa67dc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4342dab36ead5f115ab89eb5d20d33b00afa67dc"}]},{"sha":"e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","node_id":"C_kwDOF83__NoAKGUzYTQ1MWI3NTJmZDg0M2U2OWE5ZjJjZDFjYmIwZGNjMDYwYmE0ZDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"26f2c4a159165b78eb6ff2080811ca2115476818","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/26f2c4a159165b78eb6ff2080811ca2115476818"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3a61e5788ec64eff9d219dd89a0e9168a21941f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3a61e5788ec64eff9d219dd89a0e9168a21941f"}]},{"sha":"0d5119e4905a0a36a535f2578ce96b41d687f63a","node_id":"C_kwDOF83__NoAKDBkNTExOWU0OTA1YTBhMzZhNTM1ZjI1NzhjZTk2YjQxZDY4N2Y2M2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"aac2bebe9d2ab5fc5f7b10be48b4716cb13297a0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/aac2bebe9d2ab5fc5f7b10be48b4716cb13297a0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0d5119e4905a0a36a535f2578ce96b41d687f63a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0"}]},{"sha":"26d5494b0ed51567d0f58fa3362caf3de1387fb4","node_id":"C_kwDOF83__NoAKDI2ZDU0OTRiMGVkNTE1NjdkMGY1OGZhMzM2MmNhZjNkZTEzODdmYjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"49b03bdae56c36c1daeabb793840f917af28de58","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/49b03bdae56c36c1daeabb793840f917af28de58"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/26d5494b0ed51567d0f58fa3362caf3de1387fb4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0d5119e4905a0a36a535f2578ce96b41d687f63a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0d5119e4905a0a36a535f2578ce96b41d687f63a"}]},{"sha":"c55f434953618d3ee909a82555a2c2e8fe31b8e4","node_id":"C_kwDOF83__NoAKGM1NWY0MzQ5NTM2MThkM2VlOTA5YTgyNTU1YTJjMmU4ZmUzMWI4ZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"fd665bea395e2acee2d44f7a4540bab6f911f9aa","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fd665bea395e2acee2d44f7a4540bab6f911f9aa"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c55f434953618d3ee909a82555a2c2e8fe31b8e4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"26d5494b0ed51567d0f58fa3362caf3de1387fb4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/26d5494b0ed51567d0f58fa3362caf3de1387fb4"}]},{"sha":"343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","node_id":"C_kwDOF83__NoAKDM0M2U1ZTMyNDhjYjFmM2E5MjlhZDVlZmVmZmJlMDEzN2Q1ZjRmYWQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"531aef925460e634a0ddbb4bc58295960a8f18e0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/531aef925460e634a0ddbb4bc58295960a8f18e0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c55f434953618d3ee909a82555a2c2e8fe31b8e4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c55f434953618d3ee909a82555a2c2e8fe31b8e4"}]},{"sha":"93e8596aa02ca43bb0a2f4679cb998b842585b99","node_id":"C_kwDOF83__NoAKDkzZTg1OTZhYTAyY2E0M2JiMGEyZjQ2NzljYjk5OGI4NDI1ODViOTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"0d20a85ba8eed6073b9bdb2d3e4e52a1919a9bf2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0d20a85ba8eed6073b9bdb2d3e4e52a1919a9bf2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93e8596aa02ca43bb0a2f4679cb998b842585b99","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad"}]},{"sha":"93dd83317c6f5c690ddab5f833e121a7aa7e9958","node_id":"C_kwDOF83__NoAKDkzZGQ4MzMxN2M2ZjVjNjkwZGRhYjVmODMzZTEyMWE3YWE3ZTk5NTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"d8417612b327676d69a2018e5b36901ebf8c8177","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d8417612b327676d69a2018e5b36901ebf8c8177"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93dd83317c6f5c690ddab5f833e121a7aa7e9958","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"93e8596aa02ca43bb0a2f4679cb998b842585b99","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93e8596aa02ca43bb0a2f4679cb998b842585b99"}]},{"sha":"7dde5a4c24bfee4440e1eb74d380b3ed7f988714","node_id":"C_kwDOF83__NoAKDdkZGU1YTRjMjRiZmVlNDQ0MGUxZWI3NGQzODBiM2VkN2Y5ODg3MTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"36cb87cda2ac8ecc784e5f665a1af9df07c30623","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/36cb87cda2ac8ecc784e5f665a1af9df07c30623"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"93dd83317c6f5c690ddab5f833e121a7aa7e9958","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93dd83317c6f5c690ddab5f833e121a7aa7e9958"}]},{"sha":"6b3eaceed1efbb6412cd414cf42c11b523d43b46","node_id":"C_kwDOF83__NoAKDZiM2VhY2VlZDFlZmJiNjQxMmNkNDE0Y2Y0MmMxMWI1MjNkNDNiNDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"88ff131e4015879f9679bb45e5ac3b927e0e2071","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/88ff131e4015879f9679bb45e5ac3b927e0e2071"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b3eaceed1efbb6412cd414cf42c11b523d43b46","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7dde5a4c24bfee4440e1eb74d380b3ed7f988714","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dde5a4c24bfee4440e1eb74d380b3ed7f988714"}]},{"sha":"a42445818e0e4087aeca09673ee6977864fe01ef","node_id":"C_kwDOF83__NoAKGE0MjQ0NTgxOGUwZTQwODdhZWNhMDk2NzNlZTY5Nzc4NjRmZTAxZWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"7854f0fe838743b86eaaf5d8f03836b38a18f743","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7854f0fe838743b86eaaf5d8f03836b38a18f743"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a42445818e0e4087aeca09673ee6977864fe01ef","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a42445818e0e4087aeca09673ee6977864fe01ef","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6b3eaceed1efbb6412cd414cf42c11b523d43b46","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b3eaceed1efbb6412cd414cf42c11b523d43b46"}]},{"sha":"2e92add26d5813078727a617884b9a3ae30e3de9","node_id":"C_kwDOF83__NoAKDJlOTJhZGQyNmQ1ODEzMDc4NzI3YTYxNzg4NGI5YTNhZTMwZTNkZTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"84c9d817f10cc927b04b64ea54a0534cf46d9f37","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/84c9d817f10cc927b04b64ea54a0534cf46d9f37"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2e92add26d5813078727a617884b9a3ae30e3de9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e92add26d5813078727a617884b9a3ae30e3de9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a42445818e0e4087aeca09673ee6977864fe01ef","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a42445818e0e4087aeca09673ee6977864fe01ef"}]},{"sha":"c3338ae6aa615c78f5507d315c046d9e82bbce0d","node_id":"C_kwDOF83__NoAKGMzMzM4YWU2YWE2MTVjNzhmNTUwN2QzMTVjMDQ2ZDllODJiYmNlMGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"8f5c543505020a19984f1b3c27803420a1ab4db4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8f5c543505020a19984f1b3c27803420a1ab4db4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c3338ae6aa615c78f5507d315c046d9e82bbce0d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2e92add26d5813078727a617884b9a3ae30e3de9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e92add26d5813078727a617884b9a3ae30e3de9"}]},{"sha":"fda1d3579f11ce0f851c037b0ac50fb641d79f11","node_id":"C_kwDOF83__NoAKGZkYTFkMzU3OWYxMWNlMGY4NTFjMDM3YjBhYzUwZmI2NDFkNzlmMTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"aa5acbc52f19da9cc5e7c423ec8056ac0069b36b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/aa5acbc52f19da9cc5e7c423ec8056ac0069b36b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fda1d3579f11ce0f851c037b0ac50fb641d79f11","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c3338ae6aa615c78f5507d315c046d9e82bbce0d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c3338ae6aa615c78f5507d315c046d9e82bbce0d"}]},{"sha":"c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","node_id":"C_kwDOF83__NoAKGM0MWQ2OWMwODAwZjdjNWFhMWM3YzVmMGZhNjAwZjk0ZjNlM2JhNDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"b0680713892d36ec0e70b81eb1983f23687d6bb6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b0680713892d36ec0e70b81eb1983f23687d6bb6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fda1d3579f11ce0f851c037b0ac50fb641d79f11","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fda1d3579f11ce0f851c037b0ac50fb641d79f11"}]},{"sha":"5de437bf09655fb67fa7f0ddecf969f2635db32e","node_id":"C_kwDOF83__NoAKDVkZTQzN2JmMDk2NTVmYjY3ZmE3ZjBkZGVjZjk2OWYyNjM1ZGIzMmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"93b445e1aa39c94b425869cb073cd1f548f02652","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/93b445e1aa39c94b425869cb073cd1f548f02652"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5de437bf09655fb67fa7f0ddecf969f2635db32e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41"}]},{"sha":"70d4a3979fca7c6983d73f89249f1a072b6939f3","node_id":"C_kwDOF83__NoAKDcwZDRhMzk3OWZjYTdjNjk4M2Q3M2Y4OTI0OWYxYTA3MmI2OTM5ZjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"b63b69b729e943f7fb61615e2444f9d2d67a3749","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b63b69b729e943f7fb61615e2444f9d2d67a3749"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/70d4a3979fca7c6983d73f89249f1a072b6939f3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5de437bf09655fb67fa7f0ddecf969f2635db32e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5de437bf09655fb67fa7f0ddecf969f2635db32e"}]},{"sha":"5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","node_id":"C_kwDOF83__NoAKDUzOTJlNjg2MzBmOGMxZjNlNGIyOTVlYTgwODMxYzZhOWNhYTRkYzI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"0c7a5093ceec2d16578988ff066d687796356fd8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0c7a5093ceec2d16578988ff066d687796356fd8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"70d4a3979fca7c6983d73f89249f1a072b6939f3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/70d4a3979fca7c6983d73f89249f1a072b6939f3"}]},{"sha":"66ead66f52fd286f124c32aa3884ae1ad36f3963","node_id":"C_kwDOF83__NoAKDY2ZWFkNjZmNTJmZDI4NmYxMjRjMzJhYTM4ODRhZTFhZDM2ZjM5NjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"cdf1aa4a83b6535a283870123b95d902ac55135d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/cdf1aa4a83b6535a283870123b95d902ac55135d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/66ead66f52fd286f124c32aa3884ae1ad36f3963","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2"}]},{"sha":"b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","node_id":"C_kwDOF83__NoAKGIxZThjOGM3ZmEyMjhkM2IzYmExZjBiNDlkNWFiZjYzNTFhYzgxM2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"372da138c6830d65620ae9f01ade021c385a8b55","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/372da138c6830d65620ae9f01ade021c385a8b55"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"66ead66f52fd286f124c32aa3884ae1ad36f3963","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/66ead66f52fd286f124c32aa3884ae1ad36f3963"}]},{"sha":"3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","node_id":"C_kwDOF83__NoAKDNiNTE5NWFhODBhNzNmZjE3ZWJmMGE0YjUzNTUwY2VmYjcwNTZiYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"0e63cb7730405421e952d8d865db85b8f637fabe","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0e63cb7730405421e952d8d865db85b8f637fabe"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a"}]},{"sha":"4d570c74cab565cd7e2b6139e5a57f92b7b886be","node_id":"C_kwDOF83__NoAKDRkNTcwYzc0Y2FiNTY1Y2Q3ZTJiNjEzOWU1YTU3ZjkyYjdiODg2YmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"ee704a8f97195f8ca95775a9223794c9a107ea79","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ee704a8f97195f8ca95775a9223794c9a107ea79"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4d570c74cab565cd7e2b6139e5a57f92b7b886be","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9"}]},{"sha":"e21f41004058e91d8dbb3caff061a097ea008911","node_id":"C_kwDOF83__NoAKGUyMWY0MTAwNDA1OGU5MWQ4ZGJiM2NhZmYwNjFhMDk3ZWEwMDg5MTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"45dd732b0501bfce418a2a17fa678bfe3f475e7d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/45dd732b0501bfce418a2a17fa678bfe3f475e7d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e21f41004058e91d8dbb3caff061a097ea008911","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e21f41004058e91d8dbb3caff061a097ea008911","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4d570c74cab565cd7e2b6139e5a57f92b7b886be","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4d570c74cab565cd7e2b6139e5a57f92b7b886be"}]},{"sha":"1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","node_id":"C_kwDOF83__NoAKDE1NTlmZTcxMjk1Y2EzNmRjYzZmYTNlN2FiN2JiZmQ4OGE4MWQ4NmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"4cd94077797f1d89c924cce427088827d9a2c01d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4cd94077797f1d89c924cce427088827d9a2c01d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e21f41004058e91d8dbb3caff061a097ea008911","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e21f41004058e91d8dbb3caff061a097ea008911"}]},{"sha":"b10758b37d2f7b8054f84e716323ef01113bdc5a","node_id":"C_kwDOF83__NoAKGIxMDc1OGIzN2QyZjdiODA1NGY4NGU3MTYzMjNlZjAxMTEzYmRjNWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"940c014b837d2d1bb87000f1f83bc939bbfccac2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/940c014b837d2d1bb87000f1f83bc939bbfccac2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b10758b37d2f7b8054f84e716323ef01113bdc5a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c"}]},{"sha":"ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","node_id":"C_kwDOF83__NoAKGVhNmFjYjFhMTE4OGIwMWRkMWViYmJkNjE2OWE1Yjg0NWQ1ZWNkZDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"0b36fcbd31c164b1f6c77ba79647caec104fae68","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b36fcbd31c164b1f6c77ba79647caec104fae68"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b10758b37d2f7b8054f84e716323ef01113bdc5a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b10758b37d2f7b8054f84e716323ef01113bdc5a"}]},{"sha":"0e617968795f452376ad263cbe1a5e4af8780302","node_id":"C_kwDOF83__NoAKDBlNjE3OTY4Nzk1ZjQ1MjM3NmFkMjYzY2JlMWE1ZTRhZjg3ODAzMDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"d5788b203ca5cf6d33969afdb0fb85e46d6c96ab","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d5788b203ca5cf6d33969afdb0fb85e46d6c96ab"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0e617968795f452376ad263cbe1a5e4af8780302","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e617968795f452376ad263cbe1a5e4af8780302","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0"}]},{"sha":"273452e7560cb359d5f856bf0020c2527af8d40f","node_id":"C_kwDOF83__NoAKDI3MzQ1MmU3NTYwY2IzNTlkNWY4NTZiZjAwMjBjMjUyN2FmOGQ0MGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"65610af9a75b6eaac4da5da637d5489f2e82bbba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/65610af9a75b6eaac4da5da637d5489f2e82bbba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/273452e7560cb359d5f856bf0020c2527af8d40f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/273452e7560cb359d5f856bf0020c2527af8d40f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0e617968795f452376ad263cbe1a5e4af8780302","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e617968795f452376ad263cbe1a5e4af8780302"}]},{"sha":"7694958540750fe64b9271a4beb0c7d929bf7dff","node_id":"C_kwDOF83__NoAKDc2OTQ5NTg1NDA3NTBmZTY0YjkyNzFhNGJlYjBjN2Q5MjliZjdkZmY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"82d37f6bd6bebdc16b3379661bc0d902cb432ee7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/82d37f6bd6bebdc16b3379661bc0d902cb432ee7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7694958540750fe64b9271a4beb0c7d929bf7dff","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"273452e7560cb359d5f856bf0020c2527af8d40f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/273452e7560cb359d5f856bf0020c2527af8d40f"}]},{"sha":"b37681e6cd269af256fbc9834ad8258389ae0a3b","node_id":"C_kwDOF83__NoAKGIzNzY4MWU2Y2QyNjlhZjI1NmZiYzk4MzRhZDgyNTgzODlhZTBhM2I","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"ce22b471d5d2ed59deb1bde24fb3bd9c03272f74","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ce22b471d5d2ed59deb1bde24fb3bd9c03272f74"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b37681e6cd269af256fbc9834ad8258389ae0a3b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7694958540750fe64b9271a4beb0c7d929bf7dff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7694958540750fe64b9271a4beb0c7d929bf7dff"}]},{"sha":"37d7bdc1af3512d1d8752e4319c103392a133d03","node_id":"C_kwDOF83__NoAKDM3ZDdiZGMxYWYzNTEyZDFkODc1MmU0MzE5YzEwMzM5MmExMzNkMDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"135c2f826bc4c2011cf9cb123daeafef4214a0d8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/135c2f826bc4c2011cf9cb123daeafef4214a0d8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/37d7bdc1af3512d1d8752e4319c103392a133d03","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b37681e6cd269af256fbc9834ad8258389ae0a3b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b37681e6cd269af256fbc9834ad8258389ae0a3b"}]},{"sha":"02440e727939b320077b2552cd1e2819122762e6","node_id":"C_kwDOF83__NoAKDAyNDQwZTcyNzkzOWIzMjAwNzdiMjU1MmNkMWUyODE5MTIyNzYyZTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"205cb3059480e23ed0cd18e76d0224c4a417f539","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/205cb3059480e23ed0cd18e76d0224c4a417f539"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/02440e727939b320077b2552cd1e2819122762e6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/02440e727939b320077b2552cd1e2819122762e6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"37d7bdc1af3512d1d8752e4319c103392a133d03","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/37d7bdc1af3512d1d8752e4319c103392a133d03"}]},{"sha":"cf8a20fe025a120a38033327b45213f75a30ebaf","node_id":"C_kwDOF83__NoAKGNmOGEyMGZlMDI1YTEyMGEzODAzMzMyN2I0NTIxM2Y3NWEzMGViYWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"486c6fb99b1cc8dc4c6f5767d126eb13aad872ed","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/486c6fb99b1cc8dc4c6f5767d126eb13aad872ed"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/cf8a20fe025a120a38033327b45213f75a30ebaf","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"02440e727939b320077b2552cd1e2819122762e6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/02440e727939b320077b2552cd1e2819122762e6"}]},{"sha":"2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","node_id":"C_kwDOF83__NoAKDJlN2UzZTg5MTBiMzM0ZGM3ZWQwOTJhYzU3ZjVlYjk4YzhkMmRhMzA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"958bfe4b42cefb9a05a286b6aff678800b41cf77","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/958bfe4b42cefb9a05a286b6aff678800b41cf77"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"cf8a20fe025a120a38033327b45213f75a30ebaf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/cf8a20fe025a120a38033327b45213f75a30ebaf"}]},{"sha":"72c450fe9fad9b732c752fda13eae5358150ac6c","node_id":"C_kwDOF83__NoAKDcyYzQ1MGZlOWZhZDliNzMyYzc1MmZkYTEzZWFlNTM1ODE1MGFjNmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"e3240da5e3d8830ec75464d54f4086055aca6818","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e3240da5e3d8830ec75464d54f4086055aca6818"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/72c450fe9fad9b732c752fda13eae5358150ac6c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30"}]},{"sha":"4918fb6875bad67ed11a790b5c1bfe92a832fe2a","node_id":"C_kwDOF83__NoAKDQ5MThmYjY4NzViYWQ2N2VkMTFhNzkwYjVjMWJmZTkyYTgzMmZlMmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"e2e914419a2c8ebc16b720e183468948811227e5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e2e914419a2c8ebc16b720e183468948811227e5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"72c450fe9fad9b732c752fda13eae5358150ac6c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/72c450fe9fad9b732c752fda13eae5358150ac6c"}]},{"sha":"4f1c4bcbe523e52af825a241984c35a846aba5f2","node_id":"C_kwDOF83__NoAKDRmMWM0YmNiZTUyM2U1MmFmODI1YTI0MTk4NGMzNWE4NDZhYmE1ZjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"b610371ead83324bbd41bc45905e5d5ee2ea0d80","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b610371ead83324bbd41bc45905e5d5ee2ea0d80"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4f1c4bcbe523e52af825a241984c35a846aba5f2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4918fb6875bad67ed11a790b5c1bfe92a832fe2a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4918fb6875bad67ed11a790b5c1bfe92a832fe2a"}]},{"sha":"c4d3429387987cbe0740b97c3bd9e3c3053776d2","node_id":"C_kwDOF83__NoAKGM0ZDM0MjkzODc5ODdjYmUwNzQwYjk3YzNiZDllM2MzMDUzNzc2ZDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"b690b9f5aeb55205b0df418da83842949248ec7a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b690b9f5aeb55205b0df418da83842949248ec7a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4d3429387987cbe0740b97c3bd9e3c3053776d2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4f1c4bcbe523e52af825a241984c35a846aba5f2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4f1c4bcbe523e52af825a241984c35a846aba5f2"}]},{"sha":"3d0781365fb37582e3aad27b77ba897069211812","node_id":"C_kwDOF83__NoAKDNkMDc4MTM2NWZiMzc1ODJlM2FhZDI3Yjc3YmE4OTcwNjkyMTE4MTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"9e95a4cab838c91298db8ed0df971d4b5843c636","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9e95a4cab838c91298db8ed0df971d4b5843c636"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3d0781365fb37582e3aad27b77ba897069211812","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d0781365fb37582e3aad27b77ba897069211812","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c4d3429387987cbe0740b97c3bd9e3c3053776d2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4d3429387987cbe0740b97c3bd9e3c3053776d2"}]},{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","node_id":"C_kwDOF83__NoAKDY5NWFkN2I0MzczMDRiYjZiMGM4MWQ3YTJjNzIzNGE4NTVmMGM2OTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"8670c2f3a9c099d66d518293f9f09e08ea3d0c96","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8670c2f3a9c099d66d518293f9f09e08ea3d0c96"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3d0781365fb37582e3aad27b77ba897069211812","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d0781365fb37582e3aad27b77ba897069211812"}]},{"sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","node_id":"C_kwDOF83__NoAKGZkOTliZDE0NmU4N2EwMGViOTBlY2NlZjEyZjQ4N2VjYzhmNGM0OTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"message":"Dummy commit","tree":{"sha":"54236e4e6361e96958234eabe1a7f1bbf7059991","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/54236e4e6361e96958234eabe1a7f1bbf7059991"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fd99bd146e87a00eb90eccef12f487ecc8f4c496","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:48 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"605ebf0d38083b84c1732d6cef6260cd77aa153701accfce8836625329e27afe"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4670'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '330'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A220:2B2A64:7E953EB:7F3C990:661E70A4')] +{"state":"pending","statuses":[],"sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","total_count":0,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:48 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a3091b25b4ae4fcae28bf762e157048620f87224780b5daa40c7fefe7a87f4ec"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:13 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4669'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '331'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A22A:C1461:860D8E7:86B6696:661E70A4')] +{"sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","node_id":"C_kwDOF83__NoAKGZkOTliZDE0NmU4N2EwMGViOTBlY2NlZjEyZjQ4N2VjYzhmNGM0OTY","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fd99bd146e87a00eb90eccef12f487ecc8f4c496","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"tree":{"sha":"54236e4e6361e96958234eabe1a7f1bbf7059991","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/54236e4e6361e96958234eabe1a7f1bbf7059991"},"message":"Dummy commit","parents":[{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/18/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:48 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"61397afa7342406bf3c6f2cc14b26f50d80d3e21cd2e6dbf39ff270685891c30"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4668'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '332'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A22C:15F874:841CFFF:84C5D37:661E70A4')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058815985","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18#issuecomment-2058815985","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","id":2058815985,"node_id":"IC_kwDOF83__M56twnx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-16T10:59:15Z","updated_at":"2024-04-16T10:59:15Z","author_association":"MEMBER","body":"This PR contains many commits (151 >= 150) and will not be processed. Please ensure you have selected the correct target branch and consider squashing unnecessary commits.\nDr15Jones, iarspider, makortel, smuzaffar, to re-enable processing of this PR, you can write `+commit-count` in a comment. Thanks.","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058815985/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058816831","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18#issuecomment-2058816831","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","id":2058816831,"node_id":"IC_kwDOF83__M56tw0_","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-16T10:59:44Z","updated_at":"2024-04-16T10:59:44Z","author_association":"MEMBER","body":"+commit-count","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058816831/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:49 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5587da14efe7fa0ed35a1a0bd57f0661cb01f6692a23772d3fd6c260a74ecec0"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:13 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4667'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '333'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A234:1AAB48:809FDE6:8147B04:661E70A4')] +{"sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","node_id":"C_kwDOF83__NoAKGZkOTliZDE0NmU4N2EwMGViOTBlY2NlZjEyZjQ4N2VjYzhmNGM0OTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"message":"Dummy commit","tree":{"sha":"54236e4e6361e96958234eabe1a7f1bbf7059991","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/54236e4e6361e96958234eabe1a7f1bbf7059991"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fd99bd146e87a00eb90eccef12f487ecc8f4c496","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"2d1716bcbd3ac0cab354a05a40a454cb35643c41","filename":"Alignment/CommonAlignmentProducer/python/FakeAlignmentSource_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -9,3 +9,4 @@\n produceTrackerSurfaceDeformation = cms.bool(True),\n appendToDataLabel = cms.string('')\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:49 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"50b3ae1b0b54cfc3fcfe32f13f6789e2ef9a4b774f79995985add6458ec41522"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:12 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4666'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '334'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A240:3A6FB9:84E7D4E:858F318:661E70A5')] +{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","node_id":"C_kwDOF83__NoAKDY5NWFkN2I0MzczMDRiYjZiMGM4MWQ3YTJjNzIzNGE4NTVmMGM2OTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"8670c2f3a9c099d66d518293f9f09e08ea3d0c96","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8670c2f3a9c099d66d518293f9f09e08ea3d0c96"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3d0781365fb37582e3aad27b77ba897069211812","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d0781365fb37582e3aad27b77ba897069211812"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"38a9225bda00da0f45d5ca8ab21ae7afadf0e38a","filename":"Alignment/CommonAlignmentProducer/python/fakeAlignmentProducer_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/695ad7b437304bb6b0c81d7a2c7234a855f0c693/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/695ad7b437304bb6b0c81d7a2c7234a855f0c693/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py?ref=695ad7b437304bb6b0c81d7a2c7234a855f0c693","patch":"@@ -5,3 +5,4 @@\n )\n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:49 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"0cb1fa15b99da365fb67c6c03ebc257c6d4ea241af1d0f6561d4f0bfe2f6dce1"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:12 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4665'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '335'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A24C:2B24A5:F62A06:F706F3:661E70A5')] +{"sha":"3d0781365fb37582e3aad27b77ba897069211812","node_id":"C_kwDOF83__NoAKDNkMDc4MTM2NWZiMzc1ODJlM2FhZDI3Yjc3YmE4OTcwNjkyMTE4MTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"9e95a4cab838c91298db8ed0df971d4b5843c636","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9e95a4cab838c91298db8ed0df971d4b5843c636"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3d0781365fb37582e3aad27b77ba897069211812","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d0781365fb37582e3aad27b77ba897069211812","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c4d3429387987cbe0740b97c3bd9e3c3053776d2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4d3429387987cbe0740b97c3bd9e3c3053776d2"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"99f3383f32bac03f478218b5c53966f9ec5f2c26","filename":"Alignment/CommonAlignmentProducer/python/DBConfiguration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/3d0781365fb37582e3aad27b77ba897069211812/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/3d0781365fb37582e3aad27b77ba897069211812/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py?ref=3d0781365fb37582e3aad27b77ba897069211812","patch":"@@ -33,3 +33,4 @@\n )\n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:49 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cc24c1d49270004db26432f36dd2da8356dd9c40f11002a2355a07b20ff030fb"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:12 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4664'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '336'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A254:769E0:803458D:80DB671:661E70A5')] +{"sha":"c4d3429387987cbe0740b97c3bd9e3c3053776d2","node_id":"C_kwDOF83__NoAKGM0ZDM0MjkzODc5ODdjYmUwNzQwYjk3YzNiZDllM2MzMDUzNzc2ZDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"b690b9f5aeb55205b0df418da83842949248ec7a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b690b9f5aeb55205b0df418da83842949248ec7a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4d3429387987cbe0740b97c3bd9e3c3053776d2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4f1c4bcbe523e52af825a241984c35a846aba5f2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4f1c4bcbe523e52af825a241984c35a846aba5f2"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"7efc3c8be0a1220d356495ddbb11d5ab24921f62","filename":"Alignment/CommonAlignmentProducer/python/customizeLSNumberFilterForRelVals.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/c4d3429387987cbe0740b97c3bd9e3c3053776d2/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/c4d3429387987cbe0740b97c3bd9e3c3053776d2/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py?ref=c4d3429387987cbe0740b97c3bd9e3c3053776d2","patch":"@@ -32,3 +32,4 @@ def lowerHitsPerStructure(process):\n 'skipemptycons'\n )\n return process\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"05320f11fd31bfe52f8d2e954330600d82802c17488b519ac6a66f08f0cc630c"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:12 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4663'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '337'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A25A:39550C:7E4C0BF:7EF32D2:661E70A5')] +{"sha":"4f1c4bcbe523e52af825a241984c35a846aba5f2","node_id":"C_kwDOF83__NoAKDRmMWM0YmNiZTUyM2U1MmFmODI1YTI0MTk4NGMzNWE4NDZhYmE1ZjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"b610371ead83324bbd41bc45905e5d5ee2ea0d80","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b610371ead83324bbd41bc45905e5d5ee2ea0d80"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4f1c4bcbe523e52af825a241984c35a846aba5f2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4918fb6875bad67ed11a790b5c1bfe92a832fe2a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4918fb6875bad67ed11a790b5c1bfe92a832fe2a"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"f0b6960be9fd73052c1a73c32edf45e4c6d816ef","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/4f1c4bcbe523e52af825a241984c35a846aba5f2/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/4f1c4bcbe523e52af825a241984c35a846aba5f2/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py?ref=4f1c4bcbe523e52af825a241984c35a846aba5f2","patch":"@@ -5,3 +5,4 @@\n vertices = cms.InputTag(\"offlinePrimaryVertices\"),\n vertexIndex = cms.uint32(0),\n filter = cms.bool(False))\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d4a1f636104928625788c0082894e70e14cbb010278de5ba6d30ddf04da24002"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:12 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4662'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '338'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A26A:121DD6:842EC9F:84D67AB:661E70A6')] +{"sha":"4918fb6875bad67ed11a790b5c1bfe92a832fe2a","node_id":"C_kwDOF83__NoAKDQ5MThmYjY4NzViYWQ2N2VkMTFhNzkwYjVjMWJmZTkyYTgzMmZlMmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"e2e914419a2c8ebc16b720e183468948811227e5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e2e914419a2c8ebc16b720e183468948811227e5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"72c450fe9fad9b732c752fda13eae5358150ac6c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/72c450fe9fad9b732c752fda13eae5358150ac6c"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"5cd06205a6bb4174c50304aa4343871572503e1e","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/4918fb6875bad67ed11a790b5c1bfe92a832fe2a/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/4918fb6875bad67ed11a790b5c1bfe92a832fe2a/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py?ref=4918fb6875bad67ed11a790b5c1bfe92a832fe2a","patch":"@@ -2,3 +2,4 @@\n \n from Alignment.CommonAlignmentProducer.alignmentTrackFromVertexCompositeCandidateSelectorModule_cfi import alignmentTrackFromVertexCompositeCandidateSelectorModule\n AlignmentTracksFromVertexCompositeCandidateSelector = alignmentTrackFromVertexCompositeCandidateSelectorModule.clone()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"78e442c4c7a3d67f5a35e32be38b7e0417156401de135362c9121d7adb9052c1"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:12 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4661'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '339'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A272:38D48F:7F2427B:7FCBFDC:661E70A6')] +{"sha":"72c450fe9fad9b732c752fda13eae5358150ac6c","node_id":"C_kwDOF83__NoAKDcyYzQ1MGZlOWZhZDliNzMyYzc1MmZkYTEzZWFlNTM1ODE1MGFjNmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"e3240da5e3d8830ec75464d54f4086055aca6818","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e3240da5e3d8830ec75464d54f4086055aca6818"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/72c450fe9fad9b732c752fda13eae5358150ac6c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"6f57ca13d86fe929af57b4425beaa3e9b1359029","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTrackSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/72c450fe9fad9b732c752fda13eae5358150ac6c/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/72c450fe9fad9b732c752fda13eae5358150ac6c/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py?ref=72c450fe9fad9b732c752fda13eae5358150ac6c","patch":"@@ -120,3 +120,4 @@\n )\n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9f3d322e31b55bc99b8b1dcc7403b51600db19d9675371e0ec4589290ed68cc2"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:12 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4660'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '340'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CEC2:3A2467:99BFD17:9A80878:661E70A6')] +{"sha":"2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","node_id":"C_kwDOF83__NoAKDJlN2UzZTg5MTBiMzM0ZGM3ZWQwOTJhYzU3ZjVlYjk4YzhkMmRhMzA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"958bfe4b42cefb9a05a286b6aff678800b41cf77","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/958bfe4b42cefb9a05a286b6aff678800b41cf77"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"cf8a20fe025a120a38033327b45213f75a30ebaf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/cf8a20fe025a120a38033327b45213f75a30ebaf"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"4143f9d9ec58863e84f7725d3721fa7fef4a158d","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py?ref=2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","patch":"@@ -91,3 +91,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:51 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"41d03d55897f84dea7fff290e63079908f29fa56868ae10e063d7c4b75a0ca49"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:11 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4659'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '341'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CECC:3A2467:99C0095:9A80C0C:661E70A7')] +{"sha":"cf8a20fe025a120a38033327b45213f75a30ebaf","node_id":"C_kwDOF83__NoAKGNmOGEyMGZlMDI1YTEyMGEzODAzMzMyN2I0NTIxM2Y3NWEzMGViYWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"486c6fb99b1cc8dc4c6f5767d126eb13aad872ed","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/486c6fb99b1cc8dc4c6f5767d126eb13aad872ed"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/cf8a20fe025a120a38033327b45213f75a30ebaf","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"02440e727939b320077b2552cd1e2819122762e6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/02440e727939b320077b2552cd1e2819122762e6"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"8a212b2ed5c0c0c3b8892798e7b36cc1b7073a53","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducerAsAnalyzer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/cf8a20fe025a120a38033327b45213f75a30ebaf/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/cf8a20fe025a120a38033327b45213f75a30ebaf/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py?ref=cf8a20fe025a120a38033327b45213f75a30ebaf","patch":"@@ -88,3 +88,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:51 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7e63b9bb7f27b107ac07fcfc0101538ca481a4a9a9ecc3de7ee1a0cd400536f9"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:11 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4658'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '342'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CED6:3A2467:99C03CC:9A80F4D:661E70A7')] +{"sha":"02440e727939b320077b2552cd1e2819122762e6","node_id":"C_kwDOF83__NoAKDAyNDQwZTcyNzkzOWIzMjAwNzdiMjU1MmNkMWUyODE5MTIyNzYyZTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"205cb3059480e23ed0cd18e76d0224c4a417f539","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/205cb3059480e23ed0cd18e76d0224c4a417f539"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/02440e727939b320077b2552cd1e2819122762e6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/02440e727939b320077b2552cd1e2819122762e6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"37d7bdc1af3512d1d8752e4319c103392a133d03","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/37d7bdc1af3512d1d8752e4319c103392a133d03"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ba9b7eaf9365feb77dafb85924e3bf161ecc6076","filename":"Alignment/CommonAlignmentProducer/python/AlignmentMuonSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/02440e727939b320077b2552cd1e2819122762e6/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/02440e727939b320077b2552cd1e2819122762e6/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py?ref=02440e727939b320077b2552cd1e2819122762e6","patch":"@@ -44,3 +44,4 @@\n minMassPair = cms.double(89.0),\n maxMassPair = cms.double(90.0)\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:51 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"196e294d190f79608529ba2c0158d32b1d3d734dceae724b663d7b3359b6b732"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:11 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4657'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '343'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CEDA:3A2467:99C06B0:9A81243:661E70A7')] +{"sha":"37d7bdc1af3512d1d8752e4319c103392a133d03","node_id":"C_kwDOF83__NoAKDM3ZDdiZGMxYWYzNTEyZDFkODc1MmU0MzE5YzEwMzM5MmExMzNkMDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"135c2f826bc4c2011cf9cb123daeafef4214a0d8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/135c2f826bc4c2011cf9cb123daeafef4214a0d8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/37d7bdc1af3512d1d8752e4319c103392a133d03","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b37681e6cd269af256fbc9834ad8258389ae0a3b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b37681e6cd269af256fbc9834ad8258389ae0a3b"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ed5ef5ddf63e60c775b9f8fb45d77a2fff73fba3","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHGCombined_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/37d7bdc1af3512d1d8752e4319c103392a133d03/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/37d7bdc1af3512d1d8752e4319c103392a133d03/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py?ref=37d7bdc1af3512d1d8752e4319c103392a133d03","patch":"@@ -90,3 +90,4 @@\n SiPixelAliPedeAlignmentProducerHGCombined*\n SiPixelAliDQMModuleHGCombined*\n dqmEnvSiPixelAliHGCombined)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:51 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"58be3f90bcd8398f5d392b55e360528f5f64b09ea80d8f32b89ee4f61b5efaad"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:11 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4656'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '344'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CEE2:20E30:7D6EA99:7E17871:661E70A7')] +{"sha":"b37681e6cd269af256fbc9834ad8258389ae0a3b","node_id":"C_kwDOF83__NoAKGIzNzY4MWU2Y2QyNjlhZjI1NmZiYzk4MzRhZDgyNTgzODlhZTBhM2I","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"ce22b471d5d2ed59deb1bde24fb3bd9c03272f74","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ce22b471d5d2ed59deb1bde24fb3bd9c03272f74"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b37681e6cd269af256fbc9834ad8258389ae0a3b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7694958540750fe64b9271a4beb0c7d929bf7dff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7694958540750fe64b9271a4beb0c7d929bf7dff"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"78eb11a43a7ea82a94992397608d64942d5bb145","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHG_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b37681e6cd269af256fbc9834ad8258389ae0a3b/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b37681e6cd269af256fbc9834ad8258389ae0a3b/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py?ref=b37681e6cd269af256fbc9834ad8258389ae0a3b","patch":"@@ -78,3 +78,4 @@\n SiPixelAliPedeAlignmentProducerHG*\n SiPixelAliDQMModuleHG*\n dqmEnvSiPixelAliHG)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:52 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7732a2f3b7f9a47c694254b8684de61b17aeaa31acf37b77cc6209a94b7859e7"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:11 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4655'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '345'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CEEA:2B2A64:7E98585:7F3FB46:661E70A8')] +{"sha":"7694958540750fe64b9271a4beb0c7d929bf7dff","node_id":"C_kwDOF83__NoAKDc2OTQ5NTg1NDA3NTBmZTY0YjkyNzFhNGJlYjBjN2Q5MjliZjdkZmY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"82d37f6bd6bebdc16b3379661bc0d902cb432ee7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/82d37f6bd6bebdc16b3379661bc0d902cb432ee7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7694958540750fe64b9271a4beb0c7d929bf7dff","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"273452e7560cb359d5f856bf0020c2527af8d40f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/273452e7560cb359d5f856bf0020c2527af8d40f"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"158b8847e1c548f23cb1b99c85e89edbd5cc3978","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/7694958540750fe64b9271a4beb0c7d929bf7dff/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/7694958540750fe64b9271a4beb0c7d929bf7dff/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py?ref=7694958540750fe64b9271a4beb0c7d929bf7dff","patch":"@@ -61,3 +61,4 @@\n SiPixelAliPedeAlignmentProducer*\n SiPixelAliDQMModule*\n dqmEnvSiPixelAli)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:52 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"0ba003128d6083fce608915218a6ac157851df8a330eceb0ac849a3adafc64b9"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:11 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4654'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '346'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CEFA:1294DB:99664F1:9A2701F:661E70A8')] +{"sha":"273452e7560cb359d5f856bf0020c2527af8d40f","node_id":"C_kwDOF83__NoAKDI3MzQ1MmU3NTYwY2IzNTlkNWY4NTZiZjAwMjBjMjUyN2FmOGQ0MGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"65610af9a75b6eaac4da5da637d5489f2e82bbba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/65610af9a75b6eaac4da5da637d5489f2e82bbba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/273452e7560cb359d5f856bf0020c2527af8d40f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/273452e7560cb359d5f856bf0020c2527af8d40f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0e617968795f452376ad263cbe1a5e4af8780302","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e617968795f452376ad263cbe1a5e4af8780302"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"920b3ea769172d92355979895b4c6c15adfd643a","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/273452e7560cb359d5f856bf0020c2527af8d40f/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/273452e7560cb359d5f856bf0020c2527af8d40f/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py?ref=273452e7560cb359d5f856bf0020c2527af8d40f","patch":"@@ -55,3 +55,4 @@\n \n ALCAHARVESTSiPixelAli = cms.Sequence(SiPixelAliMilleFileExtractor*\n SiPixelAliPedeAlignmentProducer)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:52 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"44d9f87f78b79d72a5adea1d60da587085874cadd255a6a7e359d38bd54e7080"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:11 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4653'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '347'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CEFE:2B2A64:7E98C45:7F4020E:661E70A8')] +{"sha":"0e617968795f452376ad263cbe1a5e4af8780302","node_id":"C_kwDOF83__NoAKDBlNjE3OTY4Nzk1ZjQ1MjM3NmFkMjYzY2JlMWE1ZTRhZjg3ODAzMDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"d5788b203ca5cf6d33969afdb0fb85e46d6c96ab","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d5788b203ca5cf6d33969afdb0fb85e46d6c96ab"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0e617968795f452376ad263cbe1a5e4af8780302","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e617968795f452376ad263cbe1a5e4af8780302","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ad3df1e1e69c4ab367457b7483f9880b5f23c525","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/0e617968795f452376ad263cbe1a5e4af8780302/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/0e617968795f452376ad263cbe1a5e4af8780302/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py?ref=0e617968795f452376ad263cbe1a5e4af8780302","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlZMuMuPA = copy.deepcopy(OutALCARECOTkAlZMuMuPA_noDrop)\n OutALCARECOTkAlZMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:53 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"542d9664538db08230d10bb42769840bf522e8ef60b97e0a547e5a5e9a6cc0fc"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:11 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4652'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '348'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF06:117B54:7E05464:7EACF67:661E70A8')] +{"sha":"ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","node_id":"C_kwDOF83__NoAKGVhNmFjYjFhMTE4OGIwMWRkMWViYmJkNjE2OWE1Yjg0NWQ1ZWNkZDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"0b36fcbd31c164b1f6c77ba79647caec104fae68","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b36fcbd31c164b1f6c77ba79647caec104fae68"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b10758b37d2f7b8054f84e716323ef01113bdc5a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b10758b37d2f7b8054f84e716323ef01113bdc5a"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"788c071104caa4f263abcb2a37137aa34cf094e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py?ref=ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuPAGoodMuons\n +ALCARECOTkAlZMuMuPA\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:53 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"87c398783242f08343dc92d1f866bbcdd273edd0485ca9c37a0aee6c4be2e58e"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4651'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '349'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF08:2B2A64:7E99381:7F40955:661E70A9')] +{"sha":"b10758b37d2f7b8054f84e716323ef01113bdc5a","node_id":"C_kwDOF83__NoAKGIxMDc1OGIzN2QyZjdiODA1NGY4NGU3MTYzMjNlZjAxMTEzYmRjNWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"940c014b837d2d1bb87000f1f83bc939bbfccac2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/940c014b837d2d1bb87000f1f83bc939bbfccac2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b10758b37d2f7b8054f84e716323ef01113bdc5a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ae380fe2fb275ff268af5b7a244b25b562934ffc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b10758b37d2f7b8054f84e716323ef01113bdc5a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b10758b37d2f7b8054f84e716323ef01113bdc5a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py?ref=b10758b37d2f7b8054f84e716323ef01113bdc5a","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMu = OutALCARECOTkAlZMuMu_noDrop.clone()\n OutALCARECOTkAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:53 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1fbe1b70ed494c3e3ea6f21a355d7167c6ba6f63badd6a6460ce56561b9a0843"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4650'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '350'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF10:2B2A64:7E99649:7F40C28:661E70A9')] +{"sha":"1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","node_id":"C_kwDOF83__NoAKDE1NTlmZTcxMjk1Y2EzNmRjYzZmYTNlN2FiN2JiZmQ4OGE4MWQ4NmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"4cd94077797f1d89c924cce427088827d9a2c01d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4cd94077797f1d89c924cce427088827d9a2c01d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e21f41004058e91d8dbb3caff061a097ea008911","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e21f41004058e91d8dbb3caff061a097ea008911"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"2e1d642fc7bf7bb735da62936f015b7c959ee265","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py?ref=1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMuHI = OutALCARECOTkAlZMuMuHI_noDrop.clone()\n OutALCARECOTkAlZMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:53 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2a6b40589821d3e70e703ba927dbb9cd5355901612b6e4638d375225e0811029"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4649'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '351'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF1C:39550C:7E4EFC7:7EF61CE:661E70A9')] +{"sha":"e21f41004058e91d8dbb3caff061a097ea008911","node_id":"C_kwDOF83__NoAKGUyMWY0MTAwNDA1OGU5MWQ4ZGJiM2NhZmYwNjFhMDk3ZWEwMDg5MTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"45dd732b0501bfce418a2a17fa678bfe3f475e7d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/45dd732b0501bfce418a2a17fa678bfe3f475e7d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e21f41004058e91d8dbb3caff061a097ea008911","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e21f41004058e91d8dbb3caff061a097ea008911","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4d570c74cab565cd7e2b6139e5a57f92b7b886be","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4d570c74cab565cd7e2b6139e5a57f92b7b886be"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"b10490d6d7bd2c4412c315a1d13d4b6deb3b9cb9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/e21f41004058e91d8dbb3caff061a097ea008911/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/e21f41004058e91d8dbb3caff061a097ea008911/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py?ref=e21f41004058e91d8dbb3caff061a097ea008911","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuHIGoodMuons\n +ALCARECOTkAlZMuMuHI\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:54 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"462590e7ab95cc1e4af77736f4cbb23929f7a0af24601651b7345fbd406a5876"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4648'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '352'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF22:39550C:7E4F3A1:7EF65C7:661E70A9')] +{"sha":"4d570c74cab565cd7e2b6139e5a57f92b7b886be","node_id":"C_kwDOF83__NoAKDRkNTcwYzc0Y2FiNTY1Y2Q3ZTJiNjEzOWU1YTU3ZjkyYjdiODg2YmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"ee704a8f97195f8ca95775a9223794c9a107ea79","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ee704a8f97195f8ca95775a9223794c9a107ea79"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4d570c74cab565cd7e2b6139e5a57f92b7b886be","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"f4410fb589cfa4fd1805f5bb58e6c938f34d2e28","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/4d570c74cab565cd7e2b6139e5a57f92b7b886be/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/4d570c74cab565cd7e2b6139e5a57f92b7b886be/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py?ref=4d570c74cab565cd7e2b6139e5a57f92b7b886be","patch":"@@ -62,3 +62,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlZMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:54 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"55d8f98d0d54a96da5f72a5211f117e24ddc8c403ed6797be37626517d7d2b08"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4647'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '353'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF30:15F874:8421A5D:84CA7B1:661E70AA')] +{"sha":"3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","node_id":"C_kwDOF83__NoAKDNiNTE5NWFhODBhNzNmZjE3ZWJmMGE0YjUzNTUwY2VmYjcwNTZiYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"0e63cb7730405421e952d8d865db85b8f637fabe","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0e63cb7730405421e952d8d865db85b8f637fabe"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"4984db89d155cc9e42edfeab63704f9b6c2e06cd","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py?ref=3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","patch":"@@ -41,3 +41,4 @@\n OutALCARECOTkAlWMuNu = OutALCARECOTkAlWMuNu_noDrop.clone()\n OutALCARECOTkAlWMuNu.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:54 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6b33222a2800677c669705ece67b1621e3d03009a25f3fe3029146de753b3e3f"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4646'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '354'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF36:3A6FB9:84EC580:8593B8D:661E70AA')] +{"sha":"b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","node_id":"C_kwDOF83__NoAKGIxZThjOGM3ZmEyMjhkM2IzYmExZjBiNDlkNWFiZjYzNTFhYzgxM2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"372da138c6830d65620ae9f01ade021c385a8b55","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/372da138c6830d65620ae9f01ade021c385a8b55"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"66ead66f52fd286f124c32aa3884ae1ad36f3963","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/66ead66f52fd286f124c32aa3884ae1ad36f3963"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"12d45b9f6946d0cd8f2c3b801f0fb064fadaa4b2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py?ref=b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","patch":"@@ -59,3 +59,4 @@\n ALCARECOTkAlWMuNu.TwoBodyDecaySelector.acoplanarDistance = 1 ##radian\n \n seqALCARECOTkAlWMuNu = cms.Sequence(ALCARECOTkAlWMuNuHLT+ALCARECOTkAlWMuNuDCSFilter+ALCARECOTkAlWMuNuGoodMuons+ALCARECOTkAlWMuNuRelCombIsoMuons+ALCARECOTkAlWMuNu)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:55 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d4d4735a8d93d7c54247d960111e05fd96a4ebce9e8e1388f631bfeb67f1ebfb"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4645'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '355'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF40:29BB20:7D54AD8:7DFC1B3:661E70AA')] +{"sha":"66ead66f52fd286f124c32aa3884ae1ad36f3963","node_id":"C_kwDOF83__NoAKDY2ZWFkNjZmNTJmZDI4NmYxMjRjMzJhYTM4ODRhZTFhZDM2ZjM5NjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"cdf1aa4a83b6535a283870123b95d902ac55135d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/cdf1aa4a83b6535a283870123b95d902ac55135d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/66ead66f52fd286f124c32aa3884ae1ad36f3963","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"3ff6614f26c23998b935ecec43b33cea1982dfc2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/66ead66f52fd286f124c32aa3884ae1ad36f3963/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/66ead66f52fd286f124c32aa3884ae1ad36f3963/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py?ref=66ead66f52fd286f124c32aa3884ae1ad36f3963","patch":"@@ -50,3 +50,4 @@\n \n OutALCARECOTkAlV0s = OutALCARECOTkAlV0s_noDrop.clone()\n OutALCARECOTkAlV0s.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:55 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"988f57a1e9ade97c5b2429b5475ec1f379977e13ed7e9d42a69560a2f9fc9bea"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4644'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '356'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF42:C1461:8613068:86BBE65:661E70AB')] +{"sha":"5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","node_id":"C_kwDOF83__NoAKDUzOTJlNjg2MzBmOGMxZjNlNGIyOTVlYTgwODMxYzZhOWNhYTRkYzI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"0c7a5093ceec2d16578988ff066d687796356fd8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0c7a5093ceec2d16578988ff066d687796356fd8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"70d4a3979fca7c6983d73f89249f1a072b6939f3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/70d4a3979fca7c6983d73f89249f1a072b6939f3"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"1e6869c43e1bada2c14fa7b4b0944b4dfbac38e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py?ref=5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","patch":"@@ -38,3 +38,4 @@\n ##################################################################\n seqALCARECOTkAlK0s = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sKShortEventSelector + ALCARECOTkAlKShortTracks)\n seqALCARECOTkAlLambdas = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sLambdaEventSelector + ALCARECOTkAlLambdaTracks)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:55 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"eaa21b2cdba2761ca50f0040da8980d369dae3f783e6a4291bd1fc7df8a22c8d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:09 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4643'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '357'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF4C:337464:8163AAE:820C910:661E70AB')] +{"sha":"70d4a3979fca7c6983d73f89249f1a072b6939f3","node_id":"C_kwDOF83__NoAKDcwZDRhMzk3OWZjYTdjNjk4M2Q3M2Y4OTI0OWYxYTA3MmI2OTM5ZjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"b63b69b729e943f7fb61615e2444f9d2d67a3749","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b63b69b729e943f7fb61615e2444f9d2d67a3749"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/70d4a3979fca7c6983d73f89249f1a072b6939f3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5de437bf09655fb67fa7f0ddecf969f2635db32e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5de437bf09655fb67fa7f0ddecf969f2635db32e"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"caa0a6885bbf08aa3c233cf65a80b29e4a5c78e2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/70d4a3979fca7c6983d73f89249f1a072b6939f3/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/70d4a3979fca7c6983d73f89249f1a072b6939f3/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py?ref=70d4a3979fca7c6983d73f89249f1a072b6939f3","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlUpsilonMuMuPA = copy.deepcopy(OutALCARECOTkAlUpsilonMuMuPA_noDrop)\n OutALCARECOTkAlUpsilonMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:55 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d792498339ac0054cd706bab92ca74900cd7058fe1974da1f15c0ab49ffae056"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:09 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4642'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '358'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF58:20E30:7D7185C:7E1A666:661E70AB')] +{"sha":"5de437bf09655fb67fa7f0ddecf969f2635db32e","node_id":"C_kwDOF83__NoAKDVkZTQzN2JmMDk2NTVmYjY3ZmE3ZjBkZGVjZjk2OWYyNjM1ZGIzMmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"93b445e1aa39c94b425869cb073cd1f548f02652","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/93b445e1aa39c94b425869cb073cd1f548f02652"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5de437bf09655fb67fa7f0ddecf969f2635db32e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"52398e4ccae91588670d8017e1b455925d57e42b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/5de437bf09655fb67fa7f0ddecf969f2635db32e/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/5de437bf09655fb67fa7f0ddecf969f2635db32e/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py?ref=5de437bf09655fb67fa7f0ddecf969f2635db32e","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuPAGoodMuons\n +ALCARECOTkAlUpsilonMuMuPA\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:55 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"f5811060ffc3e7316aef925ca7ccabd73454b1cc56a8fb9fdc77d521ef866444"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:09 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4641'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '359'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF66:1294DB:9969270:9A29DDA:661E70AB')] +{"sha":"c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","node_id":"C_kwDOF83__NoAKGM0MWQ2OWMwODAwZjdjNWFhMWM3YzVmMGZhNjAwZjk0ZjNlM2JhNDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"b0680713892d36ec0e70b81eb1983f23687d6bb6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b0680713892d36ec0e70b81eb1983f23687d6bb6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fda1d3579f11ce0f851c037b0ac50fb641d79f11","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fda1d3579f11ce0f851c037b0ac50fb641d79f11"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"a0ad5327c3312489af64708dfee132c72c45b4be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py?ref=c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMu = OutALCARECOTkAlUpsilonMuMu_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:56 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"717fa3049207ef01809a753b3114d08d48f023b9e986a8be0a91f0a4273f5a64"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:09 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4640'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '360'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF76:2B24A5:F67F8A:F75C9A:661E70AC')] +{"sha":"fda1d3579f11ce0f851c037b0ac50fb641d79f11","node_id":"C_kwDOF83__NoAKGZkYTFkMzU3OWYxMWNlMGY4NTFjMDM3YjBhYzUwZmI2NDFkNzlmMTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"aa5acbc52f19da9cc5e7c423ec8056ac0069b36b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/aa5acbc52f19da9cc5e7c423ec8056ac0069b36b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fda1d3579f11ce0f851c037b0ac50fb641d79f11","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c3338ae6aa615c78f5507d315c046d9e82bbce0d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c3338ae6aa615c78f5507d315c046d9e82bbce0d"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"15faac5d2bf408166454d118ec3d33b7afc165da","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fda1d3579f11ce0f851c037b0ac50fb641d79f11/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fda1d3579f11ce0f851c037b0ac50fb641d79f11/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py?ref=fda1d3579f11ce0f851c037b0ac50fb641d79f11","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMuHI = OutALCARECOTkAlUpsilonMuMuHI_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:56 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cc5d0416650d3934d9197d8c37679eb351639bf3de33aac59a260be9e03be610"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:09 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4639'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '361'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF7A:2F5B58:819EEC0:8247BD8:661E70AC')] +{"sha":"c3338ae6aa615c78f5507d315c046d9e82bbce0d","node_id":"C_kwDOF83__NoAKGMzMzM4YWU2YWE2MTVjNzhmNTUwN2QzMTVjMDQ2ZDllODJiYmNlMGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"8f5c543505020a19984f1b3c27803420a1ab4db4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8f5c543505020a19984f1b3c27803420a1ab4db4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c3338ae6aa615c78f5507d315c046d9e82bbce0d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2e92add26d5813078727a617884b9a3ae30e3de9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e92add26d5813078727a617884b9a3ae30e3de9"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"a37326e8e5e180955b0497ede6f5b149284ce7ba","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/c3338ae6aa615c78f5507d315c046d9e82bbce0d/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/c3338ae6aa615c78f5507d315c046d9e82bbce0d/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py?ref=c3338ae6aa615c78f5507d315c046d9e82bbce0d","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuHIGoodMuons\n +ALCARECOTkAlUpsilonMuMuHI\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:56 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"edbe9ca2472f3ad4c27459c5133c3dc4659b3c10bfac0170fd6788eae6dcc9c8"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:09 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4638'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '362'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF84:1AAB48:80A6092:814DE02:661E70AC')] +{"sha":"2e92add26d5813078727a617884b9a3ae30e3de9","node_id":"C_kwDOF83__NoAKDJlOTJhZGQyNmQ1ODEzMDc4NzI3YTYxNzg4NGI5YTNhZTMwZTNkZTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"84c9d817f10cc927b04b64ea54a0534cf46d9f37","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/84c9d817f10cc927b04b64ea54a0534cf46d9f37"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2e92add26d5813078727a617884b9a3ae30e3de9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e92add26d5813078727a617884b9a3ae30e3de9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a42445818e0e4087aeca09673ee6977864fe01ef","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a42445818e0e4087aeca09673ee6977864fe01ef"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"1099c00ffe243c7be34319a5d6e89139052ce70b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2e92add26d5813078727a617884b9a3ae30e3de9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2e92add26d5813078727a617884b9a3ae30e3de9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py?ref=2e92add26d5813078727a617884b9a3ae30e3de9","patch":"@@ -64,3 +64,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlUpsilonMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:56 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"85d604d8f1c0c872b62634cd84299f5d057aad610a10aff0c79927000c3adc3e"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:09 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4637'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '363'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF8C:15F874:8423C00:84CC995:661E70AC')] +{"sha":"a42445818e0e4087aeca09673ee6977864fe01ef","node_id":"C_kwDOF83__NoAKGE0MjQ0NTgxOGUwZTQwODdhZWNhMDk2NzNlZTY5Nzc4NjRmZTAxZWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"7854f0fe838743b86eaaf5d8f03836b38a18f743","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7854f0fe838743b86eaaf5d8f03836b38a18f743"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a42445818e0e4087aeca09673ee6977864fe01ef","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a42445818e0e4087aeca09673ee6977864fe01ef","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6b3eaceed1efbb6412cd414cf42c11b523d43b46","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b3eaceed1efbb6412cd414cf42c11b523d43b46"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"db2d480f19e16b06a2baadfdf8e6d45fd4f558be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/a42445818e0e4087aeca09673ee6977864fe01ef/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/a42445818e0e4087aeca09673ee6977864fe01ef/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py?ref=a42445818e0e4087aeca09673ee6977864fe01ef","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedPA = copy.deepcopy(OutALCARECOTkAlMuonIsolatedPA_noDrop)\n OutALCARECOTkAlMuonIsolatedPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:57 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"8c5635ca501381352b3f6d304b4dc818efa6bf3064ac674cd800be47fbfd3e6c"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:08 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4636'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '364'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF98:180869:811070D:81B7C17:661E70AD')] +{"sha":"6b3eaceed1efbb6412cd414cf42c11b523d43b46","node_id":"C_kwDOF83__NoAKDZiM2VhY2VlZDFlZmJiNjQxMmNkNDE0Y2Y0MmMxMWI1MjNkNDNiNDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"88ff131e4015879f9679bb45e5ac3b927e0e2071","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/88ff131e4015879f9679bb45e5ac3b927e0e2071"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b3eaceed1efbb6412cd414cf42c11b523d43b46","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7dde5a4c24bfee4440e1eb74d380b3ed7f988714","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dde5a4c24bfee4440e1eb74d380b3ed7f988714"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ad25e41b012b8d51b886d841e629c58bb1523164","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/6b3eaceed1efbb6412cd414cf42c11b523d43b46/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/6b3eaceed1efbb6412cd414cf42c11b523d43b46/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py?ref=6b3eaceed1efbb6412cd414cf42c11b523d43b46","patch":"@@ -44,3 +44,4 @@\n seqALCARECOTkAlMuonIsolatedPA = cms.Sequence(ALCARECOTkAlMuonIsolatedPAHLT\n +ALCARECOTkAlMuonIsolatedPADCSFilter\n +ALCARECOTkAlMuonIsolatedPA)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:57 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cc0e4943123a5a4a5ae5c21440e7e9cdd184b671c53bd0bd524541f464aa8bf1"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:08 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4635'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '365'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CF9C:117B54:7E08C8F:7EB07CA:661E70AD')] +{"sha":"7dde5a4c24bfee4440e1eb74d380b3ed7f988714","node_id":"C_kwDOF83__NoAKDdkZGU1YTRjMjRiZmVlNDQ0MGUxZWI3NGQzODBiM2VkN2Y5ODg3MTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"36cb87cda2ac8ecc784e5f665a1af9df07c30623","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/36cb87cda2ac8ecc784e5f665a1af9df07c30623"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"93dd83317c6f5c690ddab5f833e121a7aa7e9958","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93dd83317c6f5c690ddab5f833e121a7aa7e9958"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"64e4be787a63b8d84bba977606a0eeee9229746a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/7dde5a4c24bfee4440e1eb74d380b3ed7f988714/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/7dde5a4c24bfee4440e1eb74d380b3ed7f988714/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py?ref=7dde5a4c24bfee4440e1eb74d380b3ed7f988714","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolated = OutALCARECOTkAlMuonIsolated_noDrop.clone()\n OutALCARECOTkAlMuonIsolated.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:57 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"85ab3f187a05c54956d38c7b1d46feeaec22ab02d44083579a1eb2dbd1ca1d11"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:08 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4634'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '366'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFA6:180869:8110D1F:81B8230:661E70AD')] +{"sha":"93dd83317c6f5c690ddab5f833e121a7aa7e9958","node_id":"C_kwDOF83__NoAKDkzZGQ4MzMxN2M2ZjVjNjkwZGRhYjVmODMzZTEyMWE3YWE3ZTk5NTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"d8417612b327676d69a2018e5b36901ebf8c8177","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d8417612b327676d69a2018e5b36901ebf8c8177"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93dd83317c6f5c690ddab5f833e121a7aa7e9958","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"93e8596aa02ca43bb0a2f4679cb998b842585b99","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93e8596aa02ca43bb0a2f4679cb998b842585b99"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"812ecac0085dee52a0d36009b321ca87c721e60f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/93dd83317c6f5c690ddab5f833e121a7aa7e9958/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/93dd83317c6f5c690ddab5f833e121a7aa7e9958/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py?ref=93dd83317c6f5c690ddab5f833e121a7aa7e9958","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedHI = OutALCARECOTkAlMuonIsolatedHI_noDrop.clone()\n OutALCARECOTkAlMuonIsolatedHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:58 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7234152205936ac5d609456ac65697da338cf0d0bfe28f274ded42c60cac548d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:08 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4633'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '367'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFA8:3A2467:99C5599:9A86187:661E70AD')] +{"sha":"93e8596aa02ca43bb0a2f4679cb998b842585b99","node_id":"C_kwDOF83__NoAKDkzZTg1OTZhYTAyY2E0M2JiMGEyZjQ2NzljYjk5OGI4NDI1ODViOTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"0d20a85ba8eed6073b9bdb2d3e4e52a1919a9bf2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0d20a85ba8eed6073b9bdb2d3e4e52a1919a9bf2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93e8596aa02ca43bb0a2f4679cb998b842585b99","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"b1bcdf384d62646da81f4fe38aa40898644516d6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/93e8596aa02ca43bb0a2f4679cb998b842585b99/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/93e8596aa02ca43bb0a2f4679cb998b842585b99/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py?ref=93e8596aa02ca43bb0a2f4679cb998b842585b99","patch":"@@ -28,3 +28,4 @@\n +ALCARECOTkAlMuonIsolatedHIDCSFilter\n +ALCARECOTkAlMuonIsolatedHI\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:58 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7d852d2025416dd54a779ff7ccf4b9b17376e13a914500023463263b9a3b3a33"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:08 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4632'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '368'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFAA:337464:8165F06:820ED7E:661E70AE')] +{"sha":"343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","node_id":"C_kwDOF83__NoAKDM0M2U1ZTMyNDhjYjFmM2E5MjlhZDVlZmVmZmJlMDEzN2Q1ZjRmYWQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"531aef925460e634a0ddbb4bc58295960a8f18e0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/531aef925460e634a0ddbb4bc58295960a8f18e0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c55f434953618d3ee909a82555a2c2e8fe31b8e4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c55f434953618d3ee909a82555a2c2e8fe31b8e4"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"150d629df9c4243d8a03ea4640cd17a7db77e7fe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py?ref=343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","patch":"@@ -62,3 +62,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMuonIsolated, etaMin = -4, etaMax = 4)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:58 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"55eae1b84421085a21f57cf7f29f71d0d051d8bf005e58e4329c42f8859e90f9"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:08 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4631'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '369'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFB2:3A2467:99C5D4F:9A8692B:661E70AE')] +{"sha":"c55f434953618d3ee909a82555a2c2e8fe31b8e4","node_id":"C_kwDOF83__NoAKGM1NWY0MzQ5NTM2MThkM2VlOTA5YTgyNTU1YTJjMmU4ZmUzMWI4ZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"fd665bea395e2acee2d44f7a4540bab6f911f9aa","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fd665bea395e2acee2d44f7a4540bab6f911f9aa"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c55f434953618d3ee909a82555a2c2e8fe31b8e4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"26d5494b0ed51567d0f58fa3362caf3de1387fb4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/26d5494b0ed51567d0f58fa3362caf3de1387fb4"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"f12db1ad9d5d5208c8723fe2564d5810a0b13d3a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Skimmed_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/c55f434953618d3ee909a82555a2c2e8fe31b8e4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/c55f434953618d3ee909a82555a2c2e8fe31b8e4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py?ref=c55f434953618d3ee909a82555a2c2e8fe31b8e4","patch":"@@ -141,3 +141,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:58 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"47ff3bcfbfd5b97c486ef1b700754c9d88eda4922da20f75c63e7ef563041539"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:08 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4630'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '370'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFB8:3A6FB9:84EFC13:8597245:661E70AE')] +{"sha":"26d5494b0ed51567d0f58fa3362caf3de1387fb4","node_id":"C_kwDOF83__NoAKDI2ZDU0OTRiMGVkNTE1NjdkMGY1OGZhMzM2MmNhZjNkZTEzODdmYjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"49b03bdae56c36c1daeabb793840f917af28de58","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/49b03bdae56c36c1daeabb793840f917af28de58"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/26d5494b0ed51567d0f58fa3362caf3de1387fb4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0d5119e4905a0a36a535f2578ce96b41d687f63a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0d5119e4905a0a36a535f2578ce96b41d687f63a"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"bbe624309fad5e7d0069c975b58e42f91a772daf","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/26d5494b0ed51567d0f58fa3362caf3de1387fb4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/26d5494b0ed51567d0f58fa3362caf3de1387fb4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py?ref=26d5494b0ed51567d0f58fa3362caf3de1387fb4","patch":"@@ -41,3 +41,4 @@\n \n OutALCARECOTkAlMinBias = OutALCARECOTkAlMinBias_noDrop.clone()\n OutALCARECOTkAlMinBias.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:59 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ac5f629a54d145be40f319fa0d3d216e09312b20db73dffbf5736578ae78dc33"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4629'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '371'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFC6:117B54:7E0A08F:7EB1BDD:661E70AE')] +{"sha":"0d5119e4905a0a36a535f2578ce96b41d687f63a","node_id":"C_kwDOF83__NoAKDBkNTExOWU0OTA1YTBhMzZhNTM1ZjI1NzhjZTk2YjQxZDY4N2Y2M2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"aac2bebe9d2ab5fc5f7b10be48b4716cb13297a0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/aac2bebe9d2ab5fc5f7b10be48b4716cb13297a0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0d5119e4905a0a36a535f2578ce96b41d687f63a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ec3ea92010c2560fdc8dec05d1b8da649d587a39","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/0d5119e4905a0a36a535f2578ce96b41d687f63a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/0d5119e4905a0a36a535f2578ce96b41d687f63a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py?ref=0d5119e4905a0a36a535f2578ce96b41d687f63a","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlMinBiasHI = copy.deepcopy(OutALCARECOTkAlMinBiasHI_noDrop)\n OutALCARECOTkAlMinBiasHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:59 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"117eab09ee52662ac6dd8e199b5b65a906b9d7f90a553abf2df814c9b95123c4"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4628'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '372'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFD2:2B24A5:F6A85A:F78599:661E70AF')] +{"sha":"e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","node_id":"C_kwDOF83__NoAKGUzYTQ1MWI3NTJmZDg0M2U2OWE5ZjJjZDFjYmIwZGNjMDYwYmE0ZDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"26f2c4a159165b78eb6ff2080811ca2115476818","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/26f2c4a159165b78eb6ff2080811ca2115476818"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3a61e5788ec64eff9d219dd89a0e9168a21941f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3a61e5788ec64eff9d219dd89a0e9168a21941f"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"1c627ee4220e2bdc2a8c1590b9c32a5ac7a80af6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py?ref=e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","patch":"@@ -17,3 +17,4 @@\n #ALCARECOTkAlMinBiasHI.pMin = 3.0 ##GeV\n \n seqALCARECOTkAlMinBiasHI = cms.Sequence(ALCARECOTkAlMinBiasHIHLT+ALCARECOTkAlMinBiasHIDCSFilter+ALCARECOTkAlMinBiasHI)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:59 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9a6f8de8f1c791e6a2281968fcf64cbdfc15f7929e0b5685f46a928d1c750e03"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4627'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '373'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFD8:127A77:82CF7D5:8377229:661E70AF')] +{"sha":"a3a61e5788ec64eff9d219dd89a0e9168a21941f","node_id":"C_kwDOF83__NoAKGEzYTYxZTU3ODhlYzY0ZWZmOWQyMTlkZDg5YTBlOTE2OGEyMTk0MWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7ee0271301886bf533e5dbfe15c901528a4d669f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7ee0271301886bf533e5dbfe15c901528a4d669f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3a61e5788ec64eff9d219dd89a0e9168a21941f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4342dab36ead5f115ab89eb5d20d33b00afa67dc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4342dab36ead5f115ab89eb5d20d33b00afa67dc"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"23de0a29ee8829cc2cb3cac9b62d69ef93fd016d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/a3a61e5788ec64eff9d219dd89a0e9168a21941f/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/a3a61e5788ec64eff9d219dd89a0e9168a21941f/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py?ref=a3a61e5788ec64eff9d219dd89a0e9168a21941f","patch":"@@ -70,3 +70,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMinBias, etaMin = -4, etaMax = 4)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:35:59 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a77a978ed270ad0966fc3941f47e6c0bbcb9165ee5cf06c1e43f45f3d3ddd685"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4626'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '374'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFE2:14E79:7B14E30:7BBDE4F:661E70AF')] +{"sha":"4342dab36ead5f115ab89eb5d20d33b00afa67dc","node_id":"C_kwDOF83__NoAKDQzNDJkYWIzNmVhZDVmMTE1YWI4OWViNWQyMGQzM2IwMGFmYTY3ZGM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7173a5c3984e3511ad730752432cbdec0b21de35","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7173a5c3984e3511ad730752432cbdec0b21de35"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4342dab36ead5f115ab89eb5d20d33b00afa67dc","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8138ac02f7370f2b3e0ba18eb326231f3dc25767","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8138ac02f7370f2b3e0ba18eb326231f3dc25767"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ca5d3981af1d54cccfa4c91f6b18a723f8c2335c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/4342dab36ead5f115ab89eb5d20d33b00afa67dc/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/4342dab36ead5f115ab89eb5d20d33b00afa67dc/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py?ref=4342dab36ead5f115ab89eb5d20d33b00afa67dc","patch":"@@ -13,3 +13,4 @@\n import copy\n OutALCARECOTkAlLAS = copy.deepcopy(OutALCARECOTkAlLAS_noDrop)\n OutALCARECOTkAlLAS.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:00 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a3bf1d1826913bb4a019112c59cf20c7fd91512e624b2a2d699c51af3e2cd988"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4625'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '375'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFEE:337464:8167755:82105D2:661E70AF')] +{"sha":"8138ac02f7370f2b3e0ba18eb326231f3dc25767","node_id":"C_kwDOF83__NoAKDgxMzhhYzAyZjczNzBmMmIzZTBiYTE4ZWIzMjYyMzFmM2RjMjU3Njc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7b370eb3d1ba22879377f043473d4a71704097a2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7b370eb3d1ba22879377f043473d4a71704097a2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8138ac02f7370f2b3e0ba18eb326231f3dc25767","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"37ad0535fa3f082ef3085a7cba35cc3a101a3395","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/8138ac02f7370f2b3e0ba18eb326231f3dc25767/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/8138ac02f7370f2b3e0ba18eb326231f3dc25767/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py?ref=8138ac02f7370f2b3e0ba18eb326231f3dc25767","patch":"@@ -23,3 +23,4 @@\n )\n \n seqALCARECOTkAlLAS = cms.Sequence(ALCARECOTkAlLASsiStripDigis+ALCARECOTkAlLASEventFilter+ALCARECOTkAlLAST0Producer)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:00 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"23bd9b00ec483323f60984503fde55d19fb28ec8f45b2e71895249a2e44fed8b"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4624'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '376'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFF4:38D48F:7F2BEB1:7FD3C73:661E70B0')] +{"sha":"7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","node_id":"C_kwDOF83__NoAKDdjMDlkZDcxYTVmOWVlYTYwNjVkMWJjYTI1NjNmZDBiYTI2Y2IzMWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"ce6e200389ac6b83ec810fa348f21da113ab39ad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ce6e200389ac6b83ec810fa348f21da113ab39ad"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"3a74b9aea426eaf71bfb189a1ef031ca7a19ed68","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py?ref=7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMu = OutALCARECOTkAlJpsiMuMu_noDrop.clone()\n OutALCARECOTkAlJpsiMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:00 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2cced1be142b37c1990e959fd9a205c21352c3938e2a34e67dcd22961d47410c"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4623'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '377'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CFFC:39550C:7E545D0:7EFB84E:661E70B0')] +{"sha":"b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","node_id":"C_kwDOF83__NoAKGI5YTRhOTVhNzY2OWJiNjg4ZWFmOWM5OWQ3NDE2MTViZGViOWEzYmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"5d5c995d45b83a5223abbd798c13cc6eec188762","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5d5c995d45b83a5223abbd798c13cc6eec188762"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b1da2ff5d37ce752da86c15bd721b990f72d2204","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1da2ff5d37ce752da86c15bd721b990f72d2204"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"740618cab38b590946602344d8f81a4b844ce12b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py?ref=b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMuHI = OutALCARECOTkAlJpsiMuMuHI_noDrop.clone()\n OutALCARECOTkAlJpsiMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:00 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5664b9856e3e470f3b961842a85b563a56f4d3c34edf83190dff72e7bcee42e3"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4622'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '378'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF36:3A6FB9:84F154E:8598B9A:661E70B0')] +{"sha":"b1da2ff5d37ce752da86c15bd721b990f72d2204","node_id":"C_kwDOF83__NoAKGIxZGEyZmY1ZDM3Y2U3NTJkYTg2YzE1YmQ3MjFiOTkwZjcyZDIyMDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"494757ef627490593e82cb4e7f6441f313cd22b1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/494757ef627490593e82cb4e7f6441f313cd22b1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1da2ff5d37ce752da86c15bd721b990f72d2204","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"94c509c1d2433ff6733e6d5e555fd0f9af47667a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/94c509c1d2433ff6733e6d5e555fd0f9af47667a"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"bf859b1017bc91f4fa4cc69f0a3f462e40db7adc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b1da2ff5d37ce752da86c15bd721b990f72d2204/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b1da2ff5d37ce752da86c15bd721b990f72d2204/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py?ref=b1da2ff5d37ce752da86c15bd721b990f72d2204","patch":"@@ -22,3 +22,4 @@\n +ALCARECOTkAlJpsiMuMuHIGoodMuons\n +ALCARECOTkAlJpsiMuMuHI\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:01 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"25e6a848d7f87103529828ee39e3397082ef9c58bc790cad279804adb6213d24"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4621'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '379'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF42:3A2467:99C7D17:9A88909:661E70B0')] +{"sha":"94c509c1d2433ff6733e6d5e555fd0f9af47667a","node_id":"C_kwDOF83__NoAKDk0YzUwOWMxZDI0MzNmZjY3MzNlNmQ1ZTU1NWZkMGY5YWY0NzY2N2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"faf236dc1d98b0c0e791036ffec66bd188269494","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/faf236dc1d98b0c0e791036ffec66bd188269494"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/94c509c1d2433ff6733e6d5e555fd0f9af47667a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"16c9d0587c7f1ca36f19494751bc5fd61414fe0c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/94c509c1d2433ff6733e6d5e555fd0f9af47667a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/94c509c1d2433ff6733e6d5e555fd0f9af47667a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py?ref=94c509c1d2433ff6733e6d5e555fd0f9af47667a","patch":"@@ -60,3 +60,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJpsiMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:01 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5b0e6d3c5b54f3f1f9ecc85c737648c6be180cca88706f78353f72219455bd9d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4620'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '380'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF46:2B2A64:7E9FA26:7F47070:661E70B1')] +{"sha":"f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","node_id":"C_kwDOF83__NoAKGY0YTM5Y2E2NDQyZTdkNzgzZDdkNTdkOGNkZGY5OGViZjkwY2MxNDg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"3b33e28e611043e355d0a046a9ec8f1ed60cde92","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3b33e28e611043e355d0a046a9ec8f1ed60cde92"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e11e6666b3cafc148568d7e58d46bcaf9e0f2143","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e11e6666b3cafc148568d7e58d46bcaf9e0f2143"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"40c7addf56393c1a7bde9fc55e48ae9bb434cfc4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py?ref=f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","patch":"@@ -42,3 +42,4 @@\n \n OutALCARECOTkAlJetHT = OutALCARECOTkAlJetHT_noDrop.clone()\n OutALCARECOTkAlJetHT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:01 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e8bc5bf6e324139f9723051e8f54e52d2955a1ce9cd14eb4427f6ad313fb00e2"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4619'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '381'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF54:2B24A5:F6C434:F7A189:661E70B1')] +{"sha":"e11e6666b3cafc148568d7e58d46bcaf9e0f2143","node_id":"C_kwDOF83__NoAKGUxMWU2NjY2YjNjYWZjMTQ4NTY4ZDdlNThkNDZiY2FmOWUwZjIxNDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"bdcab15b193a509725860b74e6172db9c9e0442d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bdcab15b193a509725860b74e6172db9c9e0442d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"989900e5eb2a5260f308b0b1818139704e5888ae","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/989900e5eb2a5260f308b0b1818139704e5888ae"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"560bf98333a3142d57a6f197637b08d36d2408e1","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/e11e6666b3cafc148568d7e58d46bcaf9e0f2143/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/e11e6666b3cafc148568d7e58d46bcaf9e0f2143/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py?ref=e11e6666b3cafc148568d7e58d46bcaf9e0f2143","patch":"@@ -47,3 +47,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJetHT, etaMin = -4, etaMax = 4)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:01 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"82c7d8dd6c76165f87bfaf88231c7f2336064cb6dee7445c57c567d78c609a9c"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4618'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '382'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF60:1F230F:832DBCA:83D6A4F:661E70B1')] +{"sha":"989900e5eb2a5260f308b0b1818139704e5888ae","node_id":"C_kwDOF83__NoAKDk4OTkwMGU1ZWIyYTUyNjBmMzA4YjBiMTgxODEzOTcwNGU1ODg4YWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"7038be5b17b879c1212a5487c56c4cb7cca22d5c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7038be5b17b879c1212a5487c56c4cb7cca22d5c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/989900e5eb2a5260f308b0b1818139704e5888ae","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/989900e5eb2a5260f308b0b1818139704e5888ae","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d53b9bd64685138bda5b058402f47aa23b2f4e1e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d53b9bd64685138bda5b058402f47aa23b2f4e1e"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"04e2d813ac585e1b7673cfbb8fc1923dedafa59f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/989900e5eb2a5260f308b0b1818139704e5888ae/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/989900e5eb2a5260f308b0b1818139704e5888ae/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py?ref=989900e5eb2a5260f308b0b1818139704e5888ae","patch":"@@ -36,3 +36,4 @@\n \n OutALCARECOTkAlDiMuonAndVertex = OutALCARECOTkAlDiMuonAndVertex_noDrop.clone()\n OutALCARECOTkAlDiMuonAndVertex.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"55ae20d751872085c088737bb348668c00edd6cdf770fc8788fe6922051fa74d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4617'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '383'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF64:C1461:86188FC:86C1765:661E70B1')] +{"sha":"d53b9bd64685138bda5b058402f47aa23b2f4e1e","node_id":"C_kwDOF83__NoAKGQ1M2I5YmQ2NDY4NTEzOGJkYTViMDU4NDAyZjQ3YWEyM2IyZjRlMWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"0b3a284b618aba7b17669dc6146235846bceceec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b3a284b618aba7b17669dc6146235846bceceec"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d53b9bd64685138bda5b058402f47aa23b2f4e1e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"33bab99045167f9b921bd150ec6b92a07cabbb68","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/33bab99045167f9b921bd150ec6b92a07cabbb68"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"95b1f254dffb1313d929032538d77052b4161080","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/d53b9bd64685138bda5b058402f47aa23b2f4e1e/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/d53b9bd64685138bda5b058402f47aa23b2f4e1e/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py?ref=d53b9bd64685138bda5b058402f47aa23b2f4e1e","patch":"@@ -34,3 +34,4 @@\n eventSetupPathsKey='TkAlZMuMuHI')\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlDiMuon, etaMin = -4, etaMax = 4)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"3ed5209533663b602102272aed9e0ff00b0f930b81ace940af46a6849dfe621d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4616'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '384'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF6C:29BB20:7D5A93F:7E02072:661E70B2')] +{"sha":"33bab99045167f9b921bd150ec6b92a07cabbb68","node_id":"C_kwDOF83__NoAKDMzYmFiOTkwNDUxNjdmOWI5MjFiZDE1MGVjNmI5MmEwN2NhYmJiNjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"414bcaafd60db705603d60bdc727f6bd4dde4433","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/414bcaafd60db705603d60bdc727f6bd4dde4433"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/33bab99045167f9b921bd150ec6b92a07cabbb68","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"965c832e10ac29e3c0f1b91fbb5f06891189f011","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/965c832e10ac29e3c0f1b91fbb5f06891189f011"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"1fa4661e7963ec6e940daa5a90b7d44ee06ff9ec","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/33bab99045167f9b921bd150ec6b92a07cabbb68/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/33bab99045167f9b921bd150ec6b92a07cabbb68/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py?ref=33bab99045167f9b921bd150ec6b92a07cabbb68","patch":"@@ -28,3 +28,4 @@\n import copy\n OutALCARECOTkAlCosmics = copy.deepcopy(OutALCARECOTkAlCosmics_noDrop)\n OutALCARECOTkAlCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"96f080c5a484c8f1e03dc307e9b1242695afcbb9f2a8ea137bfe106f7ed7fd40"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4615'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '385'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF70:C1461:86190DD:86C1F4D:661E70B2')] +{"sha":"965c832e10ac29e3c0f1b91fbb5f06891189f011","node_id":"C_kwDOF83__NoAKDk2NWM4MzJlMTBhYzI5ZTNjMGYxYjkxZmJiNWYwNjg5MTE4OWYwMTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"055491f8f5a4f7b6dba92bca653c2fe4a36e01a1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/055491f8f5a4f7b6dba92bca653c2fe4a36e01a1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/965c832e10ac29e3c0f1b91fbb5f06891189f011","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"000b9675c5188d949a19dbcbea73b04ca25238d0","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/965c832e10ac29e3c0f1b91fbb5f06891189f011/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/965c832e10ac29e3c0f1b91fbb5f06891189f011/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py?ref=965c832e10ac29e3c0f1b91fbb5f06891189f011","patch":"@@ -25,3 +25,4 @@\n import copy\n OutALCARECOTkAlCosmicsInCollisions = copy.deepcopy(OutALCARECOTkAlCosmicsInCollisions_noDrop)\n OutALCARECOTkAlCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"12b62001f52b2bdc056d6dd39b774e507e582b871d7f7024e48c4d0acb873d45"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4614'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '386'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF7A:2F5B58:81A443D:824D199:661E70B2')] +{"sha":"140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","node_id":"C_kwDOF83__NoAKDE0MGMzM2VjODI0OWE0YTFlZmUyZmZjOGJjYzNlNGI1Zjg0Y2JjNWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"d912a3b26e30a7ffa5d679ac528841905c31b982","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d912a3b26e30a7ffa5d679ac528841905c31b982"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9494846e873fba740874ec7ecadce4a6d00f2321","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9494846e873fba740874ec7ecadce4a6d00f2321"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"33f3a6fd4ab9831581ca61152d7c3b2f7f8c91fc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py?ref=140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","patch":"@@ -53,3 +53,4 @@\n \n #________________________________Sequences____________________________________\n seqALCARECOTkAlCosmicsInCollisions = cms.Sequence(cosmicDCTracksSeq*ALCARECOTkAlCosmicsInCollisionsHLT+ALCARECOTkAlCosmicsInCollisionsDCSFilter+ALCARECOTkAlCosmicsInCollisions)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"90aeae198a37ad7c7b8f4ac0288e04b60793ca24d93d411419606b24ff70bcd8"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4613'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '387'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF80:2F5B58:81A489F:824D5DC:661E70B3')] +{"sha":"9494846e873fba740874ec7ecadce4a6d00f2321","node_id":"C_kwDOF83__NoAKDk0OTQ4NDZlODczZmJhNzQwODc0ZWM3ZWNhZGNlNGE2ZDAwZjIzMjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"90f6324360eb960205133c9824ba404cadbf5207","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/90f6324360eb960205133c9824ba404cadbf5207"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9494846e873fba740874ec7ecadce4a6d00f2321","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9494846e873fba740874ec7ecadce4a6d00f2321","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f414411be9156696683ecf374478379ae1e65799","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f414411be9156696683ecf374478379ae1e65799"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"686ae30481e0950370e0dd558fd2a4b1642dab50","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/9494846e873fba740874ec7ecadce4a6d00f2321/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/9494846e873fba740874ec7ecadce4a6d00f2321/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py?ref=9494846e873fba740874ec7ecadce4a6d00f2321","patch":"@@ -21,3 +21,4 @@\n OutALCARECOTkAlCosmicsHLT = copy.deepcopy(OutALCARECOTkAlCosmicsHLT_noDrop)\n OutALCARECOTkAlCosmicsHLT.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"808b22a357ab5da2874d9e7ccd4d4a146a6d918aac4786449da610d68eb134e5"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4612'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '388'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF8A:1AAB48:80AB6C5:8153482:661E70B3')] +{"sha":"f414411be9156696683ecf374478379ae1e65799","node_id":"C_kwDOF83__NoAKGY0MTQ0MTFiZTkxNTY2OTY2ODNlY2YzNzQ0NzgzNzlhZTFlNjU3OTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"d73a882c8f6f1b7f5ead65b5ec6f377810be5317","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d73a882c8f6f1b7f5ead65b5ec6f377810be5317"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f414411be9156696683ecf374478379ae1e65799","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f414411be9156696683ecf374478379ae1e65799","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5850a11ff295071daa92b2e0ae3e9351e555e22a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5850a11ff295071daa92b2e0ae3e9351e555e22a"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"e71cfbc60a0df9a70493b779d71bf7c445857916","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/f414411be9156696683ecf374478379ae1e65799/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/f414411be9156696683ecf374478379ae1e65799/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py?ref=f414411be9156696683ecf374478379ae1e65799","patch":"@@ -19,3 +19,4 @@\n seqALCARECOTkAlCosmicsCosmicTFHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegionalHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsRegional)\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"16ffd3ef449dccae1e3eae8c06f0ae126d30a553843d0adf8b02299597a6ed71"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4611'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '389'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF96:180869:8115BF2:81BD15A:661E70B3')] +{"sha":"5850a11ff295071daa92b2e0ae3e9351e555e22a","node_id":"C_kwDOF83__NoAKDU4NTBhMTFmZjI5NTA3MWRhYTkyYjJlMGFlM2U5MzUxZTU1NWUyMmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"8c71ecf787f5275b75447146d6e79ae612a2c183","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8c71ecf787f5275b75447146d6e79ae612a2c183"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5850a11ff295071daa92b2e0ae3e9351e555e22a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5fd537309af26ec463652904bb9b4af194f053f9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5fd537309af26ec463652904bb9b4af194f053f9"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"091fbee592d0a09c0d0e3278a1f09a8fb7e398b9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/5850a11ff295071daa92b2e0ae3e9351e555e22a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/5850a11ff295071daa92b2e0ae3e9351e555e22a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py?ref=5850a11ff295071daa92b2e0ae3e9351e555e22a","patch":"@@ -56,3 +56,4 @@\n seqALCARECOTkAlCosmicsCTF = cms.Sequence(ALCARECOTkAlCosmicsCTF)\n seqALCARECOTkAlCosmicsCosmicTF = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegional = cms.Sequence(ALCARECOTkAlCosmicsRegional)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"0dc38d8fac318dc0b446c29fb3d2b199329f95811b267d7a575cba987e112913"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4610'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '390'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF9C:38D48F:7F2EE0A:7FD6BF3:661E70B3')] +{"sha":"5fd537309af26ec463652904bb9b4af194f053f9","node_id":"C_kwDOF83__NoAKDVmZDUzNzMwOWFmMjZlYzQ2MzY1MjkwNGJiOWI0YWYxOTRmMDUzZjk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"783b9b4e10c56fa33fa6b65be1fb5dd64ef4ad52","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/783b9b4e10c56fa33fa6b65be1fb5dd64ef4ad52"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5fd537309af26ec463652904bb9b4af194f053f9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5fd537309af26ec463652904bb9b4af194f053f9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1a0c294006f0727c08a8c535d4c35ca9d3a11560","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1a0c294006f0727c08a8c535d4c35ca9d3a11560"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"72c2b8173d9c28d372c4761d9029b006924f5bcc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Skimmed_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/5fd537309af26ec463652904bb9b4af194f053f9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/5fd537309af26ec463652904bb9b4af194f053f9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py?ref=5fd537309af26ec463652904bb9b4af194f053f9","patch":"@@ -142,3 +142,4 @@\n #seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF+NewStatsCTF)\n seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF)\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d962a1a43c12a373c099269f2f9c9eff4428b30f8fab1f15e512d24d64e44087"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4609'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '391'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFA8:20E30:7D7834E:7E211DA:661E70B4')] +{"sha":"1a0c294006f0727c08a8c535d4c35ca9d3a11560","node_id":"C_kwDOF83__NoAKDFhMGMyOTQwMDZmMDcyN2MwOGE4YzUzNWQ0YzM1Y2E5ZDNhMTE1NjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"98758694e1b4f67766769904addeeda09118051e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/98758694e1b4f67766769904addeeda09118051e"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1a0c294006f0727c08a8c535d4c35ca9d3a11560","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2d4fe5cac27d329c45335fff21a76cc6f2887a42","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2d4fe5cac27d329c45335fff21a76cc6f2887a42"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"bbcaed50c8e8ea47b328a8423964da3708c3d685","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/1a0c294006f0727c08a8c535d4c35ca9d3a11560/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/1a0c294006f0727c08a8c535d4c35ca9d3a11560/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py?ref=1a0c294006f0727c08a8c535d4c35ca9d3a11560","patch":"@@ -31,3 +31,4 @@\n import copy\n OutALCARECOTkAlCosmics0T = copy.deepcopy(OutALCARECOTkAlCosmics0T_noDrop)\n OutALCARECOTkAlCosmics0T.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e3d88b77a414666f5ce9ad74924372e60579a476de79553f7e0a5170657eb2f2"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4608'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '392'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFAC:121DD6:843A95A:84E24D5:661E70B4')] +{"sha":"2d4fe5cac27d329c45335fff21a76cc6f2887a42","node_id":"C_kwDOF83__NoAKDJkNGZlNWNhYzI3ZDMyOWM0NTMzNWZmZjIxYTc2Y2M2ZjI4ODdhNDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"8fadb57323efcca3b534843dc60d7d73ae896585","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8fadb57323efcca3b534843dc60d7d73ae896585"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2d4fe5cac27d329c45335fff21a76cc6f2887a42","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54a311b32085fd8a201f47993987cd3898519913","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54a311b32085fd8a201f47993987cd3898519913"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ed40983bf8eeae5cd9bb84737409cdd08941df19","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2d4fe5cac27d329c45335fff21a76cc6f2887a42/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2d4fe5cac27d329c45335fff21a76cc6f2887a42/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py?ref=2d4fe5cac27d329c45335fff21a76cc6f2887a42","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOTkAlCosmics0THLT = copy.deepcopy(OutALCARECOTkAlCosmics0THLT_noDrop)\n OutALCARECOTkAlCosmics0THLT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7800c3ee365baa74a6df01ffe02f12b327c5b30e110c8869cd2d06a6420e0218"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4607'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '393'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFB6:337464:816B5A3:821446C:661E70B4')] +{"sha":"54a311b32085fd8a201f47993987cd3898519913","node_id":"C_kwDOF83__NoAKDU0YTMxMWIzMjA4NWZkOGEyMDFmNDc5OTM5ODdjZDM4OTg1MTk5MTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"0d67f9361497af6f5244d44d6c09b2e66f2f6ee2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0d67f9361497af6f5244d44d6c09b2e66f2f6ee2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54a311b32085fd8a201f47993987cd3898519913","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54a311b32085fd8a201f47993987cd3898519913","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"771cd52d642b567fd401abeeeb73f6a03b7c25d1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/771cd52d642b567fd401abeeeb73f6a03b7c25d1"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"bef9ce2c93843d77ba1f77fa78163c3c9695df91","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/54a311b32085fd8a201f47993987cd3898519913/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/54a311b32085fd8a201f47993987cd3898519913/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py?ref=54a311b32085fd8a201f47993987cd3898519913","patch":"@@ -21,3 +21,4 @@\n seqALCARECOTkAlCosmicsCTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCTF0T)\n seqALCARECOTkAlCosmicsCosmicTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsRegional0T)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:05 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"551eb316890b3029b3b9c6bc41c1cb304323da36f5b0d83ff91302913e09849f"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4606'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '394'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFC6:2B2A64:7EA2B1E:7F4A196:661E70B4')] +{"sha":"771cd52d642b567fd401abeeeb73f6a03b7c25d1","node_id":"C_kwDOF83__NoAKDc3MWNkNTJkNjQyYjU2N2ZkNDAxYWJlZWViNzNmNmEwM2I3YzI1ZDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"979d57f875243288b385bd75240c9c458f4e07ba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/979d57f875243288b385bd75240c9c458f4e07ba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/771cd52d642b567fd401abeeeb73f6a03b7c25d1","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"91dba01036de233a38e8407a373c9668794c2e16","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/771cd52d642b567fd401abeeeb73f6a03b7c25d1/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/771cd52d642b567fd401abeeeb73f6a03b7c25d1/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py?ref=771cd52d642b567fd401abeeeb73f6a03b7c25d1","patch":"@@ -57,3 +57,4 @@\n seqALCARECOTkAlCosmicsCosmicTF0T = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0T = cms.Sequence(ALCARECOTkAlCosmicsRegional0T)\n seqALCARECOTkAlCosmicsDuringCollisions0T = cms.Sequence(ALCARECOTkAlCosmicsDuringCollisions0T)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:05 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e7d91a28add208fc9411aaa1d82d53fd3f60439e2171e695effcac7930214ebf"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:04 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4605'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '395'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFD4:14E79:7B18FCE:7BC2033:661E70B5')] +{"sha":"2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","node_id":"C_kwDOF83__NoAKDJkYjczZDllOGI2Yjk1YjA1ODkwZjQ2YTdlZTdiNWI4MGQwMjVjYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"06b0eeca8e5f85d7c15e450e878dad2dc31547ea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/06b0eeca8e5f85d7c15e450e878dad2dc31547ea"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a67fc27c06fcb20088043e80e5c70f9a7c7f557f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a67fc27c06fcb20088043e80e5c70f9a7c7f557f"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"713486889d33b7ddcf3ebd7da763822fe6ff6d79","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py?ref=2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlBeamHalo = copy.deepcopy(OutALCARECOTkAlBeamHalo_noDrop)\n OutALCARECOTkAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:05 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"30593f89439f459b6ec1b80f97bc436d3fc6e72fc12c52a59ab1e57ee9c310a4"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:04 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4604'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '396'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFDE:39550C:7E584EE:7EFF784:661E70B5')] +{"sha":"a67fc27c06fcb20088043e80e5c70f9a7c7f557f","node_id":"C_kwDOF83__NoAKGE2N2ZjMjdjMDZmY2IyMDA4ODA0M2U4MGU1YzcwZjlhN2M3ZjU1N2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"68e4b0159f0da11f7515c9dd474b97231034cd9a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/68e4b0159f0da11f7515c9dd474b97231034cd9a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8cb55938020bf324697a713ef8341cf74c676473","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8cb55938020bf324697a713ef8341cf74c676473"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"68cb6596cfbb294ac8ec01f3e8716ff98cdfe8c3","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/a67fc27c06fcb20088043e80e5c70f9a7c7f557f/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/a67fc27c06fcb20088043e80e5c70f9a7c7f557f/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py?ref=a67fc27c06fcb20088043e80e5c70f9a7c7f557f","patch":"@@ -39,3 +39,4 @@\n ALCARECOTkAlBeamHalo.TwoBodyDecaySelector.applyAcoplanarityFilter = False\n \n seqALCARECOTkAlBeamHalo = cms.Sequence(ALCARECOTkAlBeamHaloDCSFilter+ALCARECOTkAlBeamHalo)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:05 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d13b87cd1f2ef369a21f4a81ab591ec478f0470654a82e298e7f0eedc7329196"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:04 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4603'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '397'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFE4:1F230F:8331178:83DA01E:661E70B5')] +{"sha":"8cb55938020bf324697a713ef8341cf74c676473","node_id":"C_kwDOF83__NoAKDhjYjU1OTM4MDIwYmYzMjQ2OTdhNzEzZWY4MzQxY2Y3NGM2NzY0NzM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"90d6190c3c177b8b68a435928a49983ab456bd70","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/90d6190c3c177b8b68a435928a49983ab456bd70"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8cb55938020bf324697a713ef8341cf74c676473","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8cb55938020bf324697a713ef8341cf74c676473","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b65976a868ea2226600ac191d4a63767b514bef0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b65976a868ea2226600ac191d4a63767b514bef0"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"45a673727453c92ebb43e03aaeb3b56aa8f8c805","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/8cb55938020bf324697a713ef8341cf74c676473/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/8cb55938020bf324697a713ef8341cf74c676473/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py?ref=8cb55938020bf324697a713ef8341cf74c676473","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAli=OutALCARECOPromptCalibProdSiPixelAli_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAli.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:05 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9272881224254b1565b0fa98f011766b617b52d468c3c578e4053494fdd2f44d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:04 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4602'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '398'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFE8:20E30:7D798F5:7E2277F:661E70B5')] +{"sha":"b65976a868ea2226600ac191d4a63767b514bef0","node_id":"C_kwDOF83__NoAKGI2NTk3NmE4NjhlYTIyMjY2MDBhYzE5MWQ0YTYzNzY3YjUxNGJlZjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"89a20c2ed2e32c6bf161e05441c62873839f7a3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/89a20c2ed2e32c6bf161e05441c62873839f7a3f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b65976a868ea2226600ac191d4a63767b514bef0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b65976a868ea2226600ac191d4a63767b514bef0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54d57f1f7cd199df49c988724d9b630389964ce8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54d57f1f7cd199df49c988724d9b630389964ce8"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"d35a544bf35310c31a7573858641680a2fdf7a73","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b65976a868ea2226600ac191d4a63767b514bef0/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b65976a868ea2226600ac191d4a63767b514bef0/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py?ref=b65976a868ea2226600ac191d4a63767b514bef0","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHG=OutALCARECOPromptCalibProdSiPixelAliHG_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHG.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:06 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"51b179237d1980e53df635662d68f16ce1b0fa889207c0e6389ca0b501e3ecff"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:04 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4601'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '399'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFF8:2B2A64:7EA3A31:7F4B0CC:661E70B6')] +{"sha":"54d57f1f7cd199df49c988724d9b630389964ce8","node_id":"C_kwDOF83__NoAKDU0ZDU3ZjFmN2NkMTk5ZGY0OWM5ODg3MjRkOWI2MzAzODk5NjRjZTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"48622698e104ea5980cad5c132faf25c431ef97b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/48622698e104ea5980cad5c132faf25c431ef97b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54d57f1f7cd199df49c988724d9b630389964ce8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54d57f1f7cd199df49c988724d9b630389964ce8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"bf4f3003d8ca2adca1fa6521e79de2e38fa00085","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bf4f3003d8ca2adca1fa6521e79de2e38fa00085"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"219601e77d98b73e2cf378682f0d2b0976114800","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/54d57f1f7cd199df49c988724d9b630389964ce8/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/54d57f1f7cd199df49c988724d9b630389964ce8/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py?ref=54d57f1f7cd199df49c988724d9b630389964ce8","patch":"@@ -133,3 +133,4 @@\n SiPixelAliTrackRefitterHGDimuon1*\n SiPixelAliMilleAlignmentProducerHGDimuon*\n SiPixelAliMillePedeFileConverterHGDimuon)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:06 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"f614f991b772843a4a9f770dcb35f72f0861a025427b80b12548b42bb8bd43ec"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:04 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4600'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '400'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B008:1F230F:8331BBF:83DAA8B:661E70B6')] +{"sha":"bf4f3003d8ca2adca1fa6521e79de2e38fa00085","node_id":"C_kwDOF83__NoAKGJmNGYzMDAzZDhjYTJhZGNhMWZhNjUyMWU3OWRlMmUzOGZhMDAwODU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"108372a18861f1313ea463464fa0556adff6cd2c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/108372a18861f1313ea463464fa0556adff6cd2c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9ead59ffdbd00680efdcd278c945d0190f5431a2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9ead59ffdbd00680efdcd278c945d0190f5431a2"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"30ac7ba2338abca4b5c7e3c4cd7d8fba4957b19f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/bf4f3003d8ca2adca1fa6521e79de2e38fa00085/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/bf4f3003d8ca2adca1fa6521e79de2e38fa00085/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py?ref=bf4f3003d8ca2adca1fa6521e79de2e38fa00085","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHGComb=OutALCARECOPromptCalibProdSiPixelAliHGComb_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHGComb.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:06 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"136e5d92206487422cbd6749a5a108ae34a3845b1c491da56db00e267bb83f62"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:04 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4599'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '401'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B012:2B24A5:F70904:F7E6A4:661E70B6')] +{"sha":"9ead59ffdbd00680efdcd278c945d0190f5431a2","node_id":"C_kwDOF83__NoAKDllYWQ1OWZmZGJkMDA2ODBlZmRjZDI3OGM5NDVkMDE5MGY1NDMxYTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"d4106ae332badffb76ba65d14f573bacdc622bf9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d4106ae332badffb76ba65d14f573bacdc622bf9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9ead59ffdbd00680efdcd278c945d0190f5431a2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"cb2ae4c6030f1708233eb6e1a66242c5c48640cf","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/9ead59ffdbd00680efdcd278c945d0190f5431a2/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/9ead59ffdbd00680efdcd278c945d0190f5431a2/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py?ref=9ead59ffdbd00680efdcd278c945d0190f5431a2","patch":"@@ -74,3 +74,4 @@\n SiPixelAliTrackRefitterHG1*\n SiPixelAliMilleAlignmentProducerHG*\n SiPixelAliMillePedeFileConverterHG)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:06 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b6d569397b53c4d5c75766f9ba4cc11c19cb10b3dcf8e41a96c3a03dac2aaab5"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:04 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4598'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '402'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B01C:769E0:804249B:80E9653:661E70B6')] +{"sha":"e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","node_id":"C_kwDOF83__NoAKGU3ODMwZWFlNjg4ZGVjMGJjZDZiYTE2YzdlYjMxZDA2OWY0Yzc5ZDk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"7cbf5e72517459eaa4e27ab2f9612bc020fb081d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7cbf5e72517459eaa4e27ab2f9612bc020fb081d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6bc380dd03a72ed6b936206410d5d306635baffb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6bc380dd03a72ed6b936206410d5d306635baffb"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"75d68863cb6dcca952393df752b961fa5780baea","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py?ref=e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","patch":"@@ -159,3 +159,4 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:07 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4664432fbdff5bae10d2c92aa5f23a8546b9b889425fe3111d46bd45a5edf918"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:03 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4597'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '403'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B024:28A0B9:297F946:29A6236:661E70B7')] +{"sha":"6bc380dd03a72ed6b936206410d5d306635baffb","node_id":"C_kwDOF83__NoAKDZiYzM4MGRkMDNhNzJlZDZiOTM2MjA2NDEwZDVkMzA2NjM1YmFmZmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"905ca3640c73a8eeff596afdadfe54f21a2a7827","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/905ca3640c73a8eeff596afdadfe54f21a2a7827"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6bc380dd03a72ed6b936206410d5d306635baffb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6bc380dd03a72ed6b936206410d5d306635baffb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b01cfede232680315b8e776989863016c434c1c4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b01cfede232680315b8e776989863016c434c1c4"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"e69ad471f785c84484582cf8dbf1dc5372eb1f09","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/6bc380dd03a72ed6b936206410d5d306635baffb/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/6bc380dd03a72ed6b936206410d5d306635baffb/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py?ref=6bc380dd03a72ed6b936206410d5d306635baffb","patch":"@@ -161,3 +161,4 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:07 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"76c39902c1c711139f5c3d6062b8a7f67c9f194b141d40185266febcc13897e4"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:03 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4596'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '404'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B032:769E0:8042B2B:80E9D57:661E70B7')] +{"sha":"b01cfede232680315b8e776989863016c434c1c4","node_id":"C_kwDOF83__NoAKGIwMWNmZWRlMjMyNjgwMzE1YjhlNzc2OTg5ODYzMDE2YzQzNGMxYzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"980e5f0bf331e9972241c1f9e27d2783a1cff424","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/980e5f0bf331e9972241c1f9e27d2783a1cff424"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b01cfede232680315b8e776989863016c434c1c4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b01cfede232680315b8e776989863016c434c1c4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"dd79321d938d68ff7634c0594d63609a81d08f6e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dd79321d938d68ff7634c0594d63609a81d08f6e"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"42f263db7980f4da0a4767b7a445df78923c8bb9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b01cfede232680315b8e776989863016c434c1c4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b01cfede232680315b8e776989863016c434c1c4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py?ref=b01cfede232680315b8e776989863016c434c1c4","patch":"@@ -29,3 +29,4 @@\n import copy\n OutALCARECOMuAlZMuMu = copy.deepcopy(OutALCARECOMuAlZMuMu_noDrop)\n OutALCARECOMuAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:07 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"506eb87544362621ac53712945b79d920091055a12dc6c5eb3692db3d16e51ff"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:03 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4595'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '405'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B03E:127A77:82D639F:837DE3F:661E70B7')] +{"sha":"dd79321d938d68ff7634c0594d63609a81d08f6e","node_id":"C_kwDOF83__NoAKGRkNzkzMjFkOTM4ZDY4ZmY3NjM0YzA1OTRkNjM2MDlhODFkMDhmNmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"f4e93e721f778a41cf429127b398d6fe5a19e9bf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f4e93e721f778a41cf429127b398d6fe5a19e9bf"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dd79321d938d68ff7634c0594d63609a81d08f6e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"28da794cf3573f21e2d2b7ab67f4b70faa424ef7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28da794cf3573f21e2d2b7ab67f4b70faa424ef7"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"b549c72e3cd5046c15f45b3334e4d4410592a49e","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dd79321d938d68ff7634c0594d63609a81d08f6e/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dd79321d938d68ff7634c0594d63609a81d08f6e/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py?ref=dd79321d938d68ff7634c0594d63609a81d08f6e","patch":"@@ -49,3 +49,4 @@\n seqALCARECOMuAlZMuMu = cms.Sequence(ALCARECOMuAlZMuMuHLT+ALCARECOMuAlZMuMuDCSFilter+ALCARECOMuAlZMuMu)\n \n seqALCARECOMuAlZMuMuGeneralTracks = cms.Sequence(ALCARECOMuAlZMuMuGeneralTracks)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:08 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"46cd92c55eab2af2a8320f5b89ba44557e9ab871386c75a7b095d149cc90ab9e"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:03 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4594'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '406'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B044:C1461:861D76E:86C661B:661E70B7')] +{"sha":"28da794cf3573f21e2d2b7ab67f4b70faa424ef7","node_id":"C_kwDOF83__NoAKDI4ZGE3OTRjZjM1NzNmMjFlMmQyYjdhYjY3ZjRiNzBmYWE0MjRlZjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"d78999e6316deb9eaacb3eda259d8ef05cdeb100","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d78999e6316deb9eaacb3eda259d8ef05cdeb100"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"844c2022bf741a2e3b0ac4b4e95e61306ccc1394","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/28da794cf3573f21e2d2b7ab67f4b70faa424ef7/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/28da794cf3573f21e2d2b7ab67f4b70faa424ef7/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py?ref=28da794cf3573f21e2d2b7ab67f4b70faa424ef7","patch":"@@ -27,3 +27,4 @@\n import copy\n OutALCARECOMuAlStandAloneCosmics = copy.deepcopy(OutALCARECOMuAlStandAloneCosmics_noDrop)\n OutALCARECOMuAlStandAloneCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:08 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1e6dfb6500ee5c4600d19c5832729387db0538b7ab572fadc6e8a795e95ef4db"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:03 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4593'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '407'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B04E:28A0B9:29806D5:29A6FB8:661E70B8')] +{"sha":"fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","node_id":"C_kwDOF83__NoAKGZhMjJmOWRjZTRhYWY4OWZlOWJkNmEzYjYyOWQ4NjUzYTk5ZjY5NjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"88acfb49e074adebacf3a94eec90ce72d855998f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/88acfb49e074adebacf3a94eec90ce72d855998f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9d9fa3ef63254933653481c5d3b5d17bd827c7a8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9d9fa3ef63254933653481c5d3b5d17bd827c7a8"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"379d125af11a4575a462030a5f4ddf17061cd847","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py?ref=fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","patch":"@@ -32,3 +32,4 @@\n \n seqALCARECOMuAlStandAloneCosmics = cms.Sequence(ALCARECOMuAlStandAloneCosmicsHLT + ALCARECOMuAlStandAloneCosmicsDCSFilter + ALCARECOMuAlStandAloneCosmics)\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:08 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ad3966f3360fbc035c62b050aedf50c51abe9429cebf93f36230252a2483cb62"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:03 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4592'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '408'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B056:769E0:80438CA:80EAA96:661E70B8')] +{"sha":"9d9fa3ef63254933653481c5d3b5d17bd827c7a8","node_id":"C_kwDOF83__NoAKDlkOWZhM2VmNjMyNTQ5MzM2NTM0ODFjNWQzYjVkMTdiZDgyN2M3YTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"6b56f029c24b50d23819dc35587ca154f59070a7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6b56f029c24b50d23819dc35587ca154f59070a7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"67402bf06994fb808632d5194c505b3cef667749","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67402bf06994fb808632d5194c505b3cef667749"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"3cd238715472e4d745891449f067165210c271cc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/9d9fa3ef63254933653481c5d3b5d17bd827c7a8/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/9d9fa3ef63254933653481c5d3b5d17bd827c7a8/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py?ref=9d9fa3ef63254933653481c5d3b5d17bd827c7a8","patch":"@@ -29,3 +29,4 @@\n import copy\n OutALCARECOMuAlOverlaps = copy.deepcopy(OutALCARECOMuAlOverlaps_noDrop)\n OutALCARECOMuAlOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:08 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"98cbff4552fd155ffa60028444ec482597542fce7e1f4465e776f2f2ced40cb8"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:02 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4591'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '409'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B058:38D48F:7F32A6B:7FDA88A:661E70B8')] +{"sha":"67402bf06994fb808632d5194c505b3cef667749","node_id":"C_kwDOF83__NoAKDY3NDAyYmYwNjk5NGZiODA4NjMyZDUxOTRjNTA1YjNjZWY2Njc3NDk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fc96727b643600198687942640cae3202de0bc3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fc96727b643600198687942640cae3202de0bc3f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/67402bf06994fb808632d5194c505b3cef667749","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67402bf06994fb808632d5194c505b3cef667749","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"659d1cc21ac5e925f49b01e8fccd4949ea55d329","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/67402bf06994fb808632d5194c505b3cef667749/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/67402bf06994fb808632d5194c505b3cef667749/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py?ref=67402bf06994fb808632d5194c505b3cef667749","patch":"@@ -51,3 +51,4 @@\n seqALCARECOMuAlOverlaps = cms.Sequence(ALCARECOMuAlOverlapsHLT+ALCARECOMuAlOverlapsDCSFilter+ALCARECOMuAlOverlapsMuonSelector*ALCARECOMuAlOverlaps)\n \n seqALCARECOMuAlOverlapsGeneralTracks = cms.Sequence(ALCARECOMuAlOverlapsGeneralTracks)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:09 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2dcfc855921ffcaca7f8fd6796537d0b8f8838f11996d6b6f22a28b53a7b90a6"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:02 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4590'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '410'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B060:1F230F:8333E9E:83DCDAE:661E70B8')] +{"sha":"9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","node_id":"C_kwDOF83__NoAKDlkYmUxNWFkYjVmNDE0YzFkNDIyYjY1ZTRiMGZiNDM0YWMyYjhhMGM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"1bad7cc557c1d691b024189fc6fae30bfcd8e196","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bad7cc557c1d691b024189fc6fae30bfcd8e196"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d81c5623eff68a8c0c5f25827b85655dc611d186","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d81c5623eff68a8c0c5f25827b85655dc611d186"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"29d1edc9fbd44d32b3a80481d7574c8b9e9b75f4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py?ref=9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","patch":"@@ -35,3 +35,4 @@\n import copy\n OutALCARECOMuAlGlobalCosmics = copy.deepcopy(OutALCARECOMuAlGlobalCosmics_noDrop)\n OutALCARECOMuAlGlobalCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:09 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9d6d77542cf2f3c53f1c4a29e7bec589c2628929fe3e2f9510ed1f4df8ecae0a"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:02 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4589'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '411'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B06C:769E0:80443C8:80EB599:661E70B9')] +{"sha":"d81c5623eff68a8c0c5f25827b85655dc611d186","node_id":"C_kwDOF83__NoAKGQ4MWM1NjIzZWZmNjhhOGMwYzVmMjU4MjdiODU2NTVkYzYxMWQxODY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fe4b117b678b53e46fed7717ba42a8b746749782","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fe4b117b678b53e46fed7717ba42a8b746749782"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d81c5623eff68a8c0c5f25827b85655dc611d186","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"e692f91dab0a417c82f71e8668fe62fdaecec892","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/d81c5623eff68a8c0c5f25827b85655dc611d186/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/d81c5623eff68a8c0c5f25827b85655dc611d186/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py?ref=d81c5623eff68a8c0c5f25827b85655dc611d186","patch":"@@ -32,3 +32,4 @@\n import copy\n OutALCARECOMuAlGlobalCosmicsInCollisions = copy.deepcopy(OutALCARECOMuAlGlobalCosmicsInCollisions_noDrop)\n OutALCARECOMuAlGlobalCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:09 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"3f83f6023fb4625dcd0866d87b3b19e3affdadbb224d30e47f60e2dcf3823549"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:02 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4588'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '412'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B072:C1461:861EC4F:86C7B00:661E70B9')] +{"sha":"f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","node_id":"C_kwDOF83__NoAKGY4MmY4ODRlNDIyY2MwYTNmMjBkMzgwMTZiN2IxYmE5YjhmZDRkZTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"db7d14712f3554f347f319364f3bcd2ab69cd279","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/db7d14712f3554f347f319364f3bcd2ab69cd279"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ac81fc9eeaa7ebe9071efe91205570db06a728cb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac81fc9eeaa7ebe9071efe91205570db06a728cb"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"0f482289c448cb880d9e98cf4b34ff3ae220e2e4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py?ref=f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","patch":"@@ -33,3 +33,4 @@\n )\n \n seqALCARECOMuAlGlobalCosmicsInCollisions = cms.Sequence(ALCARECOMuAlGlobalCosmicsInCollisionsHLT + ALCARECOMuAlGlobalCosmicsInCollisionsDCSFilter + ALCARECOMuAlGlobalCosmicsInCollisions)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:09 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"675dd4cc77c3288f88bc7dacadfef31db4cea3bf80adac221d5753c033637bf8"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:02 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4587'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '413'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B07A:1294DB:997458D:9A35178:661E70B9')] +{"sha":"ac81fc9eeaa7ebe9071efe91205570db06a728cb","node_id":"C_kwDOF83__NoAKGFjODFmYzllZWFhN2ViZTkwNzFlZmU5MTIwNTU3MGRiMDZhNzI4Y2I","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"2d52611bc40e1e74308dd0716db200da9c07806f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2d52611bc40e1e74308dd0716db200da9c07806f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac81fc9eeaa7ebe9071efe91205570db06a728cb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"86477423de63681eba81e21d86802ec1d7648449","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/ac81fc9eeaa7ebe9071efe91205570db06a728cb/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/ac81fc9eeaa7ebe9071efe91205570db06a728cb/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py?ref=ac81fc9eeaa7ebe9071efe91205570db06a728cb","patch":"@@ -62,3 +62,4 @@\n seqALCARECOMuAlGlobalCosmicsCombinatorialTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCombinatorialTF)\n seqALCARECOMuAlGlobalCosmicsCosmicTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCosmicTF)\n seqALCARECOMuAlGlobalCosmicsRegionalTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsRegionalTF)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:09 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1d8ba8fdede091f112ac4efe4e617d124d6501a7217fbbcbb5090a7ec76b6b87"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:02 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4586'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '414'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B082:15F874:842ED5C:84D7B9A:661E70B9')] +{"sha":"3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","node_id":"C_kwDOF83__NoAKDNmOWZmZTcwYmIxZDNlZmNiM2I2ZGJkYTI1MWYzMDM1YjVkOWVlNTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"c8775313f1683f64728b5bf2b8fe13ac392d31e6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c8775313f1683f64728b5bf2b8fe13ac392d31e6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"746cefc3b695998fca753f27b7937f7b8b0fd73a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/746cefc3b695998fca753f27b7937f7b8b0fd73a"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"877ec9b785eeffc02df2f7aaf517fefd4f72284b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py?ref=3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","patch":"@@ -32,3 +32,4 @@\n import copy\n OutALCARECOMuAlCalIsolatedMu = copy.deepcopy(OutALCARECOMuAlCalIsolatedMu_noDrop)\n OutALCARECOMuAlCalIsolatedMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:10 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"269984e1be4c9b483d51176ed0d8ae37b6232ac4973abb5a73927cd299c5460e"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:02 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4585'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '415'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B088:3A6FB9:84F9510:85A0BE6:661E70BA')] +{"sha":"746cefc3b695998fca753f27b7937f7b8b0fd73a","node_id":"C_kwDOF83__NoAKDc0NmNlZmMzYjY5NTk5OGZjYTc1M2YyN2I3OTM3ZjdiOGIwZmQ3M2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fe961ba6bd030acdaaad5af65547bfebb95e5b87","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fe961ba6bd030acdaaad5af65547bfebb95e5b87"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/746cefc3b695998fca753f27b7937f7b8b0fd73a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"141848de6118a8ec0031d42a239b532e28ba7b20","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/141848de6118a8ec0031d42a239b532e28ba7b20"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"2f2fa7bcdf5dec5ccb84bfba0d1037bbbb3afdfe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/746cefc3b695998fca753f27b7937f7b8b0fd73a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/746cefc3b695998fca753f27b7937f7b8b0fd73a/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py?ref=746cefc3b695998fca753f27b7937f7b8b0fd73a","patch":"@@ -48,3 +48,4 @@\n seqALCARECOMuAlCalIsolatedMu = cms.Sequence(ALCARECOMuAlCalIsolatedMuHLT + ALCARECOMuAlCalIsolatedDCSFilter + ALCARECOMuAlCalIsolatedMu)\n \n seqALCARECOMuAlCalIsolatedMuGeneralTracks = cms.Sequence(ALCARECOMuAlCalIsolatedMuGeneralTracks)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:10 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"02134068b78ff1eb9bbe9bab079645736763316bb0d1424b42d9b2719172e80d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:01 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4584'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '416'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B08A:769E0:80453A7:80EC57F:661E70BA')] +{"sha":"141848de6118a8ec0031d42a239b532e28ba7b20","node_id":"C_kwDOF83__NoAKDE0MTg0OGRlNjExOGE4ZWMwMDMxZDQyYTIzOWI1MzJlMjhiYTdiMjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"23dad5f42e28a693961cc1bf2aa9b23ae5df1bec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/23dad5f42e28a693961cc1bf2aa9b23ae5df1bec"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/141848de6118a8ec0031d42a239b532e28ba7b20","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/141848de6118a8ec0031d42a239b532e28ba7b20","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b6c2bff101779e4b82efc928ce50db4cd3464c4d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b6c2bff101779e4b82efc928ce50db4cd3464c4d"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"895c7abc7def8e403bcaf0cf1e7b5fb99a8fe786","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/141848de6118a8ec0031d42a239b532e28ba7b20/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/141848de6118a8ec0031d42a239b532e28ba7b20/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py?ref=141848de6118a8ec0031d42a239b532e28ba7b20","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOMuAlBeamHaloOverlaps = copy.deepcopy(OutALCARECOMuAlBeamHaloOverlaps_noDrop)\n OutALCARECOMuAlBeamHaloOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:10 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ce9d6fef3ba5b77dfae898b40b18a81ff0b5f373b9fd3a3a9fbc56d83bd0b43a"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:01 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4583'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '417'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B08E:29BB20:7D615CC:7E08D92:661E70BA')] +{"sha":"b6c2bff101779e4b82efc928ce50db4cd3464c4d","node_id":"C_kwDOF83__NoAKGI2YzJiZmYxMDE3NzllNGI4MmVmYzkyOGNlNTBkYjRjZDM0NjRjNGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"c0a3ed4a1a82e3751c98386673f3477df89d23ee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c0a3ed4a1a82e3751c98386673f3477df89d23ee"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b6c2bff101779e4b82efc928ce50db4cd3464c4d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9313683ebe3a199a999ddd4435f1f8f577ecbb2b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9313683ebe3a199a999ddd4435f1f8f577ecbb2b"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"0fe5fe669e6beab5e90ced161e923c8ff88e8e32","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b6c2bff101779e4b82efc928ce50db4cd3464c4d/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b6c2bff101779e4b82efc928ce50db4cd3464c4d/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py?ref=b6c2bff101779e4b82efc928ce50db4cd3464c4d","patch":"@@ -35,3 +35,4 @@\n )\n \n seqALCARECOMuAlBeamHaloOverlaps = cms.Sequence(ALCARECOMuAlBeamHaloOverlapsHLT + ALCARECOMuAlBeamHaloOverlapsDCSFilter + ALCARECOMuAlBeamHaloOverlapsEnergyCut * ALCARECOMuAlBeamHaloOverlaps)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:10 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"da731dbecc2a68e3159fa2cd95e2cdcaa581718b8bbd0c94756a3e31337b8531"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:01 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4582'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '418'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEA8:121DD6:843FEC2:84E7AC4:661E70BA')] +{"sha":"9313683ebe3a199a999ddd4435f1f8f577ecbb2b","node_id":"C_kwDOF83__NoAKDkzMTM2ODNlYmUzYTE5OWE5OTlkZGQ0NDM1ZjFmOGY1NzdlY2JiMmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"bedb61d85c7dd955dd610e090f7c541c69bcf302","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bedb61d85c7dd955dd610e090f7c541c69bcf302"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0b169bf8c51721082d8b4b175557a4fd7a41859e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b169bf8c51721082d8b4b175557a4fd7a41859e"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ea659b58a2e96de718292249011e8ecd54c6fd8d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/9313683ebe3a199a999ddd4435f1f8f577ecbb2b/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/9313683ebe3a199a999ddd4435f1f8f577ecbb2b/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py?ref=9313683ebe3a199a999ddd4435f1f8f577ecbb2b","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOMuAlBeamHalo = copy.deepcopy(OutALCARECOMuAlBeamHalo_noDrop)\n OutALCARECOMuAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"883cdaf098c062d5ec960d1d1035267ef8c61000026e2a4ecaf0706aded147c3"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:01 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4581'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '419'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEAC:121DD6:8440215:84E7E1C:661E70BB')] +{"sha":"0b169bf8c51721082d8b4b175557a4fd7a41859e","node_id":"C_kwDOF83__NoAKDBiMTY5YmY4YzUxNzIxMDgyZDhiNGIxNzU1NTdhNGZkN2E0MTg1OWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"e92ed7519ba0954ecbd3b9af771266e6263ed784","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e92ed7519ba0954ecbd3b9af771266e6263ed784"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b169bf8c51721082d8b4b175557a4fd7a41859e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa830292720ccabc7c199249551291da825e1a90","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa830292720ccabc7c199249551291da825e1a90"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ae076f9d342c0c1465126e03200f9ef1b9fdd675","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/0b169bf8c51721082d8b4b175557a4fd7a41859e/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/0b169bf8c51721082d8b4b175557a4fd7a41859e/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py?ref=0b169bf8c51721082d8b4b175557a4fd7a41859e","patch":"@@ -29,3 +29,4 @@\n \n seqALCARECOMuAlBeamHalo = cms.Sequence(ALCARECOMuAlBeamHaloHLT + ALCARECOMuAlBeamHaloDCSFilter + ALCARECOMuAlBeamHalo)\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"8c6701613ef1dc9932234e906bb8d40b4e10e24da519e5ed2b16b5b4d49e87a7"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:01 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4580'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '420'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEB4:28A0B9:298323D:29A9B66:661E70BB')] +{"sha":"fa830292720ccabc7c199249551291da825e1a90","node_id":"C_kwDOF83__NoAKGZhODMwMjkyNzIwY2NhYmM3YzE5OTI0OTU1MTI5MWRhODI1ZTFhOTA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"0b793573ecdb6789cba81c2fe00e1eb6df948b1d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b793573ecdb6789cba81c2fe00e1eb6df948b1d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa830292720ccabc7c199249551291da825e1a90","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa830292720ccabc7c199249551291da825e1a90","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"91baa52f43f6e950c0e77c5e7fd9acc5f2116204","filename":"Alignment/CommonAlignmentMonitor/test/testAlignmentStats_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fa830292720ccabc7c199249551291da825e1a90/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fa830292720ccabc7c199249551291da825e1a90/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py?ref=fa830292720ccabc7c199249551291da825e1a90","patch":"@@ -190,3 +190,4 @@\n process.NewStatsCTF)\n \n process.p2 = cms.Path(process.seqALCARECOTkAlMinBiasSkimmed)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"41b5e1baf335c17f3e56f0e4584bdde0db5d04a0f94af5e21c0e609e4d5b7b92"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:01 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4579'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '421'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEBA:1AAB48:80B2300:815A137:661E70BB')] +{"sha":"c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","node_id":"C_kwDOF83__NoAKGM2NTVjMGYyZDAwNDJlOWU0NWFhNWVkZmVlOWEzMDc2OTBjMGNkOWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"e339a930f697c525214fdef4876dc656c940e667","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e339a930f697c525214fdef4876dc656c940e667"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"c0be7655db2b7bbeb90b7ed2acef3ce88ffb4e01","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentStats_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py?ref=c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","patch":"@@ -1,2 +1,3 @@\n import FWCore.ParameterSet.Config as cms\n from Alignment.CommonAlignmentMonitor.AlignmentStats_cfi import *\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a0ab03441fdb467ed87ad69a8222b3d6c4dbd62e61aa697775251aa13bd89cde"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:01 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4578'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '422'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEC8:3A6FB9:84FAB7D:85A2239:661E70BB')] +{"sha":"3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","node_id":"C_kwDOF83__NoAKDNkNDFlNTdmNDRiOWFlZGViMGNlODhjMTc1Yjk5MzdkZTZhZDNjMTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"1a7b295426d5dc94e8eccd9b88700f4995950753","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1a7b295426d5dc94e8eccd9b88700f4995950753"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ff6668d4e2859434466fb87c4002d24343cfd4e9","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorSegmentDifferences_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py?ref=3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","patch":"@@ -16,3 +16,4 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2e5d8615dd1a24411a632c098042c65a809e5265bcee57de92b5d2c265335a57"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:01 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4577'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '423'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AECC:1F230F:833691B:83DF838:661E70BB')] +{"sha":"86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","node_id":"C_kwDOF83__NoAKDg2ZTMwZmRmMDJkZWEyZGQ1ZmMzY2RkNDRkZDQ3YmJhMTc4MjczYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"74665de2755706e0a98aedefddf05a064d6f9050","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/74665de2755706e0a98aedefddf05a064d6f9050"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7dfb8db88bca87267617e2d9f231cdf217241fe7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dfb8db88bca87267617e2d9f231cdf217241fe7"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"f483b5a4ccdeab05230e1a9037c0cfe396ca5b5b","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonVsCurvature_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py?ref=86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","patch":"@@ -18,3 +18,4 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b433798172e9054287810ea2f04f679c7120cc6bac542db25d761ef0255b45fe"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4576'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '424'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AED2:1AAB48:80B2BA6:815A9CE:661E70BC')] +{"sha":"7dfb8db88bca87267617e2d9f231cdf217241fe7","node_id":"C_kwDOF83__NoAKDdkZmI4ZGI4OGJjYTg3MjY3NjE3ZTJkOWYyMzFjZGYyMTcyNDFmZTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"0f2f6fc250488cfd4062021d21a50b6e4b9dcd67","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0f2f6fc250488cfd4062021d21a50b6e4b9dcd67"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dfb8db88bca87267617e2d9f231cdf217241fe7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f16d666bbaa62e716c0d66caac74d0eabed9dca2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f16d666bbaa62e716c0d66caac74d0eabed9dca2"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"662ab89add756d599832c641b7ab26f1c719d26c","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonSystemMap1D_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/7dfb8db88bca87267617e2d9f231cdf217241fe7/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/7dfb8db88bca87267617e2d9f231cdf217241fe7/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py?ref=7dfb8db88bca87267617e2d9f231cdf217241fe7","patch":"@@ -20,3 +20,4 @@\n useStubPosition = cms.bool(False),\n createNtuple = cms.bool(False)\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"32c7b5a0da1ee63860f4e5bfc9f271968a54b0edf222fd49b73229127e84c9f4"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4575'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '425'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AED4:1294DB:9976852:9A3745B:661E70BC')] +{"sha":"f16d666bbaa62e716c0d66caac74d0eabed9dca2","node_id":"C_kwDOF83__NoAKGYxNmQ2NjZiYmFhNjJlNzE2YzBkNjZjYWFjNzRkMGVhYmVkOWRjYTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"698253b7da8df6a37935ddf42e31a378fa107b10","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/698253b7da8df6a37935ddf42e31a378fa107b10"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f16d666bbaa62e716c0d66caac74d0eabed9dca2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"27e957c10865d54f442abb9a4db2b2f67548d928","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27e957c10865d54f442abb9a4db2b2f67548d928"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"83cddfa719453e6b918bab73da5403fd064e077e","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonResidualsDefaults_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/f16d666bbaa62e716c0d66caac74d0eabed9dca2/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/f16d666bbaa62e716c0d66caac74d0eabed9dca2/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py?ref=f16d666bbaa62e716c0d66caac74d0eabed9dca2","patch":"@@ -11,3 +11,4 @@\n ystdev_bins = cms.uint32(300), ystdev_low = cms.double(0.0), ystdev_high = cms.double(30.0),\n yerronmean_bins = cms.uint32(300), yerronmean_low = cms.double(0.0), yerronmean_high = cms.double(1.0),\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cb392dafa8f96d22b67ffe20cbc94c7f65239af85eeb229a3c7a0f790b8a0e80"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4574'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '426'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEE0:769E0:8047139:80EE32D:661E70BC')] +{"sha":"27e957c10865d54f442abb9a4db2b2f67548d928","node_id":"C_kwDOF83__NoAKDI3ZTk1N2MxMDg2NWQ1NGY0NDJhYmI5YTRkYjJiMmY2NzU0OGQ5Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"1efe944aad1ff712e310d7d68627973a51f72a0f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1efe944aad1ff712e310d7d68627973a51f72a0f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/27e957c10865d54f442abb9a4db2b2f67548d928","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27e957c10865d54f442abb9a4db2b2f67548d928","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"991dfec2212e29c247349c0a111b9daaacba4e54","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/991dfec2212e29c247349c0a111b9daaacba4e54"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"2391a950ac20ba1921b287c39cd7214b0e3fec5c","filename":"Alignment/CommonAlignmentAlgorithm/test/apeSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/27e957c10865d54f442abb9a4db2b2f67548d928/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/27e957c10865d54f442abb9a4db2b2f67548d928/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py?ref=27e957c10865d54f442abb9a4db2b2f67548d928","patch":"@@ -94,3 +94,4 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1b0159158e407419198ac6ba728a54ad70ea0bb0ee9b740281c84793416d3621"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4573'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '427'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEE8:180869:811D714:81C4CF7:661E70BC')] +{"sha":"991dfec2212e29c247349c0a111b9daaacba4e54","node_id":"C_kwDOF83__NoAKDk5MWRmZWMyMjEyZTI5YzI0NzM0OWMwYTExMWI5ZGFhYWNiYTRlNTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"470d5e0317648a9a0e5aba7d37391c6c3cecba37","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/470d5e0317648a9a0e5aba7d37391c6c3cecba37"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/991dfec2212e29c247349c0a111b9daaacba4e54","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/991dfec2212e29c247349c0a111b9daaacba4e54","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"713ba2443a4447a1d41355760c895ecc703ec57c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/713ba2443a4447a1d41355760c895ecc703ec57c"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"b9af2f1101f5e9a012f2ed43fb4f26b72fbc1ee5","filename":"Alignment/CommonAlignmentAlgorithm/test/apeLocalSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/991dfec2212e29c247349c0a111b9daaacba4e54/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/991dfec2212e29c247349c0a111b9daaacba4e54/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py?ref=991dfec2212e29c247349c0a111b9daaacba4e54","patch":"@@ -104,3 +104,4 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a1b18a7a6c05833a76c470a66f3d2aecf36851fba1c78f02eb00cc3b591844b6"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4572'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '428'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEF4:2B2A64:7EA960E:7F50CEC:661E70BD')] +{"sha":"713ba2443a4447a1d41355760c895ecc703ec57c","node_id":"C_kwDOF83__NoAKDcxM2JhMjQ0M2E0NDQ3YTFkNDEzNTU3NjBjODk1ZWNjNzAzZWM1N2M","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"5926efe56789a5a9ee9cea599656bdb89b2bc497","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5926efe56789a5a9ee9cea599656bdb89b2bc497"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/713ba2443a4447a1d41355760c895ecc703ec57c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/713ba2443a4447a1d41355760c895ecc703ec57c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"5291a55b2b45ecae62a32082b0b94c17a960056d","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripLorentzAngleCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/713ba2443a4447a1d41355760c895ecc703ec57c/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/713ba2443a4447a1d41355760c895ecc703ec57c/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py?ref=713ba2443a4447a1d41355760c895ecc703ec57c","patch":"@@ -22,3 +22,4 @@\n readoutMode = 'deconvolution',\n recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_deco'),\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cf8508c07f44e61704f4b2433c5b062da4b748889cf1396864a31fd1a801de75"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4571'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '429'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEF8:29BB20:7D63A59:7E0B204:661E70BD')] +{"sha":"56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","node_id":"C_kwDOF83__NoAKDU2ZDJiODYzZWFmNTU3MGEwYzY1ZWE5YjYzMjZhOTdhYjJlMzljOWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"40c593030da220c8deaf1574aa33261486d4b51b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/40c593030da220c8deaf1574aa33261486d4b51b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"38a549d26370b1e7b5f3425f977194e08dc5fde7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/38a549d26370b1e7b5f3425f977194e08dc5fde7"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"6ce31625b1e72bb606171f611d48d441c791bc19","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripBackplaneCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py?ref=56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","patch":"@@ -17,3 +17,4 @@\n # Configuration of the granularity for the backplane correction determination\n BackplaneModuleGroups = cms.PSet(),\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"06c239a841905713220a619f40a618f953e28ac0bf8529d81bd192bf781079ab"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4570'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '430'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AEFE:117B54:7E15927:7EBD528:661E70BD')] +{"sha":"38a549d26370b1e7b5f3425f977194e08dc5fde7","node_id":"C_kwDOF83__NoAKDM4YTU0OWQyNjM3MGIxZTdiNWYzNDI1Zjk3NzE5NGUwOGRjNWZkZTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"3daa68b7261760f3b8aaf2219a2dab2e735dc3b7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3daa68b7261760f3b8aaf2219a2dab2e735dc3b7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/38a549d26370b1e7b5f3425f977194e08dc5fde7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"35bb64a0679da9b688f184f5b90fbccca98b8cf0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35bb64a0679da9b688f184f5b90fbccca98b8cf0"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"871c1f4bc1e38c61f1385a1d43c0688cd82c17e3","filename":"Alignment/CommonAlignmentAlgorithm/python/SiPixelLorentzAngleCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/38a549d26370b1e7b5f3425f977194e08dc5fde7/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/38a549d26370b1e7b5f3425f977194e08dc5fde7/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py?ref=38a549d26370b1e7b5f3425f977194e08dc5fde7","patch":"@@ -22,3 +22,4 @@\n # one directly uses the unlabelled version, i.e. \"\"\n lorentzAngleLabel = cms.string(\"fromAlignment\"),\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e44b4f41aeff622c7c010ca17b307c557a40e93f5b8a600d76f1cb6d379eb42e"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4569'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '431'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF02:337464:8172D39:821BC77:661E70BD')] +{"sha":"35bb64a0679da9b688f184f5b90fbccca98b8cf0","node_id":"C_kwDOF83__NoAKDM1YmI2NGEwNjc5ZGE5YjY4OGYxODRmNWI5MGZiY2NjYTk4YjhjZjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"1804cd121682fc6e2a43137218c9469b618dfd23","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1804cd121682fc6e2a43137218c9469b618dfd23"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35bb64a0679da9b688f184f5b90fbccca98b8cf0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"747859a31cb854ed1664770622d7e05c22ff09db","filename":"Alignment/CommonAlignmentAlgorithm/python/ApeSettingAlgorithm_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/35bb64a0679da9b688f184f5b90fbccca98b8cf0/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/35bb64a0679da9b688f184f5b90fbccca98b8cf0/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py?ref=35bb64a0679da9b688f184f5b90fbccca98b8cf0","patch":"@@ -31,3 +31,4 @@\n # Also note:\n # process.AlignmentProducer.saveApeToDB -- to save as an sqlite file\n # and associated entries in _cfg.py\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:14 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"69eff5952f3b1b0d918692f4a648b7f25b15ccf7ce97d0927a2ae0ecca12428d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:59 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4568'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '432'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF08:15F874:84324D6:84DB32A:661E70BD')] +{"sha":"952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","node_id":"C_kwDOF83__NoAKDk1MmFhMzYzNWY4NGYyYjMyZDE2YWM0Nzc1ZmJkYTM3ZmE1ZTFkZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"79b5850fb119629e322d589bcb0865dc14b341b7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/79b5850fb119629e322d589bcb0865dc14b341b7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"841284bbd93b36212d3a7dc0efe66029db4ed642","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/841284bbd93b36212d3a7dc0efe66029db4ed642"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"d02bdb16a75821a5c87b3a1d032edbe2ab05f63a","filename":"Alignment/CommonAlignmentAlgorithm/python/AlignmentParameterStore_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py?ref=952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","patch":"@@ -12,3 +12,4 @@\n )\n )\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:14 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"3791c545418fc844ae06dbe80846076512651fd407e0d1e2a19e2feafc0a2e9b"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:59 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4567'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '433'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF0E:39550C:7E5F666:7F06972:661E70BE')] +{"sha":"841284bbd93b36212d3a7dc0efe66029db4ed642","node_id":"C_kwDOF83__NoAKDg0MTI4NGJiZDkzYjM2MjEyZDNhN2RjMGVmZTY2MDI5ZGI0ZWQ2NDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"4bcc4080da7734cba24b06634ac8a4d7a6c1a3a0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4bcc4080da7734cba24b06634ac8a4d7a6c1a3a0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/841284bbd93b36212d3a7dc0efe66029db4ed642","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a795b32e0086bf1e95b73851de4fb2d2fa863c1f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a795b32e0086bf1e95b73851de4fb2d2fa863c1f"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"06b273510f174af8c8399e2871c3f5aeffdf59ae","filename":"Alignment/CocoaApplication/test/cocoaAnalyzer_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/841284bbd93b36212d3a7dc0efe66029db4ed642/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/841284bbd93b36212d3a7dc0efe66029db4ed642/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py?ref=841284bbd93b36212d3a7dc0efe66029db4ed642","patch":"@@ -82,3 +82,4 @@\n \n process.p = cms.Path(process.cocoa)\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:14 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"8db41a0894eb42e42634e9f003ed757c2528189dfd1ed1fa80923f4e3f2120e9"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:59 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4566'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '434'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF18:117B54:7E16592:7EBE19E:661E70BE')] +{"sha":"a795b32e0086bf1e95b73851de4fb2d2fa863c1f","node_id":"C_kwDOF83__NoAKGE3OTViMzJlMDA4NmJmMWU5NWI3Mzg1MWRlNGZiMmQyZmE4NjNjMWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"3bdc6d11c6916bcd6b53e4ff878e64bb882e5180","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3bdc6d11c6916bcd6b53e4ff878e64bb882e5180"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c0b2b32fe21f87917b8134e435a9d944a1593eee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c0b2b32fe21f87917b8134e435a9d944a1593eee"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"4ffb3b11c42ef4aa65462742c8965c3c1263dc65","filename":"Alignment/APEEstimation/test/trackerTreeGenerator_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/a795b32e0086bf1e95b73851de4fb2d2fa863c1f/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/a795b32e0086bf1e95b73851de4fb2d2fa863c1f/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py?ref=a795b32e0086bf1e95b73851de4fb2d2fa863c1f","patch":"@@ -88,3 +88,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:14 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"83059b2120b1e2129f0ebeda10aa9a777d9f269a64277df79a95ebd1cdb53af3"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:59 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4565'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '435'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF20:28A0B9:29862FE:29ACC2E:661E70BE')] +{"sha":"c0b2b32fe21f87917b8134e435a9d944a1593eee","node_id":"C_kwDOF83__NoAKGMwYjJiMzJmZTIxZjg3OTE3YjgxMzRlNDM1YTlkOTQ0YTE1OTNlZWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"5572e410e8c4eb4a92a73b29b93626f9b6ae3cc4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5572e410e8c4eb4a92a73b29b93626f9b6ae3cc4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c0b2b32fe21f87917b8134e435a9d944a1593eee","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a8d51426d8398cdfd67e05d0e522f00cf18d962d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a8d51426d8398cdfd67e05d0e522f00cf18d962d"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"dc17d6c0d3ae82056db2693f9118a88b5f48feb2","filename":"Alignment/APEEstimation/test/SkimProducer/startSkim.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/c0b2b32fe21f87917b8134e435a9d944a1593eee/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/c0b2b32fe21f87917b8134e435a9d944a1593eee/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py?ref=c0b2b32fe21f87917b8134e435a9d944a1593eee","patch":"@@ -186,3 +186,4 @@ def main(argv):\n pass # The keyboard interrupt will be forwarded to the subprocesses anyway, stopping them without terminating them immediately\n if __name__ == \"__main__\":\n main(sys.argv)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:15 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"02853483a6f8c5ccfffc4ee0fcfcd68b7bda86206563f98196e82705430b50b7"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:59 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4564'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '436'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF2A:1F230F:83391DA:83E20F6:661E70BE')] +{"sha":"a8d51426d8398cdfd67e05d0e522f00cf18d962d","node_id":"C_kwDOF83__NoAKGE4ZDUxNDI2ZDgzOThjZGZkNjdlMDVkMGU1MjJmMDBjZjE4ZDk2MmQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"7747c1b44a85d1d293fcc3a8ba91ebe1ed9c1268","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7747c1b44a85d1d293fcc3a8ba91ebe1ed9c1268"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a8d51426d8398cdfd67e05d0e522f00cf18d962d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ec5c91c29611a67043bd36b4c409fd938dde2e0b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ec5c91c29611a67043bd36b4c409fd938dde2e0b"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"d5a54e0e54bcae306f74fec4398d6c830fbe5b60","filename":"Alignment/APEEstimation/test/SkimProducer/skimTemplates.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/a8d51426d8398cdfd67e05d0e522f00cf18d962d/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/a8d51426d8398cdfd67e05d0e522f00cf18d962d/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py?ref=a8d51426d8398cdfd67e05d0e522f00cf18d962d","patch":"@@ -88,3 +88,4 @@\n endif\n \"\"\"\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:15 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2ba26a23df1d92ec380f952d2847d90ee08cd52a7fdf9ac29fbaf6ca195fbaab"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:59 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4563'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '437'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF2C:2B2A64:7EAB37B:7F52A40:661E70BF')] +{"sha":"ec5c91c29611a67043bd36b4c409fd938dde2e0b","node_id":"C_kwDOF83__NoAKGVjNWM5MWMyOTYxMWE2NzA0M2JkMzZiNGM0MDlmZDkzOGRkZTJlMGI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"4ea6f06a9fad68c4f79ee7df9d869e90155f6338","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4ea6f06a9fad68c4f79ee7df9d869e90155f6338"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ec5c91c29611a67043bd36b4c409fd938dde2e0b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"348546d623ee31bace9df6a1aa71604b990527ff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/348546d623ee31bace9df6a1aa71604b990527ff"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"2412450215024294c8b6f0a6ceda06039ed627a0","filename":"Alignment/APEEstimation/test/SkimProducer/skimProducer_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/ec5c91c29611a67043bd36b4c409fd938dde2e0b/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/ec5c91c29611a67043bd36b4c409fd938dde2e0b/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py?ref=ec5c91c29611a67043bd36b4c409fd938dde2e0b","patch":"@@ -205,3 +205,4 @@\n ## Outpath\n ##\n process.outpath = cms.EndPath(process.out)\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:15 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"13b2bb695bf1d69ca53fdef92df6753a219a94dc7700a5d3c51866607065562c"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:59 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4562'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '438'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF30:117B54:7E1736A:7EBEF82:661E70BF')] +{"sha":"348546d623ee31bace9df6a1aa71604b990527ff","node_id":"C_kwDOF83__NoAKDM0ODU0NmQ2MjNlZTMxYmFjZTlkZjZhMWFhNzE2MDRiOTkwNTI3ZmY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"2c0bb0e914665b718d14a9f7f43151d020c95970","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2c0bb0e914665b718d14a9f7f43151d020c95970"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/348546d623ee31bace9df6a1aa71604b990527ff","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/348546d623ee31bace9df6a1aa71604b990527ff","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"456336e23277759bd12515136da78f7fef5dcae6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/456336e23277759bd12515136da78f7fef5dcae6"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"af01a36e11c9e40574697002363af03e8af08085","filename":"Alignment/APEEstimation/test/plottingTools/validationPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/348546d623ee31bace9df6a1aa71604b990527ff/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/348546d623ee31bace9df6a1aa71604b990527ff/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py?ref=348546d623ee31bace9df6a1aa71604b990527ff","patch":"@@ -293,3 +293,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:15 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5d836a4812d07cde792767692ca5709cf62993f397bd69673369c23ca5e84632"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:59 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4561'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '439'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF36:3A6FB9:84FE2E1:85A59D4:661E70BF')] +{"sha":"456336e23277759bd12515136da78f7fef5dcae6","node_id":"C_kwDOF83__NoAKDQ1NjMzNmUyMzI3Nzc1OWJkMTI1MTUxMzZkYTc4ZjdmZWY1ZGNhZTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"3d3a700141e833201f7d02769ed4884c2c5e1975","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3d3a700141e833201f7d02769ed4884c2c5e1975"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/456336e23277759bd12515136da78f7fef5dcae6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/456336e23277759bd12515136da78f7fef5dcae6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4c8cc3cfe87c45e330c41b0728be267288fe5c02","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4c8cc3cfe87c45e330c41b0728be267288fe5c02"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"10286125398107dd8babc05003fc8084dfd1a239","filename":"Alignment/APEEstimation/test/plottingTools/trendPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/456336e23277759bd12515136da78f7fef5dcae6/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/456336e23277759bd12515136da78f7fef5dcae6/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py?ref=456336e23277759bd12515136da78f7fef5dcae6","patch":"@@ -309,3 +309,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"715ad067bf6ee280a67e34f6c894d3e8c0e505864938a6706cd0efa0459c745d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4560'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '440'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF3A:2B2A64:7EABC4C:7F53328:661E70C0')] +{"sha":"4c8cc3cfe87c45e330c41b0728be267288fe5c02","node_id":"C_kwDOF83__NoAKDRjOGNjM2NmZTg3YzQ1ZTMzMGM0MWIwNzI4YmUyNjcyODhmZTVjMDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"6201a2b4167b4796468a458aace564384f59a1b1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6201a2b4167b4796468a458aace564384f59a1b1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4c8cc3cfe87c45e330c41b0728be267288fe5c02","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"72f8ed57763a191fc2fe15eba50e726e950ed6a5","filename":"Alignment/APEEstimation/test/plottingTools/systematicErrors.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/4c8cc3cfe87c45e330c41b0728be267288fe5c02/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/4c8cc3cfe87c45e330c41b0728be267288fe5c02/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py?ref=4c8cc3cfe87c45e330c41b0728be267288fe5c02","patch":"@@ -114,3 +114,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ed5d539666f4e829ec5b0d7eda598ad1cc90393f0d19a3c381638fb0d9be1d4b"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4559'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '441'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF4A:39550C:7E610EE:7F08411:661E70C0')] +{"sha":"7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","node_id":"C_kwDOF83__NoAKDdiZDYxZTYzMzI1NjU5YTM1MjkxY2IxYmYxYTBjZmRiNmViNTdlZWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"9d54baad426346aa19f395ee31b162bec4571a36","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9d54baad426346aa19f395ee31b162bec4571a36"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7bb612cdc6079b0ada45c2eda67de3c756436cb3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bb612cdc6079b0ada45c2eda67de3c756436cb3"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"b7034340bc87e32e4dc513f59642bc22facd29dd","filename":"Alignment/APEEstimation/test/plottingTools/setTDRStyle.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py?ref=7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","patch":"@@ -168,3 +168,4 @@ def setTDRStyle():\n \n tdrStyle.cd()\n return tdrStyle\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5642a0d7577b8497a913aa901ecb8a69a7f1d700a6b73b0a0d89b853241a9986"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4558'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '442'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF4C:1F230F:833A79E:83E36CA:661E70C0')] +{"sha":"7bb612cdc6079b0ada45c2eda67de3c756436cb3","node_id":"C_kwDOF83__NoAKDdiYjYxMmNkYzYwNzliMGFkYTQ1YzJlZGE2N2RlM2M3NTY0MzZjYjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"b82b57b1baaee7e2553d7623c261bffcbee681bc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b82b57b1baaee7e2553d7623c261bffcbee681bc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bb612cdc6079b0ada45c2eda67de3c756436cb3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"32389ecf320569de6f3eb0a721574ba90bc8c751","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/32389ecf320569de6f3eb0a721574ba90bc8c751"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"fc88770ad71ac034a876d729d9050a1e89313d8d","filename":"Alignment/APEEstimation/test/plottingTools/resultPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/7bb612cdc6079b0ada45c2eda67de3c756436cb3/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/7bb612cdc6079b0ada45c2eda67de3c756436cb3/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py?ref=7bb612cdc6079b0ada45c2eda67de3c756436cb3","patch":"@@ -237,3 +237,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"261736b94c9c6111d1db114bdbcc52c6ce6514a4c2f3567a6870a49ee1ed5633"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4557'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '443'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF5C:337464:8175530:821E47F:661E70C0')] +{"sha":"32389ecf320569de6f3eb0a721574ba90bc8c751","node_id":"C_kwDOF83__NoAKDMyMzg5ZWNmMzIwNTY5ZGU2ZjNlYjBhNzIxNTc0YmE5MGJjOGM3NTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"ea6dd5157a2001daa0a3d6f78bb23de46e5fd173","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ea6dd5157a2001daa0a3d6f78bb23de46e5fd173"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/32389ecf320569de6f3eb0a721574ba90bc8c751","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c5b694fb9ddd2908939b0bdf644c997587af5322","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5b694fb9ddd2908939b0bdf644c997587af5322"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"e2903cd9ef95e0b42c719a5415fd269af0058f4d","filename":"Alignment/APEEstimation/test/plottingTools/iterationsPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/32389ecf320569de6f3eb0a721574ba90bc8c751/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/32389ecf320569de6f3eb0a721574ba90bc8c751/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py?ref=32389ecf320569de6f3eb0a721574ba90bc8c751","patch":"@@ -127,3 +127,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"eed1e9c7ee5d7233d1fff8845ca589414309dd67fcd93bb18e9dc7a67e6a4c57"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4556'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '444'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF66:1F230F:833AE30:83E3D52:661E70C1')] +{"sha":"c5b694fb9ddd2908939b0bdf644c997587af5322","node_id":"C_kwDOF83__NoAKGM1YjY5NGZiOWRkZDI5MDg5MzliMGJkZjY0NGM5OTc1ODdhZjUzMjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"5dee9d335cff7d52b54ed1e66acfdcb300b0d227","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5dee9d335cff7d52b54ed1e66acfdcb300b0d227"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5b694fb9ddd2908939b0bdf644c997587af5322","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7768fa4600824dd0b65dd81554cf06f57ce2e636","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7768fa4600824dd0b65dd81554cf06f57ce2e636"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"69b618cf13fce1aa2e356920f8c7426a171aed2b","filename":"Alignment/APEEstimation/test/plottingTools/granularity.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/c5b694fb9ddd2908939b0bdf644c997587af5322/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/c5b694fb9ddd2908939b0bdf644c997587af5322/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py?ref=c5b694fb9ddd2908939b0bdf644c997587af5322","patch":"@@ -44,3 +44,4 @@ def __init__(self):\n # BpixLayer1Out, BpixLayer3In, FpixMinusLayer1, TibLayer1RphiOut, TibLayer4In, TobLayer1StereoOut, TobLayer5Out, TecPlusRing7\n # This can be changed in apeEstimator_cfg or in SectorBuilder_cff\n # For these sectors, additional hit validation plots are created\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1eb59b3aca5b7a313b28599589c88a10d102afa8a73cad745ebd88282ea8c782"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4555'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '445'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF6A:117B54:7E18A82:7EC0692:661E70C1')] +{"sha":"7768fa4600824dd0b65dd81554cf06f57ce2e636","node_id":"C_kwDOF83__NoAKDc3NjhmYTQ2MDA4MjRkZDBiNjVkZDgxNTU0Y2YwNmY1N2NlMmU2MzY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"2f6ecdfbadfca783e72c3a051a439b83a1258876","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2f6ecdfbadfca783e72c3a051a439b83a1258876"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7768fa4600824dd0b65dd81554cf06f57ce2e636","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54643679f52ced591752a2f2e0d2f19d61818ce4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54643679f52ced591752a2f2e0d2f19d61818ce4"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"01be60bba3796cbed5ada4ef8b014c4d69c58656","filename":"Alignment/APEEstimation/test/plottingTools/drawValidation.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/7768fa4600824dd0b65dd81554cf06f57ce2e636/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/7768fa4600824dd0b65dd81554cf06f57ce2e636/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py?ref=7768fa4600824dd0b65dd81554cf06f57ce2e636","patch":"@@ -19,3 +19,4 @@\n plot.addInputFile(\"Design\", \"{base}/hists/Design/baseline/allData.root\".format(base=base),color=ROOT.kRed,marker=0)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d10627b67af308c77c6218d40a75c7a25597b6321a7022da20e483c2bff5e797"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4554'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '446'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF7A:2F5B58:81B05D5:8259413:661E70C1')] +{"sha":"54643679f52ced591752a2f2e0d2f19d61818ce4","node_id":"C_kwDOF83__NoAKDU0NjQzNjc5ZjUyY2VkNTkxNzUyYTJmMmUwZDJmMTlkNjE4MThjZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"4801f0118cfad4ab673cbdf81100f72b88da291d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4801f0118cfad4ab673cbdf81100f72b88da291d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54643679f52ced591752a2f2e0d2f19d61818ce4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6ce2f1ca3368168db2046b418e246a4cd9482340","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6ce2f1ca3368168db2046b418e246a4cd9482340"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"03f041cd1901b5042a2b285f2b2dee6ab9d66139","filename":"Alignment/APEEstimation/test/plottingTools/drawTrend.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/54643679f52ced591752a2f2e0d2f19d61818ce4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/54643679f52ced591752a2f2e0d2f19d61818ce4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py?ref=54643679f52ced591752a2f2e0d2f19d61818ce4","patch":"@@ -35,3 +35,4 @@\n plot.log = False\n \n plot.draw()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"01ac8dda934f29dcea589bb99b82271ac92e55b4c93b8217603a87bd7d2e1e63"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:58 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4553'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '447'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF88:2B2A64:7EAD261:7F54950:661E70C1')] +{"sha":"6ce2f1ca3368168db2046b418e246a4cd9482340","node_id":"C_kwDOF83__NoAKDZjZTJmMWNhMzM2ODE2OGRiMjA0NmI0MThlMjQ2YTRjZDk0ODIzNDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"89291d0cc4c2009ff8ba2c4f5bfcc61c5937d484","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/89291d0cc4c2009ff8ba2c4f5bfcc61c5937d484"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6ce2f1ca3368168db2046b418e246a4cd9482340","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"de5759756a4b88a6da27e6f1d1697373db4da96c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/de5759756a4b88a6da27e6f1d1697373db4da96c"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"616425941405cfb232e41a44f2f9767763b85cb2","filename":"Alignment/APEEstimation/test/plottingTools/drawResults.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/6ce2f1ca3368168db2046b418e246a4cd9482340/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/6ce2f1ca3368168db2046b418e246a4cd9482340/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py?ref=6ce2f1ca3368168db2046b418e246a4cd9482340","patch":"@@ -16,3 +16,4 @@\n plot.addInputFile(\"label\", base+\"/hists/workingArea/iter14/allData_iterationApe.root\", color = ROOT.kGray+2)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d8697acd87552a7ffba44b3ce6472050c5bb865d761674aca7a54d36911bc5f6"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:57 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4552'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '448'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF8A:1AAB48:80B796C:815F7DC:661E70C2')] +{"sha":"de5759756a4b88a6da27e6f1d1697373db4da96c","node_id":"C_kwDOF83__NoAKGRlNTc1OTc1NmE0Yjg4YTZkYTI3ZTZmMWQxNjk3MzczZGI0ZGE5NmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"0da27b42c606d0c01676e63ebc1d4d5a22d39b11","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0da27b42c606d0c01676e63ebc1d4d5a22d39b11"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/de5759756a4b88a6da27e6f1d1697373db4da96c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79f3589b1a2b00e7ad39d538a9e44473864a697d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79f3589b1a2b00e7ad39d538a9e44473864a697d"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"63ce808f98d3fe4f13fcc057298fa0a9acff277e","filename":"Alignment/APEEstimation/test/plottingTools/drawIterations.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/de5759756a4b88a6da27e6f1d1697373db4da96c/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/de5759756a4b88a6da27e6f1d1697373db4da96c/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py?ref=de5759756a4b88a6da27e6f1d1697373db4da96c","patch":"@@ -15,3 +15,4 @@\n plot.setTitle(\"Title\")\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b34f0a2d997f882f511ee12e7e4a18a3e4c0d73ec58378b90dfa22dd3e171b59"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:57 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4551'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '449'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AF98:39550C:7E62ABB:7F09DEE:661E70C2')] +{"sha":"79f3589b1a2b00e7ad39d538a9e44473864a697d","node_id":"C_kwDOF83__NoAKDc5ZjM1ODliMWEyYjAwZTdhZDM5ZDUzOGE5ZTQ0NDczODY0YTY5N2Q","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"4dc0c89d9a3910531c9318e3c75096436f67a606","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4dc0c89d9a3910531c9318e3c75096436f67a606"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79f3589b1a2b00e7ad39d538a9e44473864a697d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"add7d8dadbca5bc85cc272df8cf61276baf04cd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/add7d8dadbca5bc85cc272df8cf61276baf04cd4"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"8f4c50febf4cf0e58c4790d7f779e01306b52092","filename":"Alignment/APEEstimation/test/createTrackerAlignmentErrorExtendedRcd_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/79f3589b1a2b00e7ad39d538a9e44473864a697d/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/79f3589b1a2b00e7ad39d538a9e44473864a697d/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py?ref=79f3589b1a2b00e7ad39d538a9e44473864a697d","patch":"@@ -168,3 +168,4 @@\n )\n \n # We do not even need a path - producer is called anyway...\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4affac9c62824bee4f68781afaa1e43a6b5c1f744ce6cf5d44f7200f4516b3ce"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:57 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4550'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '450'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFA4:2B24A5:F7A60B:F88420:661E70C2')] +{"sha":"add7d8dadbca5bc85cc272df8cf61276baf04cd4","node_id":"C_kwDOF83__NoAKGFkZDdkOGRhZGJjYTViYzg1Y2MyNzJkZjhjZjYxMjc2YmFmMDRjZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"3236c22560ed1514a36c1b4b7bf02be114ec7355","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3236c22560ed1514a36c1b4b7bf02be114ec7355"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/add7d8dadbca5bc85cc272df8cf61276baf04cd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b97f6a05ba120a65d58d103938db8df9baf4f806","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b97f6a05ba120a65d58d103938db8df9baf4f806"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"c65139a711a28dab94ac988b4e0e53a8c57d7ef1","filename":"Alignment/APEEstimation/test/cfgTemplate/apeLocalSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/add7d8dadbca5bc85cc272df8cf61276baf04cd4/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/add7d8dadbca5bc85cc272df8cf61276baf04cd4/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py?ref=add7d8dadbca5bc85cc272df8cf61276baf04cd4","patch":"@@ -112,3 +112,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a0079767ef927421975e1971052f0f3d2b46b239c150d617c17d3268a015eb10"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:57 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4549'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '451'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFAE:1AAB48:80B83A9:81601EE:661E70C2')] +{"sha":"b97f6a05ba120a65d58d103938db8df9baf4f806","node_id":"C_kwDOF83__NoAKGI5N2Y2YTA1YmExMjBhNjVkNThkMTAzOTM4ZGI4ZGY5YmFmNGY4MDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"fa965ce397d1bf0b1fc5b3c1fa73387f48a8037c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fa965ce397d1bf0b1fc5b3c1fa73387f48a8037c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b97f6a05ba120a65d58d103938db8df9baf4f806","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"48e890c532fdfe2150006de853719fab3cffdc34","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48e890c532fdfe2150006de853719fab3cffdc34"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"67bdfaa3cca0c7462f3062cc865e71fe29786401","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimatorSummary_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b97f6a05ba120a65d58d103938db8df9baf4f806/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b97f6a05ba120a65d58d103938db8df9baf4f806/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py?ref=b97f6a05ba120a65d58d103938db8df9baf4f806","patch":"@@ -142,3 +142,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:19 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"fdb4a990b7d9a65b71e0ab30220137e00c90cd0f6c8991f30ae0ff8ead614fe1"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:57 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4548'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '452'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFB0:1294DB:997BE91:9A3CAF7:661E70C3')] +{"sha":"48e890c532fdfe2150006de853719fab3cffdc34","node_id":"C_kwDOF83__NoAKDQ4ZTg5MGM1MzJmZGZlMjE1MDAwNmRlODUzNzE5ZmFiM2NmZmRjMzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"7fd811a9c99d35dcbd83eefde7cec30ff09a741f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7fd811a9c99d35dcbd83eefde7cec30ff09a741f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/48e890c532fdfe2150006de853719fab3cffdc34","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48e890c532fdfe2150006de853719fab3cffdc34","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ac021e5cda8755d345731bee5df062757bdc8d0b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac021e5cda8755d345731bee5df062757bdc8d0b"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"af5ed6947eadeaa60f840e76631920be8fdd6eac","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimator_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/48e890c532fdfe2150006de853719fab3cffdc34/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/48e890c532fdfe2150006de853719fab3cffdc34/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py?ref=48e890c532fdfe2150006de853719fab3cffdc34","patch":"@@ -267,3 +267,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:19 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"863fe674365f36317934a7e7ec0b2f290c869db9b6713f24171b45c4815a1d1c"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:57 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4547'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '453'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFC0:2B2A64:7EAE67A:7F55D65:661E70C3')] +{"sha":"ac021e5cda8755d345731bee5df062757bdc8d0b","node_id":"C_kwDOF83__NoAKGFjMDIxZTVjZGE4NzU1ZDM0NTczMWJlZTVkZjA2Mjc1N2JkYzhkMGI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"c2e5cb0a97d5ca275b81ba07640f0f74610c014d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c2e5cb0a97d5ca275b81ba07640f0f74610c014d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac021e5cda8755d345731bee5df062757bdc8d0b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"577cfd8011ce680166019acad3b78d4d1aec5704","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/577cfd8011ce680166019acad3b78d4d1aec5704"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"967898252d1276a2548c4bab1ba1b3b6456ef235","filename":"Alignment/APEEstimation/test/autoSubmitter/helpers.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/ac021e5cda8755d345731bee5df062757bdc8d0b/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/ac021e5cda8755d345731bee5df062757bdc8d0b/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py?ref=ac021e5cda8755d345731bee5df062757bdc8d0b","patch":"@@ -199,3 +199,4 @@ def loadConditions(dictionary):\n goodConditions = False\n print(\"'{}' is not a valid record name.\".format(condition[\"record\"]))\n return conditions, goodConditions\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:19 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"41107f15b271cb342df9fb9d67b76edcc058fd2fddf5991ec6200bfd8028ce9f"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:56 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4546'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '454'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFC8:1F230F:833CF5B:83E5EBD:661E70C3')] +{"sha":"577cfd8011ce680166019acad3b78d4d1aec5704","node_id":"C_kwDOF83__NoAKDU3N2NmZDgwMTFjZTY4MDE2NjAxOWFjYWQzYjc4ZDRkMWFlYzU3MDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"c54f0c020f41fa54d4dda7d76036e92d784da2f0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c54f0c020f41fa54d4dda7d76036e92d784da2f0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/577cfd8011ce680166019acad3b78d4d1aec5704","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/577cfd8011ce680166019acad3b78d4d1aec5704","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"d5a6f54fcc3e8d9b2397c4e5f896685474c174ac","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitterTemplates.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/577cfd8011ce680166019acad3b78d4d1aec5704/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/577cfd8011ce680166019acad3b78d4d1aec5704/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py?ref=577cfd8011ce680166019acad3b78d4d1aec5704","patch":"@@ -74,3 +74,4 @@ def applyConditions(process):\n )\n process.prefer_my{record}Conditions = cms.ESPrefer(\"PoolDBESSource\", \"my{record}Conditions\")\n \"\"\"\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:19 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9b36573e1323313efee184f99813ff9c849d54114fc709baa5ce60e1cd316660"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:56 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4545'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '455'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFCA:2F5B58:81B245B:825B247:661E70C3')] +{"sha":"d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","node_id":"C_kwDOF83__NoAKGQzZWQ3OGExYmI2YWJmMTJhYTMwYjMxMzRjNGU1MDZmMmE1ZjhkNTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"9f230834e36af0eb754d1eb804cbbbf37a22ce52","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9f230834e36af0eb754d1eb804cbbbf37a22ce52"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a1585e75d345a0aa57d3d82947b0fe54acb14eb6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1585e75d345a0aa57d3d82947b0fe54acb14eb6"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"381c957d95d467117577295a9053ee78b9978320","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py?ref=d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","patch":"@@ -611,3 +611,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:20 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"0447cf93d73cf3553f59c41991c1dd02132d899eba8b79d39925558f0258a97c"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:56 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4544'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '456'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFD4:14E79:7B24796:7BCD89A:661E70C4')] +{"sha":"a1585e75d345a0aa57d3d82947b0fe54acb14eb6","node_id":"C_kwDOF83__NoAKGExNTg1ZTc1ZDM0NWEwYWE1N2QzZDgyOTQ3YjBmZTU0YWNiMTRlYjY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"c545a539046669576ca5222662f9cd8cca0562ba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c545a539046669576ca5222662f9cd8cca0562ba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9687f4e8953e009205e255f49ace95dda6413888","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9687f4e8953e009205e255f49ace95dda6413888"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"12559d4c8e039007fcc4bd28cfc1bc5da91ae659","filename":"Alignment/APEEstimation/test/apeTreeCreateDefault_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/a1585e75d345a0aa57d3d82947b0fe54acb14eb6/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/a1585e75d345a0aa57d3d82947b0fe54acb14eb6/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py?ref=a1585e75d345a0aa57d3d82947b0fe54acb14eb6","patch":"@@ -133,3 +133,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:20 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5f2f01ac66589518a1dcab0d16b0080894a06332cfe0942e992d117d272f7602"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:56 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4543'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '457'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFE4:1F230F:833D90A:83E6865:661E70C4')] +{"sha":"9687f4e8953e009205e255f49ace95dda6413888","node_id":"C_kwDOF83__NoAKDk2ODdmNGU4OTUzZTAwOTIwNWUyNTVmNDlhY2U5NWRkYTY0MTM4ODg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"a0bb4a1b7fc956a8a6183d70b8d4a98eef1ddefc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a0bb4a1b7fc956a8a6183d70b8d4a98eef1ddefc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9687f4e8953e009205e255f49ace95dda6413888","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9687f4e8953e009205e255f49ace95dda6413888","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"62b4517e606f00a5155e904306a2cdffbdb686e4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/62b4517e606f00a5155e904306a2cdffbdb686e4"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"82025f076ada050be8e40a327dfe374b6844d3dd","filename":"Alignment/APEEstimation/python/TriggerSelection_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/9687f4e8953e009205e255f49ace95dda6413888/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/9687f4e8953e009205e255f49ace95dda6413888/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py?ref=9687f4e8953e009205e255f49ace95dda6413888","patch":"@@ -26,3 +26,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:20 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ad0f7b060fb12057effd3f9543f2384dde9c9c05b6776418200dc76b8c929934"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:56 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4542'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '458'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFEC:20E30:7D856CC:7E2E5E5:661E70C4')] +{"sha":"62b4517e606f00a5155e904306a2cdffbdb686e4","node_id":"C_kwDOF83__NoAKDYyYjQ1MTdlNjA2ZjAwYTUxNTVlOTA0MzA2YTJjZGZmYmRiNjg2ZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"ff3f2da01f1fb109e3f578e48e799f86a4848c08","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ff3f2da01f1fb109e3f578e48e799f86a4848c08"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/62b4517e606f00a5155e904306a2cdffbdb686e4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"acd63acec5999824c69d122ee9bfe4e486175edf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/acd63acec5999824c69d122ee9bfe4e486175edf"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"ede8c99a7e694ac539439cd391fb259d06b77e5d","filename":"Alignment/APEEstimation/python/TrackRefitter_38T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/62b4517e606f00a5155e904306a2cdffbdb686e4/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/62b4517e606f00a5155e904306a2cdffbdb686e4/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py?ref=62b4517e606f00a5155e904306a2cdffbdb686e4","patch":"@@ -42,3 +42,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:20 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1303f81498f8c76c76ad77ff2205ddd6ce34b241be32351f9a9a325b49f69096"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:56 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4541'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '459'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B6CC:117B54:7E1B6F5:7EC3334:661E70C4')] +{"sha":"acd63acec5999824c69d122ee9bfe4e486175edf","node_id":"C_kwDOF83__NoAKGFjZDYzYWNlYzU5OTk4MjRjNjlkMTIyZWU5YmZlNGU0ODYxNzVlZGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"73de3071727dd5e45b7c78070eae728570b23fe1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/73de3071727dd5e45b7c78070eae728570b23fe1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/acd63acec5999824c69d122ee9bfe4e486175edf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/acd63acec5999824c69d122ee9bfe4e486175edf","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8c926930d03076afbc7f8385f6bd00ce8b1a1c01","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c926930d03076afbc7f8385f6bd00ce8b1a1c01"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"8a508a1c472165f5355c0ef004fd427908a51375","filename":"Alignment/APEEstimation/python/SectorBuilder_Tob_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/acd63acec5999824c69d122ee9bfe4e486175edf/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/acd63acec5999824c69d122ee9bfe4e486175edf/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py?ref=acd63acec5999824c69d122ee9bfe4e486175edf","patch":"@@ -253,3 +253,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"fed09af9f49f220d3b9e3d1298c3fe23ff2d2a07d428d5e65e7b54202e6f347e"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4540'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '460'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B6DC:38D48F:7F3CF23:7FE4DC2:661E70C5')] +{"sha":"8c926930d03076afbc7f8385f6bd00ce8b1a1c01","node_id":"C_kwDOF83__NoAKDhjOTI2OTMwZDAzMDc2YWZiYzdmODM4NWY2YmQwMGNlOGIxYTFjMDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"1accb80ab9117a43b65686d1484a886b8572d931","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1accb80ab9117a43b65686d1484a886b8572d931"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"2292b97aa2f737afbdec97b09e463726980346fa","filename":"Alignment/APEEstimation/python/SectorBuilder_Tid_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/8c926930d03076afbc7f8385f6bd00ce8b1a1c01/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/8c926930d03076afbc7f8385f6bd00ce8b1a1c01/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py?ref=8c926930d03076afbc7f8385f6bd00ce8b1a1c01","patch":"@@ -253,3 +253,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"64b3e0eb763c366b3bda2ee55014357a9cc948c844cfae70f580a8e323559a0b"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4539'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '461'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B6EC:1294DB:997DB15:9A3E773:661E70C5')] +{"sha":"5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","node_id":"C_kwDOF83__NoAKDViN2I1NmZmODg4NjI3ZDBkYmMxMzQwZWQyZjVmN2ExZDI5NjE4Zjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"edd0bdfb4ad28e6b210f9a5fb77c554031e8ee55","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/edd0bdfb4ad28e6b210f9a5fb77c554031e8ee55"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa29a9f267a1c45ffa701242e9250f2ba50991df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa29a9f267a1c45ffa701242e9250f2ba50991df"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"86f7703d587d59e570b64fc0c2f6aa8787c1e4b1","filename":"Alignment/APEEstimation/python/SectorBuilder_Tib_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py?ref=5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","patch":"@@ -212,3 +212,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4da4a3166404fd3a73152f331f32f48ae9366c5875437649d89f091d7f05e779"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4538'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '462'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B6FC:1AAB48:80BA60E:8162474:661E70C5')] +{"sha":"fa29a9f267a1c45ffa701242e9250f2ba50991df","node_id":"C_kwDOF83__NoAKGZhMjlhOWYyNjdhMWM0NWZmYTcwMTI0MmU5MjUwZjJiYTUwOTkxZGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"a411a65f9cdc442d4530080b2eeff1bcd51fbccd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a411a65f9cdc442d4530080b2eeff1bcd51fbccd"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa29a9f267a1c45ffa701242e9250f2ba50991df","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c84a9d9f368018e0672e7d2e931f8ae24a90ad83","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c84a9d9f368018e0672e7d2e931f8ae24a90ad83"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"02f5b3ac9c70762afb5da8ed2d29869337f2bc63","filename":"Alignment/APEEstimation/python/SectorBuilder_Tec_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fa29a9f267a1c45ffa701242e9250f2ba50991df/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fa29a9f267a1c45ffa701242e9250f2ba50991df/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py?ref=fa29a9f267a1c45ffa701242e9250f2ba50991df","patch":"@@ -421,3 +421,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"715344b0a4e51f7055a3eabe7cecbf4fdeef0102696ae9dae0f41212dca51fbe"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4537'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '463'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B70A:127A77:82E1C54:838976C:661E70C5')] +{"sha":"c84a9d9f368018e0672e7d2e931f8ae24a90ad83","node_id":"C_kwDOF83__NoAKGM4NGE5ZDlmMzY4MDE4ZTA2NzJlN2QyZTkzMWY4YWUyNGE5MGFkODM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"f45fb80386c5b459086a3dc5595ff8714ff97687","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f45fb80386c5b459086a3dc5595ff8714ff97687"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"561d6cfcd9df7f9567c66bd0f638d602081c02c5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/561d6cfcd9df7f9567c66bd0f638d602081c02c5"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"4b1fb0f9fdf497b5ff86a22e8e73b961f4c25e71","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_Phase0_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/c84a9d9f368018e0672e7d2e931f8ae24a90ad83/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/c84a9d9f368018e0672e7d2e931f8ae24a90ad83/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py?ref=c84a9d9f368018e0672e7d2e931f8ae24a90ad83","patch":"@@ -124,3 +124,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"f12f67cfd09cbd06d93821548eef6d57119667059accd240615d3b7075f04c1f"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4536'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '464'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B70C:15F874:8438E5F:84E1CFA:661E70C6')] +{"sha":"561d6cfcd9df7f9567c66bd0f638d602081c02c5","node_id":"C_kwDOF83__NoAKDU2MWQ2Y2ZjZDlkZjdmOTU2N2M2NmJkMGY2MzhkNjAyMDgxYzAyYzU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"8b439ff7fca802596e2e169290f2296d1dd412e1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8b439ff7fca802596e2e169290f2296d1dd412e1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/561d6cfcd9df7f9567c66bd0f638d602081c02c5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9cbfcbb09eae7cac65425211c039a8f252d49143","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9cbfcbb09eae7cac65425211c039a8f252d49143"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"626849ade48b6cb9318c504d36f4a90db0614c6a","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/561d6cfcd9df7f9567c66bd0f638d602081c02c5/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/561d6cfcd9df7f9567c66bd0f638d602081c02c5/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py?ref=561d6cfcd9df7f9567c66bd0f638d602081c02c5","patch":"@@ -154,3 +154,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"8cbcb378a067addac6b5d4a129239bc990b589ac044d9eee2e8fd47b728e42ad"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4535'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '465'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B71C:1AAB48:80BAF80:8162DF2:661E70C6')] +{"sha":"9cbfcbb09eae7cac65425211c039a8f252d49143","node_id":"C_kwDOF83__NoAKDljYmZjYmIwOWVhZTdjYWM2NTQyNTIxMWMwMzlhOGYyNTJkNDkxNDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"c19e228bf08daac524ad2d56c10e16eec7ebef14","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c19e228bf08daac524ad2d56c10e16eec7ebef14"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9cbfcbb09eae7cac65425211c039a8f252d49143","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"c2e852bd0671ee7480ceffdf9817db7b8f7713ab","filename":"Alignment/APEEstimation/python/SectorBuilder_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/9cbfcbb09eae7cac65425211c039a8f252d49143/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/9cbfcbb09eae7cac65425211c039a8f252d49143/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py?ref=9cbfcbb09eae7cac65425211c039a8f252d49143","patch":"@@ -32,3 +32,4 @@\n posY = cms.vdouble(), #(-120.,120.) must contain Intervals\n posZ = cms.vdouble() #(-280.,280.) must contain Intervals\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"be3ffc7584e61900e8ce555706a1623118d7ffa956eb10302c5551c4feecd6d6"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4534'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '466'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B720:2B2A64:7EB0E3A:7F58554:661E70C6')] +{"sha":"a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","node_id":"C_kwDOF83__NoAKGEzYjBkYmFhNTQzOTg2Y2E5NDNlMWRkN2ExZGVkNTgxYjc1ZWQ0MmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"413891e07ffb962450fdd61a75da8e0813bc7625","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/413891e07ffb962450fdd61a75da8e0813bc7625"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"639802afc54c74ac0dc8b396099bf5c8f233dd91","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/639802afc54c74ac0dc8b396099bf5c8f233dd91"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"a8c4a4af5fc6768816ee13b3dfc36c61daf25363","filename":"Alignment/APEEstimation/python/SectorBuilder_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py?ref=a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","patch":"@@ -132,3 +132,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1692d25597da60bb3624e394c5b5690d75627756497856d3b10fb90823711769"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4533'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '467'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B722:20E30:7D87324:7E30275:661E70C6')] +{"sha":"639802afc54c74ac0dc8b396099bf5c8f233dd91","node_id":"C_kwDOF83__NoAKDYzOTgwMmFmYzU0Yzc0YWMwZGM4YjM5NjA5OWJmNWM4ZjIzM2RkOTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"ea2b2bd36674fdba6641b22a8ecb04f4f6b27fe2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ea2b2bd36674fdba6641b22a8ecb04f4f6b27fe2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/639802afc54c74ac0dc8b396099bf5c8f233dd91","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"f39d7c3c0cce2c48e772aab2f7d959616e24bc6a","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_Phase0_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/639802afc54c74ac0dc8b396099bf5c8f233dd91/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/639802afc54c74ac0dc8b396099bf5c8f233dd91/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py?ref=639802afc54c74ac0dc8b396099bf5c8f233dd91","patch":"@@ -95,3 +95,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"23028dd5b7e3dfe88c74576a6e3c3acf38e232c9497f2b7c8ea30a115695eee4"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:54 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4532'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '468'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B728:127A77:82E2BC4:838A6FD:661E70C7')] +{"sha":"fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","node_id":"C_kwDOF83__NoAKGZiMDcwZTQ3Y2I1YTdhZjEyNGJiMmNjNzhjMDBiMzlkOGQ5NTY3ZWM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"2fada430faba664c4a955a5c816ca675da716cfc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2fada430faba664c4a955a5c816ca675da716cfc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2aaed36eb31d0b944c227a24799b77e101cc22f2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2aaed36eb31d0b944c227a24799b77e101cc22f2"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"25e7c20f7ca2f28260a83780c19acac9cc19768f","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py?ref=fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","patch":"@@ -110,3 +110,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"f7bf2ede68f4f4d6a8c1458bf1d1262e3e6b6bb827801a688bcebc437005ef20"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:54 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4531'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '469'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B72C:3A6FB9:850451F:85ABC54:661E70C7')] +{"sha":"2aaed36eb31d0b944c227a24799b77e101cc22f2","node_id":"C_kwDOF83__NoAKDJhYWVkMzZlYjMxZDBiOTQ0YzIyN2EyNDc5OWI3N2UxMDFjYzIyZjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"6efe70a21b279efeac2cf929adbdf71fefe286cd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6efe70a21b279efeac2cf929adbdf71fefe286cd"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2aaed36eb31d0b944c227a24799b77e101cc22f2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8965abe7d624415d97cadc713b7e149d71ff65f1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8965abe7d624415d97cadc713b7e149d71ff65f1"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"4cfc76e15c4e05d8f42cb36bb3be265f39f630c0","filename":"Alignment/APEEstimation/python/samples/MC_UnitTest_TkAlMuonIsolated_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2aaed36eb31d0b944c227a24799b77e101cc22f2/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2aaed36eb31d0b944c227a24799b77e101cc22f2/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py?ref=2aaed36eb31d0b944c227a24799b77e101cc22f2","patch":"@@ -18,3 +18,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"af529821efb9c842911f8cbd98ee4ba4e273e0765433c62770234c188b1f81ed"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:54 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4530'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '470'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B732:1AAB48:80BBE7E:8163CF4:661E70C7')] +{"sha":"8965abe7d624415d97cadc713b7e149d71ff65f1","node_id":"C_kwDOF83__NoAKDg5NjVhYmU3ZDYyNDQxNWQ5N2NhZGM3MTNiN2UxNDlkNzFmZjY1ZjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"1081d42476a3f4f419f6123387738ecffa28e074","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1081d42476a3f4f419f6123387738ecffa28e074"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8965abe7d624415d97cadc713b7e149d71ff65f1","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"5ccb672a5ee21315c404eb68c4a434e2ee7b8887","filename":"Alignment/APEEstimation/python/samples/MC_UL16_ttbar_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/8965abe7d624415d97cadc713b7e149d71ff65f1/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/8965abe7d624415d97cadc713b7e149d71ff65f1/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py?ref=8965abe7d624415d97cadc713b7e149d71ff65f1","patch":"@@ -57,3 +57,4 @@\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0920227F-8FE9-C641-81B1-E4E33CBC50DE.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0837296D-D6B4-4244-8BB8-4E01D53DA5EF.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/060F5791-2313-2241-A6DE-729007C98C57.root'])\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2d2675e8e7c3d1b78f22e24a0a21f0b934a26cf9b7d4975de7631733e9652891"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:54 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4529'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '471'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B740:117B54:7E1DA70:7EC56DE:661E70C7')] +{"sha":"e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","node_id":"C_kwDOF83__NoAKGU1YjdlMWI2MmY2Y2VjMmZhNDdiNmIyNWVmNmZjZjcyMjViYWRjMjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"953200290b9ea8d399019baa124d5d74e2b145b5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/953200290b9ea8d399019baa124d5d74e2b145b5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"89f220f19348e3c2f0c4c6dc7945d469f1331786","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/89f220f19348e3c2f0c4c6dc7945d469f1331786"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"434ce5f09947dcaaeca656bdb33f300ed46117e0","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py?ref=e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","patch":"@@ -63,3 +63,4 @@\n ] )\n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a18b288fad2a5552382a5fc2b3ccd3637a6f0129ca45311b3505727f6f10a049"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:54 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4528'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '472'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B74A:3A6FB9:8504D41:85AC48F:661E70C7')] +{"sha":"89f220f19348e3c2f0c4c6dc7945d469f1331786","node_id":"C_kwDOF83__NoAKDg5ZjIyMGYxOTM0OGUzYzJmMGM0YzZkYzc5NDVkNDY5ZjEzMzE3ODY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"ca0b5cc489f32297be4b323ca83f6752e219a93a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ca0b5cc489f32297be4b323ca83f6752e219a93a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/89f220f19348e3c2f0c4c6dc7945d469f1331786","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2382eabec2dab6ab48fc7186266ccb6c7b964dc3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2382eabec2dab6ab48fc7186266ccb6c7b964dc3"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"e9ffad09f2e2ec97fbb44650bed8e6525e4e1ab7","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/89f220f19348e3c2f0c4c6dc7945d469f1331786/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/89f220f19348e3c2f0c4c6dc7945d469f1331786/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py?ref=89f220f19348e3c2f0c4c6dc7945d469f1331786","patch":"@@ -22,3 +22,4 @@\n ] )\n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"aadcc4127765721c84c7884c39e1a7dd6e02dae102009749f7bcfb4bed25cd52"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:54 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4527'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '473'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B75A:29BB20:7D6CB03:7E1431E:661E70C8')] +{"sha":"2382eabec2dab6ab48fc7186266ccb6c7b964dc3","node_id":"C_kwDOF83__NoAKDIzODJlYWJlYzJkYWI2YWI0OGZjNzE4NjI2NmNjYjZjN2I5NjRkYzM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"11ff41a0805431ecc8b92c47bdfc1bc7edb58d7f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/11ff41a0805431ecc8b92c47bdfc1bc7edb58d7f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b16a737b809df919dd2e8e3ab615b1cfbe112bd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b16a737b809df919dd2e8e3ab615b1cfbe112bd4"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"5324a43787666746b8add627370e9e8a97584f21","filename":"Alignment/APEEstimation/python/samples/Data_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2382eabec2dab6ab48fc7186266ccb6c7b964dc3/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2382eabec2dab6ab48fc7186266ccb6c7b964dc3/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py?ref=2382eabec2dab6ab48fc7186266ccb6c7b964dc3","patch":"@@ -26,3 +26,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"f92c3c2c5e5183ff80726f1e24340cd59939337160cfd5f547296095454e7afb"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:54 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4526'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '474'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B766:1294DB:9980133:9A40DCE:661E70C8')] +{"sha":"b16a737b809df919dd2e8e3ab615b1cfbe112bd4","node_id":"C_kwDOF83__NoAKGIxNmE3MzdiODA5ZGY5MTlkZDJlOGUzYWI2MTViMWNmYmUxMTJiZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"bad34a10e058de4e4e86cb13bae4f8336e628fe8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bad34a10e058de4e4e86cb13bae4f8336e628fe8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f3b440e9ca574ac4971cc1478dae15a25e4357c4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f3b440e9ca574ac4971cc1478dae15a25e4357c4"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"a27fa224cbaaf0eff8d60872deb62cd42b5c3e99","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/b16a737b809df919dd2e8e3ab615b1cfbe112bd4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/b16a737b809df919dd2e8e3ab615b1cfbe112bd4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py?ref=b16a737b809df919dd2e8e3ab615b1cfbe112bd4","patch":"@@ -30,3 +30,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9cda2a4ed5d52450b78443e2f3a3f55e3ec4845b082e79ae4f7bc72bc7af6a1e"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:54 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4525'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '475'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B774:14E79:7B27F4C:7BD108E:661E70C8')] +{"sha":"f3b440e9ca574ac4971cc1478dae15a25e4357c4","node_id":"C_kwDOF83__NoAKGYzYjQ0MGU5Y2E1NzRhYzQ5NzFjYzE0NzhkYWUxNWEyNWU0MzU3YzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"f0c3e3d6ac6029c6a12814bfafa7d1215eaefd2e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f0c3e3d6ac6029c6a12814bfafa7d1215eaefd2e"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f3b440e9ca574ac4971cc1478dae15a25e4357c4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"19e21e35e8907ecd1c2e9d0a8f2218db681b2726","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/f3b440e9ca574ac4971cc1478dae15a25e4357c4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/f3b440e9ca574ac4971cc1478dae15a25e4357c4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py?ref=f3b440e9ca574ac4971cc1478dae15a25e4357c4","patch":"@@ -31,3 +31,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"902da0e5d15f9e913cbbc2907158f44ca74eb7fa1f2774faa8d917cde897d16c"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4524'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '476'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B778:C1461:862B499:86D4417:661E70C8')] +{"sha":"f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","node_id":"C_kwDOF83__NoAKGY1YmZmODVmMTM5M2FmZTQ1NWZlNDJhNDg3M2ZmM2ZjZmNmYzAyYjU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"6c3eff6c9fa350668233e3c158c33e5777f077aa","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6c3eff6c9fa350668233e3c158c33e5777f077aa"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d18965eed76efeb820839413951e7b490756ded2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d18965eed76efeb820839413951e7b490756ded2"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"926a2fd7728d4b7a7784bd6b4bfcb8855e57f66f","filename":"Alignment/APEEstimation/python/PrivateSkim_EventContent_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py?ref=f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","patch":"@@ -43,3 +43,4 @@\n \t#'drop *_MEtoEDMConverter_*_*',\n ),\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:25 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4364ccdda7e083beffdbc06f1d498e212715bc67afcc8f1163827d4f25293a86"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4523'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '477'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B786:28A0B9:298EF57:29B58D3:661E70C9')] +{"sha":"d18965eed76efeb820839413951e7b490756ded2","node_id":"C_kwDOF83__NoAKGQxODk2NWVlZDc2ZWZlYjgyMDgzOTQxMzk1MWU3YjQ5MDc1NmRlZDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"2217eae6f286992914af68ec89c06b8bda3962e3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2217eae6f286992914af68ec89c06b8bda3962e3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d18965eed76efeb820839413951e7b490756ded2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d18965eed76efeb820839413951e7b490756ded2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d9a57159b2c24366f0d1b880aab463aaaf5da412","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d9a57159b2c24366f0d1b880aab463aaaf5da412"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"994cb46514551b9bd545e36d5cfa0900f30dceb0","filename":"Alignment/APEEstimation/python/conditions/init.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/d18965eed76efeb820839413951e7b490756ded2/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/d18965eed76efeb820839413951e7b490756ded2/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py?ref=d18965eed76efeb820839413951e7b490756ded2","patch":"@@ -1 +1,2 @@\n #Automatically created by SCRAM\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:25 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b253c40a0986578ca11c61c568b8aac27649c681b25cab8f2f6945fe866c3c7c"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4522'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '478'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B794:1AAB48:80BD5E1:816547E:661E70C9')] +{"sha":"d9a57159b2c24366f0d1b880aab463aaaf5da412","node_id":"C_kwDOF83__NoAKGQ5YTU3MTU5YjJjMjQzNjZmMGQxYjg4MGFhYjQ2M2FhYWY1ZGE0MTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"af5c7dd9931ebbc0af6c2704467ac88ca87b13f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/af5c7dd9931ebbc0af6c2704467ac88ca87b13f4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d9a57159b2c24366f0d1b880aab463aaaf5da412","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5710511d889195da564138babf2d14dc82f0b27f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5710511d889195da564138babf2d14dc82f0b27f"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"909bc01cda8be93058f669684eb1ee49bd8e8323","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/d9a57159b2c24366f0d1b880aab463aaaf5da412/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/d9a57159b2c24366f0d1b880aab463aaaf5da412/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py?ref=d9a57159b2c24366f0d1b880aab463aaaf5da412","patch":"@@ -47,3 +47,4 @@\n ApeOutputFile = cms.string(os.environ['CMSSW_BASE'] + '/src/Alignment/APEEstimation/hists/apeOutput.txt'),\n \n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:25 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c4902ebbbdc265a28d113985c435f89f5ed28978d886ee4ac122737a2b7d4c75"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4521'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '479'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B79E:C1461:862BE3E:86D4D5B:661E70C9')] +{"sha":"5710511d889195da564138babf2d14dc82f0b27f","node_id":"C_kwDOF83__NoAKDU3MTA1MTFkODg5MTk1ZGE1NjQxMzhiYWJmMmQxNGRjODJmMGIyN2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"53a4e6779dd443ee456cfe89ecf28319ed9b85bb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/53a4e6779dd443ee456cfe89ecf28319ed9b85bb"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5710511d889195da564138babf2d14dc82f0b27f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5710511d889195da564138babf2d14dc82f0b27f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8afccd866520ab62c501af476ad5b3b9af8f77eb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8afccd866520ab62c501af476ad5b3b9af8f77eb"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"47e8b236b0cb387592ec908ca3d3475e3d6abbe8","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/5710511d889195da564138babf2d14dc82f0b27f/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/5710511d889195da564138babf2d14dc82f0b27f/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py?ref=5710511d889195da564138babf2d14dc82f0b27f","patch":"@@ -24,3 +24,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:25 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5cef745dc7ce00215c13b187df20c9709e4be2c3fd483019f872c7955556d84e"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4520'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '480'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B7AA:38D48F:7F40DD7:7FE8CA3:661E70C9')] +{"sha":"8afccd866520ab62c501af476ad5b3b9af8f77eb","node_id":"C_kwDOF83__NoAKDhhZmNjZDg2NjUyMGFiNjJjNTAxYWY0NzZhZDViM2I5YWY4Zjc3ZWI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"6c81a6cb7c3ba6bd69df6e1715d38b2501ad8d31","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6c81a6cb7c3ba6bd69df6e1715d38b2501ad8d31"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8afccd866520ab62c501af476ad5b3b9af8f77eb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e51cf1bf814047845cf0e6a09112abb57a0b6299","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e51cf1bf814047845cf0e6a09112abb57a0b6299"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"06fd47eb14b15dc3b226b529ad54bebb3b43bc75","filename":"Alignment/APEEstimation/python/ApeEstimator_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/8afccd866520ab62c501af476ad5b3b9af8f77eb/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/8afccd866520ab62c501af476ad5b3b9af8f77eb/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py?ref=8afccd866520ab62c501af476ad5b3b9af8f77eb","patch":"@@ -98,3 +98,4 @@\n #Define intervals in residual error for calculation of APE (one estimation per interval), (for APE calculation)\n residualErrorBinning = cms.vdouble(),\n )\n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:26 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b5af2f5d1197d5dd2307335a02dec0d872d71940677f6cf196da4eca13139b7e"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4519'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '481'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B7BA:2B24A5:F8037E:F8E1C1:661E70CA')] +{"sha":"e51cf1bf814047845cf0e6a09112abb57a0b6299","node_id":"C_kwDOF83__NoAKGU1MWNmMWJmODE0MDQ3ODQ1Y2YwZTZhMDkxMTJhYmI1N2EwYjYyOTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"d1d3223bbfee32e1192a1e4afe894fc2ac98f90f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d1d3223bbfee32e1192a1e4afe894fc2ac98f90f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e51cf1bf814047845cf0e6a09112abb57a0b6299","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"247c0caac63c4155f2a10acc26b59d7547ff6f21","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/247c0caac63c4155f2a10acc26b59d7547ff6f21"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"5522b0dfa2ac9f6208791f0937b6687dcd4ecdea","filename":"Alignment/APEEstimation/python/ApeEstimator_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/e51cf1bf814047845cf0e6a09112abb57a0b6299/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/e51cf1bf814047845cf0e6a09112abb57a0b6299/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py?ref=e51cf1bf814047845cf0e6a09112abb57a0b6299","patch":"@@ -62,3 +62,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:26 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e828bf433e38102edbc85b19c8b190852957b2acdc1bc6ae1a35e94adfdefcde"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4518'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '482'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B7BE:28A0B9:298FF0A:29B68DC:661E70CA')] +{"sha":"247c0caac63c4155f2a10acc26b59d7547ff6f21","node_id":"C_kwDOF83__NoAKDI0N2MwY2FhYzYzYzQxNTVmMmExMGFjYzI2YjU5ZDc1NDdmZjZmMjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"5ee2fed7809c2c4a64b2a9cfb6d66a19763783df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5ee2fed7809c2c4a64b2a9cfb6d66a19763783df"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/247c0caac63c4155f2a10acc26b59d7547ff6f21","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6955d8ed3dc748e23c565b2978083036918468f6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6955d8ed3dc748e23c565b2978083036918468f6"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"47ba2c8d1ad64c6a26cef1eed4777be4db5dd5c5","filename":"Alignment/APEEstimation/python/AlignmentTrackSelector_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/247c0caac63c4155f2a10acc26b59d7547ff6f21/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/247c0caac63c4155f2a10acc26b59d7547ff6f21/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py?ref=247c0caac63c4155f2a10acc26b59d7547ff6f21","patch":"@@ -110,3 +110,4 @@\n \n \n \n+# dummy dummy"}]} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 12:36:26 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"37f0a12bec55cf504631a1a17aaff8fbf53136ecba723d8a95d98529f257379d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:44:53 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4517'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '483'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B7C2:3A2467:99DC2CC:9A9CFED:661E70CA')] +{"sha":"6955d8ed3dc748e23c565b2978083036918468f6","node_id":"C_kwDOF83__NoAKDY5NTVkOGVkM2RjNzQ4ZTIzYzU2NWIyOTc4MDgzMDM2OTE4NDY4ZjY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"5e054c4761f3d6f5b7a20fbd107796ffaf7aa773","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5e054c4761f3d6f5b7a20fbd107796ffaf7aa773"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6955d8ed3dc748e23c565b2978083036918468f6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6955d8ed3dc748e23c565b2978083036918468f6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"cfd9e48cab9681ba2d67961b48b5e82f10dda300","filename":"Alignment/APEEstimation/python/AlcaRecoSelection_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/6955d8ed3dc748e23c565b2978083036918468f6/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/6955d8ed3dc748e23c565b2978083036918468f6/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py?ref=6955d8ed3dc748e23c565b2978083036918468f6","patch":"@@ -60,3 +60,4 @@\n \n \n \n+# dummy dummy"}]} + diff --git a/tests/ReplayData/TestProcessPr.test_many_commits_warn.txt b/tests/ReplayData/TestProcessPr.test_many_commits_warn.txt new file mode 100644 index 000000000000..349a79fd2d2b --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_many_commits_warn.txt @@ -0,0 +1,132 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:31 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cb9c19151520a56bf2918aa887bf22a3bad8aa9795643725493ce05202161831"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4804'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '196'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D05C:2F5B58:6F8BFDB:70251EA:661E59D6')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:47:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:45:47Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:45:47Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:31 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"83588c958016847dbc8d9b9563331733b5a8493d0f6803e6160e14114a150c64"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4803'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '197'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D064:38D48F:6DB3184:6E4B682:661E59D7')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","id":2245729026,"node_id":"PR_kwDOF83__M5syVdt","number":18,"title":"Commit flood","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-04-16T10:47:28Z","updated_at":"2024-04-16T10:51:23Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:31 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4803'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '197'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D068:2B2A64:6D0336E:6D9B10A:661E59D7')] +{"resources":{"core":{"limit":5000,"used":197,"remaining":4803,"reset":1713266570},"search":{"limit":30,"used":0,"remaining":30,"reset":1713265171},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713268711},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713268711},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713265171},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713268711},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713268711},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713268711},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713265171},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713268711},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713265171}},"rate":{"limit":5000,"used":197,"remaining":4803,"reset":1713266570}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:31 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"97b808193bd9f8277ad3118d07a323fae3f58ec3e3889c8de3651164a364e909"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4802'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '198'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D06C:769E0:6E68A85:6F00396:661E59D7')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18","id":1825134445,"node_id":"PR_kwDOF83__M5syVdt","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","number":18,"state":"open","locked":false,"title":"Commit flood","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-04-16T10:47:28Z","updated_at":"2024-04-16T10:51:23Z","closed_at":null,"merged_at":null,"merge_commit_sha":"ad6b604c0efe525f5151558f16145702288e86df","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/fd99bd146e87a00eb90eccef12f487ecc8f4c496","head":{"label":"iarspider-cmssw:commit-flood","ref":"commit-flood","sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:47:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:47:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/18"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/fd99bd146e87a00eb90eccef12f487ecc8f4c496"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":151,"additions":151,"deletions":0,"changed_files":151} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/milestones/4 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:32 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"43d42f7c66c18396bab63e5c6c8feb3b760aaa4d9abdf1763f06a235a0b7d0bf"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:02:44 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4801'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '199'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D074:1294DB:87B28F6:8863990:661E59D8')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:32 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2f713a4040dbdc2f62e7c62fa3c6d312f32c8e92b17944647e90d4926d306cad"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="next", ; rel="last"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4800'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '200'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D082:38D48F:6DB3D29:6E4C21A:661E59D8')] +[{"sha":"cfd9e48cab9681ba2d67961b48b5e82f10dda300","filename":"Alignment/APEEstimation/python/AlcaRecoSelection_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -60,3 +60,4 @@\n \n \n \n+# dummy dummy"},{"sha":"47ba2c8d1ad64c6a26cef1eed4777be4db5dd5c5","filename":"Alignment/APEEstimation/python/AlignmentTrackSelector_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -110,3 +110,4 @@\n \n \n \n+# dummy dummy"},{"sha":"47e8b236b0cb387592ec908ca3d3475e3d6abbe8","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -24,3 +24,4 @@\n \n \n \n+# dummy dummy"},{"sha":"909bc01cda8be93058f669684eb1ee49bd8e8323","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -47,3 +47,4 @@\n ApeOutputFile = cms.string(os.environ['CMSSW_BASE'] + '/src/Alignment/APEEstimation/hists/apeOutput.txt'),\n \n )\n+# dummy dummy"},{"sha":"5522b0dfa2ac9f6208791f0937b6687dcd4ecdea","filename":"Alignment/APEEstimation/python/ApeEstimator_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n \n \n \n+# dummy dummy"},{"sha":"06fd47eb14b15dc3b226b529ad54bebb3b43bc75","filename":"Alignment/APEEstimation/python/ApeEstimator_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -98,3 +98,4 @@\n #Define intervals in residual error for calculation of APE (one estimation per interval), (for APE calculation)\n residualErrorBinning = cms.vdouble(),\n )\n+# dummy dummy"},{"sha":"926a2fd7728d4b7a7784bd6b4bfcb8855e57f66f","filename":"Alignment/APEEstimation/python/PrivateSkim_EventContent_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -43,3 +43,4 @@\n \t#'drop *_MEtoEDMConverter_*_*',\n ),\n )\n+# dummy dummy"},{"sha":"f39d7c3c0cce2c48e772aab2f7d959616e24bc6a","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_Phase0_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -95,3 +95,4 @@\n \n \n \n+# dummy dummy"},{"sha":"25e7c20f7ca2f28260a83780c19acac9cc19768f","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -110,3 +110,4 @@\n \n \n \n+# dummy dummy"},{"sha":"4b1fb0f9fdf497b5ff86a22e8e73b961f4c25e71","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_Phase0_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -124,3 +124,4 @@\n \n \n \n+# dummy dummy"},{"sha":"626849ade48b6cb9318c504d36f4a90db0614c6a","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -154,3 +154,4 @@\n \n \n \n+# dummy dummy"},{"sha":"02f5b3ac9c70762afb5da8ed2d29869337f2bc63","filename":"Alignment/APEEstimation/python/SectorBuilder_Tec_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -421,3 +421,4 @@\n \n \n \n+# dummy dummy"},{"sha":"86f7703d587d59e570b64fc0c2f6aa8787c1e4b1","filename":"Alignment/APEEstimation/python/SectorBuilder_Tib_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -212,3 +212,4 @@\n \n \n \n+# dummy dummy"},{"sha":"2292b97aa2f737afbdec97b09e463726980346fa","filename":"Alignment/APEEstimation/python/SectorBuilder_Tid_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -253,3 +253,4 @@\n \n \n \n+# dummy dummy"},{"sha":"8a508a1c472165f5355c0ef004fd427908a51375","filename":"Alignment/APEEstimation/python/SectorBuilder_Tob_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -253,3 +253,4 @@\n \n \n \n+# dummy dummy"},{"sha":"a8c4a4af5fc6768816ee13b3dfc36c61daf25363","filename":"Alignment/APEEstimation/python/SectorBuilder_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -132,3 +132,4 @@\n \n \n \n+# dummy dummy"},{"sha":"c2e852bd0671ee7480ceffdf9817db7b8f7713ab","filename":"Alignment/APEEstimation/python/SectorBuilder_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n posY = cms.vdouble(), #(-120.,120.) must contain Intervals\n posZ = cms.vdouble() #(-280.,280.) must contain Intervals\n )\n+# dummy dummy"},{"sha":"ede8c99a7e694ac539439cd391fb259d06b77e5d","filename":"Alignment/APEEstimation/python/TrackRefitter_38T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -42,3 +42,4 @@\n \n \n \n+# dummy dummy"},{"sha":"82025f076ada050be8e40a327dfe374b6844d3dd","filename":"Alignment/APEEstimation/python/TriggerSelection_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -26,3 +26,4 @@\n \n \n \n+# dummy dummy"},{"sha":"994cb46514551b9bd545e36d5cfa0900f30dceb0","filename":"Alignment/APEEstimation/python/conditions/init.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -1 +1,2 @@\n #Automatically created by SCRAM\n+# dummy dummy"},{"sha":"19e21e35e8907ecd1c2e9d0a8f2218db681b2726","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -31,3 +31,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"a27fa224cbaaf0eff8d60872deb62cd42b5c3e99","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -30,3 +30,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"5324a43787666746b8add627370e9e8a97584f21","filename":"Alignment/APEEstimation/python/samples/Data_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -26,3 +26,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"5ccb672a5ee21315c404eb68c4a434e2ee7b8887","filename":"Alignment/APEEstimation/python/samples/MC_UL16_ttbar_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -57,3 +57,4 @@\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0920227F-8FE9-C641-81B1-E4E33CBC50DE.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0837296D-D6B4-4244-8BB8-4E01D53DA5EF.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/060F5791-2313-2241-A6DE-729007C98C57.root'])\n+# dummy dummy"},{"sha":"4cfc76e15c4e05d8f42cb36bb3be265f39f630c0","filename":"Alignment/APEEstimation/python/samples/MC_UnitTest_TkAlMuonIsolated_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -18,3 +18,4 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy"},{"sha":"e9ffad09f2e2ec97fbb44650bed8e6525e4e1ab7","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n ] )\n \n \n+# dummy dummy"},{"sha":"434ce5f09947dcaaeca656bdb33f300ed46117e0","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -63,3 +63,4 @@\n ] )\n \n \n+# dummy dummy"},{"sha":"2412450215024294c8b6f0a6ceda06039ed627a0","filename":"Alignment/APEEstimation/test/SkimProducer/skimProducer_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -205,3 +205,4 @@\n ## Outpath\n ##\n process.outpath = cms.EndPath(process.out)\n+# dummy dummy"},{"sha":"d5a54e0e54bcae306f74fec4398d6c830fbe5b60","filename":"Alignment/APEEstimation/test/SkimProducer/skimTemplates.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -88,3 +88,4 @@\n endif\n \"\"\"\n \n+# dummy dummy"},{"sha":"dc17d6c0d3ae82056db2693f9118a88b5f48feb2","filename":"Alignment/APEEstimation/test/SkimProducer/startSkim.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -186,3 +186,4 @@ def main(argv):\n pass # The keyboard interrupt will be forwarded to the subprocesses anyway, stopping them without terminating them immediately\n if __name__ == \"__main__\":\n main(sys.argv)\n+# dummy dummy"},{"sha":"12559d4c8e039007fcc4bd28cfc1bc5da91ae659","filename":"Alignment/APEEstimation/test/apeTreeCreateDefault_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -133,3 +133,4 @@\n \n \n \n+# dummy dummy"},{"sha":"381c957d95d467117577295a9053ee78b9978320","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -611,3 +611,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"d5a6f54fcc3e8d9b2397c4e5f896685474c174ac","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitterTemplates.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -74,3 +74,4 @@ def applyConditions(process):\n )\n process.prefer_my{record}Conditions = cms.ESPrefer(\"PoolDBESSource\", \"my{record}Conditions\")\n \"\"\"\n+# dummy dummy"},{"sha":"967898252d1276a2548c4bab1ba1b3b6456ef235","filename":"Alignment/APEEstimation/test/autoSubmitter/helpers.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -199,3 +199,4 @@ def loadConditions(dictionary):\n goodConditions = False\n print(\"'{}' is not a valid record name.\".format(condition[\"record\"]))\n return conditions, goodConditions\n+# dummy dummy"},{"sha":"67bdfaa3cca0c7462f3062cc865e71fe29786401","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimatorSummary_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -142,3 +142,4 @@\n \n \n \n+# dummy dummy"},{"sha":"af5ed6947eadeaa60f840e76631920be8fdd6eac","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimator_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -267,3 +267,4 @@\n \n \n \n+# dummy dummy"},{"sha":"c65139a711a28dab94ac988b4e0e53a8c57d7ef1","filename":"Alignment/APEEstimation/test/cfgTemplate/apeLocalSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -112,3 +112,4 @@\n \n \n \n+# dummy dummy"},{"sha":"8f4c50febf4cf0e58c4790d7f779e01306b52092","filename":"Alignment/APEEstimation/test/createTrackerAlignmentErrorExtendedRcd_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -168,3 +168,4 @@\n )\n \n # We do not even need a path - producer is called anyway...\n+# dummy dummy"},{"sha":"63ce808f98d3fe4f13fcc057298fa0a9acff277e","filename":"Alignment/APEEstimation/test/plottingTools/drawIterations.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -15,3 +15,4 @@\n plot.setTitle(\"Title\")\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"},{"sha":"616425941405cfb232e41a44f2f9767763b85cb2","filename":"Alignment/APEEstimation/test/plottingTools/drawResults.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -16,3 +16,4 @@\n plot.addInputFile(\"label\", base+\"/hists/workingArea/iter14/allData_iterationApe.root\", color = ROOT.kGray+2)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"},{"sha":"03f041cd1901b5042a2b285f2b2dee6ab9d66139","filename":"Alignment/APEEstimation/test/plottingTools/drawTrend.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -35,3 +35,4 @@\n plot.log = False\n \n plot.draw()\n+# dummy dummy"},{"sha":"01be60bba3796cbed5ada4ef8b014c4d69c58656","filename":"Alignment/APEEstimation/test/plottingTools/drawValidation.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n plot.addInputFile(\"Design\", \"{base}/hists/Design/baseline/allData.root\".format(base=base),color=ROOT.kRed,marker=0)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy"},{"sha":"69b618cf13fce1aa2e356920f8c7426a171aed2b","filename":"Alignment/APEEstimation/test/plottingTools/granularity.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -44,3 +44,4 @@ def __init__(self):\n # BpixLayer1Out, BpixLayer3In, FpixMinusLayer1, TibLayer1RphiOut, TibLayer4In, TobLayer1StereoOut, TobLayer5Out, TecPlusRing7\n # This can be changed in apeEstimator_cfg or in SectorBuilder_cff\n # For these sectors, additional hit validation plots are created\n+# dummy dummy"},{"sha":"e2903cd9ef95e0b42c719a5415fd269af0058f4d","filename":"Alignment/APEEstimation/test/plottingTools/iterationsPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -127,3 +127,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"fc88770ad71ac034a876d729d9050a1e89313d8d","filename":"Alignment/APEEstimation/test/plottingTools/resultPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -237,3 +237,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"b7034340bc87e32e4dc513f59642bc22facd29dd","filename":"Alignment/APEEstimation/test/plottingTools/setTDRStyle.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -168,3 +168,4 @@ def setTDRStyle():\n \n tdrStyle.cd()\n return tdrStyle\n+# dummy dummy"},{"sha":"72f8ed57763a191fc2fe15eba50e726e950ed6a5","filename":"Alignment/APEEstimation/test/plottingTools/systematicErrors.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -114,3 +114,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"10286125398107dd8babc05003fc8084dfd1a239","filename":"Alignment/APEEstimation/test/plottingTools/trendPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -309,3 +309,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"af01a36e11c9e40574697002363af03e8af08085","filename":"Alignment/APEEstimation/test/plottingTools/validationPlotter.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -293,3 +293,4 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy"},{"sha":"4ffb3b11c42ef4aa65462742c8965c3c1263dc65","filename":"Alignment/APEEstimation/test/trackerTreeGenerator_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -88,3 +88,4 @@\n \n \n \n+# dummy dummy"},{"sha":"06b273510f174af8c8399e2871c3f5aeffdf59ae","filename":"Alignment/CocoaApplication/test/cocoaAnalyzer_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -82,3 +82,4 @@\n \n process.p = cms.Path(process.cocoa)\n \n+# dummy dummy"},{"sha":"d02bdb16a75821a5c87b3a1d032edbe2ab05f63a","filename":"Alignment/CommonAlignmentAlgorithm/python/AlignmentParameterStore_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -12,3 +12,4 @@\n )\n )\n \n+# dummy dummy"},{"sha":"747859a31cb854ed1664770622d7e05c22ff09db","filename":"Alignment/CommonAlignmentAlgorithm/python/ApeSettingAlgorithm_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -31,3 +31,4 @@\n # Also note:\n # process.AlignmentProducer.saveApeToDB -- to save as an sqlite file\n # and associated entries in _cfg.py\n+# dummy dummy"},{"sha":"871c1f4bc1e38c61f1385a1d43c0688cd82c17e3","filename":"Alignment/CommonAlignmentAlgorithm/python/SiPixelLorentzAngleCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n # one directly uses the unlabelled version, i.e. \"\"\n lorentzAngleLabel = cms.string(\"fromAlignment\"),\n )\n+# dummy dummy"},{"sha":"6ce31625b1e72bb606171f611d48d441c791bc19","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripBackplaneCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -17,3 +17,4 @@\n # Configuration of the granularity for the backplane correction determination\n BackplaneModuleGroups = cms.PSet(),\n )\n+# dummy dummy"},{"sha":"5291a55b2b45ecae62a32082b0b94c17a960056d","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripLorentzAngleCalibration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n readoutMode = 'deconvolution',\n recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_deco'),\n )\n+# dummy dummy"},{"sha":"b9af2f1101f5e9a012f2ed43fb4f26b72fbc1ee5","filename":"Alignment/CommonAlignmentAlgorithm/test/apeLocalSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -104,3 +104,4 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy"},{"sha":"2391a950ac20ba1921b287c39cd7214b0e3fec5c","filename":"Alignment/CommonAlignmentAlgorithm/test/apeSetting_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -94,3 +94,4 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy"},{"sha":"83cddfa719453e6b918bab73da5403fd064e077e","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonResidualsDefaults_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -11,3 +11,4 @@\n ystdev_bins = cms.uint32(300), ystdev_low = cms.double(0.0), ystdev_high = cms.double(30.0),\n yerronmean_bins = cms.uint32(300), yerronmean_low = cms.double(0.0), yerronmean_high = cms.double(1.0),\n )\n+# dummy dummy"},{"sha":"662ab89add756d599832c641b7ab26f1c719d26c","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonSystemMap1D_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -20,3 +20,4 @@\n useStubPosition = cms.bool(False),\n createNtuple = cms.bool(False)\n )\n+# dummy dummy"},{"sha":"f483b5a4ccdeab05230e1a9037c0cfe396ca5b5b","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonVsCurvature_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -18,3 +18,4 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy"},{"sha":"ff6668d4e2859434466fb87c4002d24343cfd4e9","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorSegmentDifferences_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -16,3 +16,4 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy"},{"sha":"c0be7655db2b7bbeb90b7ed2acef3ce88ffb4e01","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentStats_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -1,2 +1,3 @@\n import FWCore.ParameterSet.Config as cms\n from Alignment.CommonAlignmentMonitor.AlignmentStats_cfi import *\n+# dummy dummy"},{"sha":"91baa52f43f6e950c0e77c5e7fd9acc5f2116204","filename":"Alignment/CommonAlignmentMonitor/test/testAlignmentStats_cfg.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -190,3 +190,4 @@\n process.NewStatsCTF)\n \n process.p2 = cms.Path(process.seqALCARECOTkAlMinBiasSkimmed)\n+# dummy dummy"},{"sha":"895c7abc7def8e403bcaf0cf1e7b5fb99a8fe786","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOMuAlBeamHaloOverlaps = copy.deepcopy(OutALCARECOMuAlBeamHaloOverlaps_noDrop)\n OutALCARECOMuAlBeamHaloOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"0fe5fe669e6beab5e90ced161e923c8ff88e8e32","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -35,3 +35,4 @@\n )\n \n seqALCARECOMuAlBeamHaloOverlaps = cms.Sequence(ALCARECOMuAlBeamHaloOverlapsHLT + ALCARECOMuAlBeamHaloOverlapsDCSFilter + ALCARECOMuAlBeamHaloOverlapsEnergyCut * ALCARECOMuAlBeamHaloOverlaps)\n+# dummy dummy"},{"sha":"ea659b58a2e96de718292249011e8ecd54c6fd8d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOMuAlBeamHalo = copy.deepcopy(OutALCARECOMuAlBeamHalo_noDrop)\n OutALCARECOMuAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"ae076f9d342c0c1465126e03200f9ef1b9fdd675","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -29,3 +29,4 @@\n \n seqALCARECOMuAlBeamHalo = cms.Sequence(ALCARECOMuAlBeamHaloHLT + ALCARECOMuAlBeamHaloDCSFilter + ALCARECOMuAlBeamHalo)\n \n+# dummy dummy"},{"sha":"877ec9b785eeffc02df2f7aaf517fefd4f72284b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n import copy\n OutALCARECOMuAlCalIsolatedMu = copy.deepcopy(OutALCARECOMuAlCalIsolatedMu_noDrop)\n OutALCARECOMuAlCalIsolatedMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"2f2fa7bcdf5dec5ccb84bfba0d1037bbbb3afdfe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -48,3 +48,4 @@\n seqALCARECOMuAlCalIsolatedMu = cms.Sequence(ALCARECOMuAlCalIsolatedMuHLT + ALCARECOMuAlCalIsolatedDCSFilter + ALCARECOMuAlCalIsolatedMu)\n \n seqALCARECOMuAlCalIsolatedMuGeneralTracks = cms.Sequence(ALCARECOMuAlCalIsolatedMuGeneralTracks)\n+# dummy dummy"},{"sha":"e692f91dab0a417c82f71e8668fe62fdaecec892","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n import copy\n OutALCARECOMuAlGlobalCosmicsInCollisions = copy.deepcopy(OutALCARECOMuAlGlobalCosmicsInCollisions_noDrop)\n OutALCARECOMuAlGlobalCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"0f482289c448cb880d9e98cf4b34ff3ae220e2e4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -33,3 +33,4 @@\n )\n \n seqALCARECOMuAlGlobalCosmicsInCollisions = cms.Sequence(ALCARECOMuAlGlobalCosmicsInCollisionsHLT + ALCARECOMuAlGlobalCosmicsInCollisionsDCSFilter + ALCARECOMuAlGlobalCosmicsInCollisions)\n+# dummy dummy"},{"sha":"29d1edc9fbd44d32b3a80481d7574c8b9e9b75f4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -35,3 +35,4 @@\n import copy\n OutALCARECOMuAlGlobalCosmics = copy.deepcopy(OutALCARECOMuAlGlobalCosmics_noDrop)\n OutALCARECOMuAlGlobalCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"86477423de63681eba81e21d86802ec1d7648449","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n seqALCARECOMuAlGlobalCosmicsCombinatorialTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCombinatorialTF)\n seqALCARECOMuAlGlobalCosmicsCosmicTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCosmicTF)\n seqALCARECOMuAlGlobalCosmicsRegionalTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsRegionalTF)\n+# dummy dummy"},{"sha":"3cd238715472e4d745891449f067165210c271cc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -29,3 +29,4 @@\n import copy\n OutALCARECOMuAlOverlaps = copy.deepcopy(OutALCARECOMuAlOverlaps_noDrop)\n OutALCARECOMuAlOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"659d1cc21ac5e925f49b01e8fccd4949ea55d329","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -51,3 +51,4 @@\n seqALCARECOMuAlOverlaps = cms.Sequence(ALCARECOMuAlOverlapsHLT+ALCARECOMuAlOverlapsDCSFilter+ALCARECOMuAlOverlapsMuonSelector*ALCARECOMuAlOverlaps)\n \n seqALCARECOMuAlOverlapsGeneralTracks = cms.Sequence(ALCARECOMuAlOverlapsGeneralTracks)\n+# dummy dummy"},{"sha":"844c2022bf741a2e3b0ac4b4e95e61306ccc1394","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -27,3 +27,4 @@\n import copy\n OutALCARECOMuAlStandAloneCosmics = copy.deepcopy(OutALCARECOMuAlStandAloneCosmics_noDrop)\n OutALCARECOMuAlStandAloneCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"379d125af11a4575a462030a5f4ddf17061cd847","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@\n \n seqALCARECOMuAlStandAloneCosmics = cms.Sequence(ALCARECOMuAlStandAloneCosmicsHLT + ALCARECOMuAlStandAloneCosmicsDCSFilter + ALCARECOMuAlStandAloneCosmics)\n \n+# dummy dummy"},{"sha":"42f263db7980f4da0a4767b7a445df78923c8bb9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -29,3 +29,4 @@\n import copy\n OutALCARECOMuAlZMuMu = copy.deepcopy(OutALCARECOMuAlZMuMu_noDrop)\n OutALCARECOMuAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b549c72e3cd5046c15f45b3334e4d4410592a49e","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -49,3 +49,4 @@\n seqALCARECOMuAlZMuMu = cms.Sequence(ALCARECOMuAlZMuMuHLT+ALCARECOMuAlZMuMuDCSFilter+ALCARECOMuAlZMuMu)\n \n seqALCARECOMuAlZMuMuGeneralTracks = cms.Sequence(ALCARECOMuAlZMuMuGeneralTracks)\n+# dummy dummy"},{"sha":"e69ad471f785c84484582cf8dbf1dc5372eb1f09","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -161,3 +161,4 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy"},{"sha":"30ac7ba2338abca4b5c7e3c4cd7d8fba4957b19f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHGComb=OutALCARECOPromptCalibProdSiPixelAliHGComb_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHGComb.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"219601e77d98b73e2cf378682f0d2b0976114800","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -133,3 +133,4 @@\n SiPixelAliTrackRefitterHGDimuon1*\n SiPixelAliMilleAlignmentProducerHGDimuon*\n SiPixelAliMillePedeFileConverterHGDimuon)\n+# dummy dummy"},{"sha":"d35a544bf35310c31a7573858641680a2fdf7a73","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHG=OutALCARECOPromptCalibProdSiPixelAliHG_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHG.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"cb2ae4c6030f1708233eb6e1a66242c5c48640cf","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -74,3 +74,4 @@\n SiPixelAliTrackRefitterHG1*\n SiPixelAliMilleAlignmentProducerHG*\n SiPixelAliMillePedeFileConverterHG)\n+# dummy dummy"},{"sha":"45a673727453c92ebb43e03aaeb3b56aa8f8c805","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -10,3 +10,4 @@\n \n OutALCARECOPromptCalibProdSiPixelAli=OutALCARECOPromptCalibProdSiPixelAli_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAli.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"75d68863cb6dcca952393df752b961fa5780baea","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -159,3 +159,4 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy"},{"sha":"713486889d33b7ddcf3ebd7da763822fe6ff6d79","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlBeamHalo = copy.deepcopy(OutALCARECOTkAlBeamHalo_noDrop)\n OutALCARECOTkAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"68cb6596cfbb294ac8ec01f3e8716ff98cdfe8c3","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n ALCARECOTkAlBeamHalo.TwoBodyDecaySelector.applyAcoplanarityFilter = False\n \n seqALCARECOTkAlBeamHalo = cms.Sequence(ALCARECOTkAlBeamHaloDCSFilter+ALCARECOTkAlBeamHalo)\n+# dummy dummy"},{"sha":"ed40983bf8eeae5cd9bb84737409cdd08941df19","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n import copy\n OutALCARECOTkAlCosmics0THLT = copy.deepcopy(OutALCARECOTkAlCosmics0THLT_noDrop)\n OutALCARECOTkAlCosmics0THLT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"bef9ce2c93843d77ba1f77fa78163c3c9695df91","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n seqALCARECOTkAlCosmicsCTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCTF0T)\n seqALCARECOTkAlCosmicsCosmicTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsRegional0T)\n+# dummy dummy"},{"sha":"bbcaed50c8e8ea47b328a8423964da3708c3d685","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -31,3 +31,4 @@\n import copy\n OutALCARECOTkAlCosmics0T = copy.deepcopy(OutALCARECOTkAlCosmics0T_noDrop)\n OutALCARECOTkAlCosmics0T.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"72c2b8173d9c28d372c4761d9029b006924f5bcc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Skimmed_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -142,3 +142,4 @@\n #seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF+NewStatsCTF)\n seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF)\n \n+# dummy dummy"},{"sha":"91dba01036de233a38e8407a373c9668794c2e16","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -57,3 +57,4 @@\n seqALCARECOTkAlCosmicsCosmicTF0T = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0T = cms.Sequence(ALCARECOTkAlCosmicsRegional0T)\n seqALCARECOTkAlCosmicsDuringCollisions0T = cms.Sequence(ALCARECOTkAlCosmicsDuringCollisions0T)\n+# dummy dummy"},{"sha":"686ae30481e0950370e0dd558fd2a4b1642dab50","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n OutALCARECOTkAlCosmicsHLT = copy.deepcopy(OutALCARECOTkAlCosmicsHLT_noDrop)\n OutALCARECOTkAlCosmicsHLT.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy"},{"sha":"e71cfbc60a0df9a70493b779d71bf7c445857916","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -19,3 +19,4 @@\n seqALCARECOTkAlCosmicsCosmicTFHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegionalHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsRegional)\n \n+# dummy dummy"},{"sha":"000b9675c5188d949a19dbcbea73b04ca25238d0","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -25,3 +25,4 @@\n import copy\n OutALCARECOTkAlCosmicsInCollisions = copy.deepcopy(OutALCARECOTkAlCosmicsInCollisions_noDrop)\n OutALCARECOTkAlCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"33f3a6fd4ab9831581ca61152d7c3b2f7f8c91fc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -53,3 +53,4 @@\n \n #________________________________Sequences____________________________________\n seqALCARECOTkAlCosmicsInCollisions = cms.Sequence(cosmicDCTracksSeq*ALCARECOTkAlCosmicsInCollisionsHLT+ALCARECOTkAlCosmicsInCollisionsDCSFilter+ALCARECOTkAlCosmicsInCollisions)\n+# dummy dummy"},{"sha":"1fa4661e7963ec6e940daa5a90b7d44ee06ff9ec","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -28,3 +28,4 @@\n import copy\n OutALCARECOTkAlCosmics = copy.deepcopy(OutALCARECOTkAlCosmics_noDrop)\n OutALCARECOTkAlCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"091fbee592d0a09c0d0e3278a1f09a8fb7e398b9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -56,3 +56,4 @@\n seqALCARECOTkAlCosmicsCTF = cms.Sequence(ALCARECOTkAlCosmicsCTF)\n seqALCARECOTkAlCosmicsCosmicTF = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegional = cms.Sequence(ALCARECOTkAlCosmicsRegional)\n+# dummy dummy"}] + +https +GET +api.github.com +None +/repositories/399376380/pulls/18/files?per_page=100&page=2 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:32 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7b34eed8939bf6664aee7cd8db9363f9cce5b02c7c1b2a82633d9911fad11d2d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="prev", ; rel="first"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4799'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '201'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D084:3A2467:883F50C:88F05BF:661E59D8')] +[{"sha":"04e2d813ac585e1b7673cfbb8fc1923dedafa59f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -36,3 +36,4 @@\n \n OutALCARECOTkAlDiMuonAndVertex = OutALCARECOTkAlDiMuonAndVertex_noDrop.clone()\n OutALCARECOTkAlDiMuonAndVertex.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"95b1f254dffb1313d929032538d77052b4161080","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -34,3 +34,4 @@\n eventSetupPathsKey='TkAlZMuMuHI')\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlDiMuon, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"40c7addf56393c1a7bde9fc55e48ae9bb434cfc4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -42,3 +42,4 @@\n \n OutALCARECOTkAlJetHT = OutALCARECOTkAlJetHT_noDrop.clone()\n OutALCARECOTkAlJetHT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"560bf98333a3142d57a6f197637b08d36d2408e1","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -47,3 +47,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJetHT, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"740618cab38b590946602344d8f81a4b844ce12b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMuHI = OutALCARECOTkAlJpsiMuMuHI_noDrop.clone()\n OutALCARECOTkAlJpsiMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"bf859b1017bc91f4fa4cc69f0a3f462e40db7adc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -22,3 +22,4 @@\n +ALCARECOTkAlJpsiMuMuHIGoodMuons\n +ALCARECOTkAlJpsiMuMuHI\n )\n+# dummy dummy"},{"sha":"3a74b9aea426eaf71bfb189a1ef031ca7a19ed68","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMu = OutALCARECOTkAlJpsiMuMu_noDrop.clone()\n OutALCARECOTkAlJpsiMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"16c9d0587c7f1ca36f19494751bc5fd61414fe0c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -60,3 +60,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJpsiMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"ca5d3981af1d54cccfa4c91f6b18a723f8c2335c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -13,3 +13,4 @@\n import copy\n OutALCARECOTkAlLAS = copy.deepcopy(OutALCARECOTkAlLAS_noDrop)\n OutALCARECOTkAlLAS.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"37ad0535fa3f082ef3085a7cba35cc3a101a3395","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -23,3 +23,4 @@\n )\n \n seqALCARECOTkAlLAS = cms.Sequence(ALCARECOTkAlLASsiStripDigis+ALCARECOTkAlLASEventFilter+ALCARECOTkAlLAST0Producer)\n+# dummy dummy"},{"sha":"ec3ea92010c2560fdc8dec05d1b8da649d587a39","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlMinBiasHI = copy.deepcopy(OutALCARECOTkAlMinBiasHI_noDrop)\n OutALCARECOTkAlMinBiasHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1c627ee4220e2bdc2a8c1590b9c32a5ac7a80af6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -17,3 +17,4 @@\n #ALCARECOTkAlMinBiasHI.pMin = 3.0 ##GeV\n \n seqALCARECOTkAlMinBiasHI = cms.Sequence(ALCARECOTkAlMinBiasHIHLT+ALCARECOTkAlMinBiasHIDCSFilter+ALCARECOTkAlMinBiasHI)\n+# dummy dummy"},{"sha":"bbe624309fad5e7d0069c975b58e42f91a772daf","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -41,3 +41,4 @@\n \n OutALCARECOTkAlMinBias = OutALCARECOTkAlMinBias_noDrop.clone()\n OutALCARECOTkAlMinBias.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"f12db1ad9d5d5208c8723fe2564d5810a0b13d3a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Skimmed_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -141,3 +141,4 @@\n \n \n \n+# dummy dummy"},{"sha":"23de0a29ee8829cc2cb3cac9b62d69ef93fd016d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -70,3 +70,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMinBias, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"812ecac0085dee52a0d36009b321ca87c721e60f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedHI = OutALCARECOTkAlMuonIsolatedHI_noDrop.clone()\n OutALCARECOTkAlMuonIsolatedHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b1bcdf384d62646da81f4fe38aa40898644516d6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -28,3 +28,4 @@\n +ALCARECOTkAlMuonIsolatedHIDCSFilter\n +ALCARECOTkAlMuonIsolatedHI\n )\n+# dummy dummy"},{"sha":"db2d480f19e16b06a2baadfdf8e6d45fd4f558be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedPA = copy.deepcopy(OutALCARECOTkAlMuonIsolatedPA_noDrop)\n OutALCARECOTkAlMuonIsolatedPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"ad25e41b012b8d51b886d841e629c58bb1523164","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -44,3 +44,4 @@\n seqALCARECOTkAlMuonIsolatedPA = cms.Sequence(ALCARECOTkAlMuonIsolatedPAHLT\n +ALCARECOTkAlMuonIsolatedPADCSFilter\n +ALCARECOTkAlMuonIsolatedPA)\n+# dummy dummy"},{"sha":"64e4be787a63b8d84bba977606a0eeee9229746a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolated = OutALCARECOTkAlMuonIsolated_noDrop.clone()\n OutALCARECOTkAlMuonIsolated.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"150d629df9c4243d8a03ea4640cd17a7db77e7fe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMuonIsolated, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"15faac5d2bf408166454d118ec3d33b7afc165da","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMuHI = OutALCARECOTkAlUpsilonMuMuHI_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"a37326e8e5e180955b0497ede6f5b149284ce7ba","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuHIGoodMuons\n +ALCARECOTkAlUpsilonMuMuHI\n )\n+# dummy dummy"},{"sha":"caa0a6885bbf08aa3c233cf65a80b29e4a5c78e2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlUpsilonMuMuPA = copy.deepcopy(OutALCARECOTkAlUpsilonMuMuPA_noDrop)\n OutALCARECOTkAlUpsilonMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"52398e4ccae91588670d8017e1b455925d57e42b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuPAGoodMuons\n +ALCARECOTkAlUpsilonMuMuPA\n )\n+# dummy dummy"},{"sha":"a0ad5327c3312489af64708dfee132c72c45b4be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMu = OutALCARECOTkAlUpsilonMuMu_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1099c00ffe243c7be34319a5d6e89139052ce70b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -64,3 +64,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlUpsilonMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"3ff6614f26c23998b935ecec43b33cea1982dfc2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -50,3 +50,4 @@\n \n OutALCARECOTkAlV0s = OutALCARECOTkAlV0s_noDrop.clone()\n OutALCARECOTkAlV0s.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1e6869c43e1bada2c14fa7b4b0944b4dfbac38e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -38,3 +38,4 @@\n ##################################################################\n seqALCARECOTkAlK0s = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sKShortEventSelector + ALCARECOTkAlKShortTracks)\n seqALCARECOTkAlLambdas = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sLambdaEventSelector + ALCARECOTkAlLambdaTracks)\n+# dummy dummy"},{"sha":"4984db89d155cc9e42edfeab63704f9b6c2e06cd","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -41,3 +41,4 @@\n OutALCARECOTkAlWMuNu = OutALCARECOTkAlWMuNu_noDrop.clone()\n OutALCARECOTkAlWMuNu.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy"},{"sha":"12d45b9f6946d0cd8f2c3b801f0fb064fadaa4b2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -59,3 +59,4 @@\n ALCARECOTkAlWMuNu.TwoBodyDecaySelector.acoplanarDistance = 1 ##radian\n \n seqALCARECOTkAlWMuNu = cms.Sequence(ALCARECOTkAlWMuNuHLT+ALCARECOTkAlWMuNuDCSFilter+ALCARECOTkAlWMuNuGoodMuons+ALCARECOTkAlWMuNuRelCombIsoMuons+ALCARECOTkAlWMuNu)\n+# dummy dummy"},{"sha":"2e1d642fc7bf7bb735da62936f015b7c959ee265","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMuHI = OutALCARECOTkAlZMuMuHI_noDrop.clone()\n OutALCARECOTkAlZMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b10490d6d7bd2c4412c315a1d13d4b6deb3b9cb9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuHIGoodMuons\n +ALCARECOTkAlZMuMuHI\n )\n+# dummy dummy"},{"sha":"ad3df1e1e69c4ab367457b7483f9880b5f23c525","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlZMuMuPA = copy.deepcopy(OutALCARECOTkAlZMuMuPA_noDrop)\n OutALCARECOTkAlZMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"788c071104caa4f263abcb2a37137aa34cf094e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuPAGoodMuons\n +ALCARECOTkAlZMuMuPA\n )\n+# dummy dummy"},{"sha":"ae380fe2fb275ff268af5b7a244b25b562934ffc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMu = OutALCARECOTkAlZMuMu_noDrop.clone()\n OutALCARECOTkAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"f4410fb589cfa4fd1805f5bb58e6c938f34d2e28","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -62,3 +62,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlZMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"920b3ea769172d92355979895b4c6c15adfd643a","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -55,3 +55,4 @@\n \n ALCAHARVESTSiPixelAli = cms.Sequence(SiPixelAliMilleFileExtractor*\n SiPixelAliPedeAlignmentProducer)\n+# dummy dummy"},{"sha":"ed5ef5ddf63e60c775b9f8fb45d77a2fff73fba3","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHGCombined_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -90,3 +90,4 @@\n SiPixelAliPedeAlignmentProducerHGCombined*\n SiPixelAliDQMModuleHGCombined*\n dqmEnvSiPixelAliHGCombined)\n+# dummy dummy"},{"sha":"78eb11a43a7ea82a94992397608d64942d5bb145","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHG_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -78,3 +78,4 @@\n SiPixelAliPedeAlignmentProducerHG*\n SiPixelAliDQMModuleHG*\n dqmEnvSiPixelAliHG)\n+# dummy dummy"},{"sha":"158b8847e1c548f23cb1b99c85e89edbd5cc3978","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -61,3 +61,4 @@\n SiPixelAliPedeAlignmentProducer*\n SiPixelAliDQMModule*\n dqmEnvSiPixelAli)\n+# dummy dummy"},{"sha":"ba9b7eaf9365feb77dafb85924e3bf161ecc6076","filename":"Alignment/CommonAlignmentProducer/python/AlignmentMuonSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -44,3 +44,4 @@\n minMassPair = cms.double(89.0),\n maxMassPair = cms.double(90.0)\n )\n+# dummy dummy"},{"sha":"8a212b2ed5c0c0c3b8892798e7b36cc1b7073a53","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducerAsAnalyzer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -88,3 +88,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"},{"sha":"4143f9d9ec58863e84f7725d3721fa7fef4a158d","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -91,3 +91,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"},{"sha":"6f57ca13d86fe929af57b4425beaa3e9b1359029","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTrackSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -120,3 +120,4 @@\n )\n \n \n+# dummy dummy"},{"sha":"5cd06205a6bb4174c50304aa4343871572503e1e","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -2,3 +2,4 @@\n \n from Alignment.CommonAlignmentProducer.alignmentTrackFromVertexCompositeCandidateSelectorModule_cfi import alignmentTrackFromVertexCompositeCandidateSelectorModule\n AlignmentTracksFromVertexCompositeCandidateSelector = alignmentTrackFromVertexCompositeCandidateSelectorModule.clone()\n+# dummy dummy"},{"sha":"f0b6960be9fd73052c1a73c32edf45e4c6d816ef","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -5,3 +5,4 @@\n vertices = cms.InputTag(\"offlinePrimaryVertices\"),\n vertexIndex = cms.uint32(0),\n filter = cms.bool(False))\n+# dummy dummy"},{"sha":"99f3383f32bac03f478218b5c53966f9ec5f2c26","filename":"Alignment/CommonAlignmentProducer/python/DBConfiguration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -33,3 +33,4 @@\n )\n \n \n+# dummy dummy"},{"sha":"2d1716bcbd3ac0cab354a05a40a454cb35643c41","filename":"Alignment/CommonAlignmentProducer/python/FakeAlignmentSource_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -9,3 +9,4 @@\n produceTrackerSurfaceDeformation = cms.bool(True),\n appendToDataLabel = cms.string('')\n )\n+# dummy dummy"},{"sha":"7efc3c8be0a1220d356495ddbb11d5ab24921f62","filename":"Alignment/CommonAlignmentProducer/python/customizeLSNumberFilterForRelVals.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -32,3 +32,4 @@ def lowerHitsPerStructure(process):\n 'skipemptycons'\n )\n return process\n+# dummy dummy"},{"sha":"38a9225bda00da0f45d5ca8ab21ae7afadf0e38a","filename":"Alignment/CommonAlignmentProducer/python/fakeAlignmentProducer_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/fd99bd146e87a00eb90eccef12f487ecc8f4c496/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py?ref=fd99bd146e87a00eb90eccef12f487ecc8f4c496","patch":"@@ -5,3 +5,4 @@\n )\n \n \n+# dummy dummy"}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c12c1f5ff515f29d04661e5aca54969941d7f19e36868d154b354ae6af427b42"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="next", ; rel="last"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4798'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '202'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9570:337464:6F86E11:702022A:661E59E3')] +[{"sha":"6955d8ed3dc748e23c565b2978083036918468f6","node_id":"C_kwDOF83__NoAKDY5NTVkOGVkM2RjNzQ4ZTIzYzU2NWIyOTc4MDgzMDM2OTE4NDY4ZjY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"5e054c4761f3d6f5b7a20fbd107796ffaf7aa773","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5e054c4761f3d6f5b7a20fbd107796ffaf7aa773"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6955d8ed3dc748e23c565b2978083036918468f6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6955d8ed3dc748e23c565b2978083036918468f6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"247c0caac63c4155f2a10acc26b59d7547ff6f21","node_id":"C_kwDOF83__NoAKDI0N2MwY2FhYzYzYzQxNTVmMmExMGFjYzI2YjU5ZDc1NDdmZjZmMjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"5ee2fed7809c2c4a64b2a9cfb6d66a19763783df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5ee2fed7809c2c4a64b2a9cfb6d66a19763783df"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/247c0caac63c4155f2a10acc26b59d7547ff6f21","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6955d8ed3dc748e23c565b2978083036918468f6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6955d8ed3dc748e23c565b2978083036918468f6"}]},{"sha":"e51cf1bf814047845cf0e6a09112abb57a0b6299","node_id":"C_kwDOF83__NoAKGU1MWNmMWJmODE0MDQ3ODQ1Y2YwZTZhMDkxMTJhYmI1N2EwYjYyOTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"d1d3223bbfee32e1192a1e4afe894fc2ac98f90f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d1d3223bbfee32e1192a1e4afe894fc2ac98f90f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e51cf1bf814047845cf0e6a09112abb57a0b6299","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"247c0caac63c4155f2a10acc26b59d7547ff6f21","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/247c0caac63c4155f2a10acc26b59d7547ff6f21"}]},{"sha":"8afccd866520ab62c501af476ad5b3b9af8f77eb","node_id":"C_kwDOF83__NoAKDhhZmNjZDg2NjUyMGFiNjJjNTAxYWY0NzZhZDViM2I5YWY4Zjc3ZWI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"6c81a6cb7c3ba6bd69df6e1715d38b2501ad8d31","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6c81a6cb7c3ba6bd69df6e1715d38b2501ad8d31"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8afccd866520ab62c501af476ad5b3b9af8f77eb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e51cf1bf814047845cf0e6a09112abb57a0b6299","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e51cf1bf814047845cf0e6a09112abb57a0b6299"}]},{"sha":"5710511d889195da564138babf2d14dc82f0b27f","node_id":"C_kwDOF83__NoAKDU3MTA1MTFkODg5MTk1ZGE1NjQxMzhiYWJmMmQxNGRjODJmMGIyN2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"53a4e6779dd443ee456cfe89ecf28319ed9b85bb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/53a4e6779dd443ee456cfe89ecf28319ed9b85bb"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5710511d889195da564138babf2d14dc82f0b27f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5710511d889195da564138babf2d14dc82f0b27f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8afccd866520ab62c501af476ad5b3b9af8f77eb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8afccd866520ab62c501af476ad5b3b9af8f77eb"}]},{"sha":"d9a57159b2c24366f0d1b880aab463aaaf5da412","node_id":"C_kwDOF83__NoAKGQ5YTU3MTU5YjJjMjQzNjZmMGQxYjg4MGFhYjQ2M2FhYWY1ZGE0MTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"af5c7dd9931ebbc0af6c2704467ac88ca87b13f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/af5c7dd9931ebbc0af6c2704467ac88ca87b13f4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d9a57159b2c24366f0d1b880aab463aaaf5da412","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5710511d889195da564138babf2d14dc82f0b27f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5710511d889195da564138babf2d14dc82f0b27f"}]},{"sha":"d18965eed76efeb820839413951e7b490756ded2","node_id":"C_kwDOF83__NoAKGQxODk2NWVlZDc2ZWZlYjgyMDgzOTQxMzk1MWU3YjQ5MDc1NmRlZDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"2217eae6f286992914af68ec89c06b8bda3962e3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2217eae6f286992914af68ec89c06b8bda3962e3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d18965eed76efeb820839413951e7b490756ded2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d18965eed76efeb820839413951e7b490756ded2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d9a57159b2c24366f0d1b880aab463aaaf5da412","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d9a57159b2c24366f0d1b880aab463aaaf5da412"}]},{"sha":"f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","node_id":"C_kwDOF83__NoAKGY1YmZmODVmMTM5M2FmZTQ1NWZlNDJhNDg3M2ZmM2ZjZmNmYzAyYjU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"6c3eff6c9fa350668233e3c158c33e5777f077aa","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6c3eff6c9fa350668233e3c158c33e5777f077aa"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d18965eed76efeb820839413951e7b490756ded2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d18965eed76efeb820839413951e7b490756ded2"}]},{"sha":"f3b440e9ca574ac4971cc1478dae15a25e4357c4","node_id":"C_kwDOF83__NoAKGYzYjQ0MGU5Y2E1NzRhYzQ5NzFjYzE0NzhkYWUxNWEyNWU0MzU3YzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"f0c3e3d6ac6029c6a12814bfafa7d1215eaefd2e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f0c3e3d6ac6029c6a12814bfafa7d1215eaefd2e"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f3b440e9ca574ac4971cc1478dae15a25e4357c4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5"}]},{"sha":"b16a737b809df919dd2e8e3ab615b1cfbe112bd4","node_id":"C_kwDOF83__NoAKGIxNmE3MzdiODA5ZGY5MTlkZDJlOGUzYWI2MTViMWNmYmUxMTJiZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"bad34a10e058de4e4e86cb13bae4f8336e628fe8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bad34a10e058de4e4e86cb13bae4f8336e628fe8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f3b440e9ca574ac4971cc1478dae15a25e4357c4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f3b440e9ca574ac4971cc1478dae15a25e4357c4"}]},{"sha":"2382eabec2dab6ab48fc7186266ccb6c7b964dc3","node_id":"C_kwDOF83__NoAKDIzODJlYWJlYzJkYWI2YWI0OGZjNzE4NjI2NmNjYjZjN2I5NjRkYzM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"11ff41a0805431ecc8b92c47bdfc1bc7edb58d7f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/11ff41a0805431ecc8b92c47bdfc1bc7edb58d7f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b16a737b809df919dd2e8e3ab615b1cfbe112bd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b16a737b809df919dd2e8e3ab615b1cfbe112bd4"}]},{"sha":"89f220f19348e3c2f0c4c6dc7945d469f1331786","node_id":"C_kwDOF83__NoAKDg5ZjIyMGYxOTM0OGUzYzJmMGM0YzZkYzc5NDVkNDY5ZjEzMzE3ODY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"ca0b5cc489f32297be4b323ca83f6752e219a93a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ca0b5cc489f32297be4b323ca83f6752e219a93a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/89f220f19348e3c2f0c4c6dc7945d469f1331786","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2382eabec2dab6ab48fc7186266ccb6c7b964dc3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2382eabec2dab6ab48fc7186266ccb6c7b964dc3"}]},{"sha":"e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","node_id":"C_kwDOF83__NoAKGU1YjdlMWI2MmY2Y2VjMmZhNDdiNmIyNWVmNmZjZjcyMjViYWRjMjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"953200290b9ea8d399019baa124d5d74e2b145b5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/953200290b9ea8d399019baa124d5d74e2b145b5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"89f220f19348e3c2f0c4c6dc7945d469f1331786","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/89f220f19348e3c2f0c4c6dc7945d469f1331786"}]},{"sha":"8965abe7d624415d97cadc713b7e149d71ff65f1","node_id":"C_kwDOF83__NoAKDg5NjVhYmU3ZDYyNDQxNWQ5N2NhZGM3MTNiN2UxNDlkNzFmZjY1ZjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"1081d42476a3f4f419f6123387738ecffa28e074","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1081d42476a3f4f419f6123387738ecffa28e074"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8965abe7d624415d97cadc713b7e149d71ff65f1","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27"}]},{"sha":"2aaed36eb31d0b944c227a24799b77e101cc22f2","node_id":"C_kwDOF83__NoAKDJhYWVkMzZlYjMxZDBiOTQ0YzIyN2EyNDc5OWI3N2UxMDFjYzIyZjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"6efe70a21b279efeac2cf929adbdf71fefe286cd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6efe70a21b279efeac2cf929adbdf71fefe286cd"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2aaed36eb31d0b944c227a24799b77e101cc22f2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8965abe7d624415d97cadc713b7e149d71ff65f1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8965abe7d624415d97cadc713b7e149d71ff65f1"}]},{"sha":"fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","node_id":"C_kwDOF83__NoAKGZiMDcwZTQ3Y2I1YTdhZjEyNGJiMmNjNzhjMDBiMzlkOGQ5NTY3ZWM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"2fada430faba664c4a955a5c816ca675da716cfc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2fada430faba664c4a955a5c816ca675da716cfc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2aaed36eb31d0b944c227a24799b77e101cc22f2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2aaed36eb31d0b944c227a24799b77e101cc22f2"}]},{"sha":"639802afc54c74ac0dc8b396099bf5c8f233dd91","node_id":"C_kwDOF83__NoAKDYzOTgwMmFmYzU0Yzc0YWMwZGM4YjM5NjA5OWJmNWM4ZjIzM2RkOTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"ea2b2bd36674fdba6641b22a8ecb04f4f6b27fe2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ea2b2bd36674fdba6641b22a8ecb04f4f6b27fe2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/639802afc54c74ac0dc8b396099bf5c8f233dd91","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec"}]},{"sha":"a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","node_id":"C_kwDOF83__NoAKGEzYjBkYmFhNTQzOTg2Y2E5NDNlMWRkN2ExZGVkNTgxYjc1ZWQ0MmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"413891e07ffb962450fdd61a75da8e0813bc7625","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/413891e07ffb962450fdd61a75da8e0813bc7625"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"639802afc54c74ac0dc8b396099bf5c8f233dd91","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/639802afc54c74ac0dc8b396099bf5c8f233dd91"}]},{"sha":"9cbfcbb09eae7cac65425211c039a8f252d49143","node_id":"C_kwDOF83__NoAKDljYmZjYmIwOWVhZTdjYWM2NTQyNTIxMWMwMzlhOGYyNTJkNDkxNDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"c19e228bf08daac524ad2d56c10e16eec7ebef14","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c19e228bf08daac524ad2d56c10e16eec7ebef14"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9cbfcbb09eae7cac65425211c039a8f252d49143","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a"}]},{"sha":"561d6cfcd9df7f9567c66bd0f638d602081c02c5","node_id":"C_kwDOF83__NoAKDU2MWQ2Y2ZjZDlkZjdmOTU2N2M2NmJkMGY2MzhkNjAyMDgxYzAyYzU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"8b439ff7fca802596e2e169290f2296d1dd412e1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8b439ff7fca802596e2e169290f2296d1dd412e1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/561d6cfcd9df7f9567c66bd0f638d602081c02c5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9cbfcbb09eae7cac65425211c039a8f252d49143","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9cbfcbb09eae7cac65425211c039a8f252d49143"}]},{"sha":"c84a9d9f368018e0672e7d2e931f8ae24a90ad83","node_id":"C_kwDOF83__NoAKGM4NGE5ZDlmMzY4MDE4ZTA2NzJlN2QyZTkzMWY4YWUyNGE5MGFkODM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"f45fb80386c5b459086a3dc5595ff8714ff97687","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f45fb80386c5b459086a3dc5595ff8714ff97687"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"561d6cfcd9df7f9567c66bd0f638d602081c02c5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/561d6cfcd9df7f9567c66bd0f638d602081c02c5"}]},{"sha":"fa29a9f267a1c45ffa701242e9250f2ba50991df","node_id":"C_kwDOF83__NoAKGZhMjlhOWYyNjdhMWM0NWZmYTcwMTI0MmU5MjUwZjJiYTUwOTkxZGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"a411a65f9cdc442d4530080b2eeff1bcd51fbccd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a411a65f9cdc442d4530080b2eeff1bcd51fbccd"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa29a9f267a1c45ffa701242e9250f2ba50991df","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c84a9d9f368018e0672e7d2e931f8ae24a90ad83","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c84a9d9f368018e0672e7d2e931f8ae24a90ad83"}]},{"sha":"5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","node_id":"C_kwDOF83__NoAKDViN2I1NmZmODg4NjI3ZDBkYmMxMzQwZWQyZjVmN2ExZDI5NjE4Zjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"edd0bdfb4ad28e6b210f9a5fb77c554031e8ee55","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/edd0bdfb4ad28e6b210f9a5fb77c554031e8ee55"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa29a9f267a1c45ffa701242e9250f2ba50991df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa29a9f267a1c45ffa701242e9250f2ba50991df"}]},{"sha":"8c926930d03076afbc7f8385f6bd00ce8b1a1c01","node_id":"C_kwDOF83__NoAKDhjOTI2OTMwZDAzMDc2YWZiYzdmODM4NWY2YmQwMGNlOGIxYTFjMDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"1accb80ab9117a43b65686d1484a886b8572d931","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1accb80ab9117a43b65686d1484a886b8572d931"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7"}]},{"sha":"acd63acec5999824c69d122ee9bfe4e486175edf","node_id":"C_kwDOF83__NoAKGFjZDYzYWNlYzU5OTk4MjRjNjlkMTIyZWU5YmZlNGU0ODYxNzVlZGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"73de3071727dd5e45b7c78070eae728570b23fe1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/73de3071727dd5e45b7c78070eae728570b23fe1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/acd63acec5999824c69d122ee9bfe4e486175edf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/acd63acec5999824c69d122ee9bfe4e486175edf","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8c926930d03076afbc7f8385f6bd00ce8b1a1c01","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c926930d03076afbc7f8385f6bd00ce8b1a1c01"}]},{"sha":"62b4517e606f00a5155e904306a2cdffbdb686e4","node_id":"C_kwDOF83__NoAKDYyYjQ1MTdlNjA2ZjAwYTUxNTVlOTA0MzA2YTJjZGZmYmRiNjg2ZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"ff3f2da01f1fb109e3f578e48e799f86a4848c08","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ff3f2da01f1fb109e3f578e48e799f86a4848c08"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/62b4517e606f00a5155e904306a2cdffbdb686e4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"acd63acec5999824c69d122ee9bfe4e486175edf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/acd63acec5999824c69d122ee9bfe4e486175edf"}]},{"sha":"9687f4e8953e009205e255f49ace95dda6413888","node_id":"C_kwDOF83__NoAKDk2ODdmNGU4OTUzZTAwOTIwNWUyNTVmNDlhY2U5NWRkYTY0MTM4ODg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"a0bb4a1b7fc956a8a6183d70b8d4a98eef1ddefc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a0bb4a1b7fc956a8a6183d70b8d4a98eef1ddefc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9687f4e8953e009205e255f49ace95dda6413888","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9687f4e8953e009205e255f49ace95dda6413888","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"62b4517e606f00a5155e904306a2cdffbdb686e4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/62b4517e606f00a5155e904306a2cdffbdb686e4"}]},{"sha":"a1585e75d345a0aa57d3d82947b0fe54acb14eb6","node_id":"C_kwDOF83__NoAKGExNTg1ZTc1ZDM0NWEwYWE1N2QzZDgyOTQ3YjBmZTU0YWNiMTRlYjY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"c545a539046669576ca5222662f9cd8cca0562ba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c545a539046669576ca5222662f9cd8cca0562ba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9687f4e8953e009205e255f49ace95dda6413888","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9687f4e8953e009205e255f49ace95dda6413888"}]},{"sha":"d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","node_id":"C_kwDOF83__NoAKGQzZWQ3OGExYmI2YWJmMTJhYTMwYjMxMzRjNGU1MDZmMmE1ZjhkNTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"9f230834e36af0eb754d1eb804cbbbf37a22ce52","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9f230834e36af0eb754d1eb804cbbbf37a22ce52"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a1585e75d345a0aa57d3d82947b0fe54acb14eb6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1585e75d345a0aa57d3d82947b0fe54acb14eb6"}]},{"sha":"577cfd8011ce680166019acad3b78d4d1aec5704","node_id":"C_kwDOF83__NoAKDU3N2NmZDgwMTFjZTY4MDE2NjAxOWFjYWQzYjc4ZDRkMWFlYzU3MDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"c54f0c020f41fa54d4dda7d76036e92d784da2f0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c54f0c020f41fa54d4dda7d76036e92d784da2f0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/577cfd8011ce680166019acad3b78d4d1aec5704","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/577cfd8011ce680166019acad3b78d4d1aec5704","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58"}]},{"sha":"ac021e5cda8755d345731bee5df062757bdc8d0b","node_id":"C_kwDOF83__NoAKGFjMDIxZTVjZGE4NzU1ZDM0NTczMWJlZTVkZjA2Mjc1N2JkYzhkMGI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"c2e5cb0a97d5ca275b81ba07640f0f74610c014d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c2e5cb0a97d5ca275b81ba07640f0f74610c014d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac021e5cda8755d345731bee5df062757bdc8d0b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"577cfd8011ce680166019acad3b78d4d1aec5704","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/577cfd8011ce680166019acad3b78d4d1aec5704"}]},{"sha":"48e890c532fdfe2150006de853719fab3cffdc34","node_id":"C_kwDOF83__NoAKDQ4ZTg5MGM1MzJmZGZlMjE1MDAwNmRlODUzNzE5ZmFiM2NmZmRjMzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"7fd811a9c99d35dcbd83eefde7cec30ff09a741f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7fd811a9c99d35dcbd83eefde7cec30ff09a741f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/48e890c532fdfe2150006de853719fab3cffdc34","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48e890c532fdfe2150006de853719fab3cffdc34","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ac021e5cda8755d345731bee5df062757bdc8d0b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac021e5cda8755d345731bee5df062757bdc8d0b"}]},{"sha":"b97f6a05ba120a65d58d103938db8df9baf4f806","node_id":"C_kwDOF83__NoAKGI5N2Y2YTA1YmExMjBhNjVkNThkMTAzOTM4ZGI4ZGY5YmFmNGY4MDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"fa965ce397d1bf0b1fc5b3c1fa73387f48a8037c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fa965ce397d1bf0b1fc5b3c1fa73387f48a8037c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b97f6a05ba120a65d58d103938db8df9baf4f806","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"48e890c532fdfe2150006de853719fab3cffdc34","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48e890c532fdfe2150006de853719fab3cffdc34"}]},{"sha":"add7d8dadbca5bc85cc272df8cf61276baf04cd4","node_id":"C_kwDOF83__NoAKGFkZDdkOGRhZGJjYTViYzg1Y2MyNzJkZjhjZjYxMjc2YmFmMDRjZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"3236c22560ed1514a36c1b4b7bf02be114ec7355","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3236c22560ed1514a36c1b4b7bf02be114ec7355"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/add7d8dadbca5bc85cc272df8cf61276baf04cd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b97f6a05ba120a65d58d103938db8df9baf4f806","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b97f6a05ba120a65d58d103938db8df9baf4f806"}]},{"sha":"79f3589b1a2b00e7ad39d538a9e44473864a697d","node_id":"C_kwDOF83__NoAKDc5ZjM1ODliMWEyYjAwZTdhZDM5ZDUzOGE5ZTQ0NDczODY0YTY5N2Q","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"4dc0c89d9a3910531c9318e3c75096436f67a606","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4dc0c89d9a3910531c9318e3c75096436f67a606"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79f3589b1a2b00e7ad39d538a9e44473864a697d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"add7d8dadbca5bc85cc272df8cf61276baf04cd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/add7d8dadbca5bc85cc272df8cf61276baf04cd4"}]},{"sha":"de5759756a4b88a6da27e6f1d1697373db4da96c","node_id":"C_kwDOF83__NoAKGRlNTc1OTc1NmE0Yjg4YTZkYTI3ZTZmMWQxNjk3MzczZGI0ZGE5NmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"0da27b42c606d0c01676e63ebc1d4d5a22d39b11","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0da27b42c606d0c01676e63ebc1d4d5a22d39b11"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/de5759756a4b88a6da27e6f1d1697373db4da96c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79f3589b1a2b00e7ad39d538a9e44473864a697d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79f3589b1a2b00e7ad39d538a9e44473864a697d"}]},{"sha":"6ce2f1ca3368168db2046b418e246a4cd9482340","node_id":"C_kwDOF83__NoAKDZjZTJmMWNhMzM2ODE2OGRiMjA0NmI0MThlMjQ2YTRjZDk0ODIzNDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"89291d0cc4c2009ff8ba2c4f5bfcc61c5937d484","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/89291d0cc4c2009ff8ba2c4f5bfcc61c5937d484"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6ce2f1ca3368168db2046b418e246a4cd9482340","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"de5759756a4b88a6da27e6f1d1697373db4da96c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/de5759756a4b88a6da27e6f1d1697373db4da96c"}]},{"sha":"54643679f52ced591752a2f2e0d2f19d61818ce4","node_id":"C_kwDOF83__NoAKDU0NjQzNjc5ZjUyY2VkNTkxNzUyYTJmMmUwZDJmMTlkNjE4MThjZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"4801f0118cfad4ab673cbdf81100f72b88da291d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4801f0118cfad4ab673cbdf81100f72b88da291d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54643679f52ced591752a2f2e0d2f19d61818ce4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6ce2f1ca3368168db2046b418e246a4cd9482340","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6ce2f1ca3368168db2046b418e246a4cd9482340"}]},{"sha":"7768fa4600824dd0b65dd81554cf06f57ce2e636","node_id":"C_kwDOF83__NoAKDc3NjhmYTQ2MDA4MjRkZDBiNjVkZDgxNTU0Y2YwNmY1N2NlMmU2MzY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"2f6ecdfbadfca783e72c3a051a439b83a1258876","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2f6ecdfbadfca783e72c3a051a439b83a1258876"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7768fa4600824dd0b65dd81554cf06f57ce2e636","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54643679f52ced591752a2f2e0d2f19d61818ce4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54643679f52ced591752a2f2e0d2f19d61818ce4"}]},{"sha":"c5b694fb9ddd2908939b0bdf644c997587af5322","node_id":"C_kwDOF83__NoAKGM1YjY5NGZiOWRkZDI5MDg5MzliMGJkZjY0NGM5OTc1ODdhZjUzMjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"5dee9d335cff7d52b54ed1e66acfdcb300b0d227","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5dee9d335cff7d52b54ed1e66acfdcb300b0d227"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5b694fb9ddd2908939b0bdf644c997587af5322","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7768fa4600824dd0b65dd81554cf06f57ce2e636","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7768fa4600824dd0b65dd81554cf06f57ce2e636"}]},{"sha":"32389ecf320569de6f3eb0a721574ba90bc8c751","node_id":"C_kwDOF83__NoAKDMyMzg5ZWNmMzIwNTY5ZGU2ZjNlYjBhNzIxNTc0YmE5MGJjOGM3NTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"ea6dd5157a2001daa0a3d6f78bb23de46e5fd173","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ea6dd5157a2001daa0a3d6f78bb23de46e5fd173"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/32389ecf320569de6f3eb0a721574ba90bc8c751","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c5b694fb9ddd2908939b0bdf644c997587af5322","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5b694fb9ddd2908939b0bdf644c997587af5322"}]},{"sha":"7bb612cdc6079b0ada45c2eda67de3c756436cb3","node_id":"C_kwDOF83__NoAKDdiYjYxMmNkYzYwNzliMGFkYTQ1YzJlZGE2N2RlM2M3NTY0MzZjYjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"b82b57b1baaee7e2553d7623c261bffcbee681bc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b82b57b1baaee7e2553d7623c261bffcbee681bc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bb612cdc6079b0ada45c2eda67de3c756436cb3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"32389ecf320569de6f3eb0a721574ba90bc8c751","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/32389ecf320569de6f3eb0a721574ba90bc8c751"}]},{"sha":"7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","node_id":"C_kwDOF83__NoAKDdiZDYxZTYzMzI1NjU5YTM1MjkxY2IxYmYxYTBjZmRiNmViNTdlZWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"9d54baad426346aa19f395ee31b162bec4571a36","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9d54baad426346aa19f395ee31b162bec4571a36"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7bb612cdc6079b0ada45c2eda67de3c756436cb3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bb612cdc6079b0ada45c2eda67de3c756436cb3"}]},{"sha":"4c8cc3cfe87c45e330c41b0728be267288fe5c02","node_id":"C_kwDOF83__NoAKDRjOGNjM2NmZTg3YzQ1ZTMzMGM0MWIwNzI4YmUyNjcyODhmZTVjMDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"6201a2b4167b4796468a458aace564384f59a1b1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6201a2b4167b4796468a458aace564384f59a1b1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4c8cc3cfe87c45e330c41b0728be267288fe5c02","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea"}]},{"sha":"456336e23277759bd12515136da78f7fef5dcae6","node_id":"C_kwDOF83__NoAKDQ1NjMzNmUyMzI3Nzc1OWJkMTI1MTUxMzZkYTc4ZjdmZWY1ZGNhZTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"3d3a700141e833201f7d02769ed4884c2c5e1975","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3d3a700141e833201f7d02769ed4884c2c5e1975"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/456336e23277759bd12515136da78f7fef5dcae6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/456336e23277759bd12515136da78f7fef5dcae6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4c8cc3cfe87c45e330c41b0728be267288fe5c02","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4c8cc3cfe87c45e330c41b0728be267288fe5c02"}]},{"sha":"348546d623ee31bace9df6a1aa71604b990527ff","node_id":"C_kwDOF83__NoAKDM0ODU0NmQ2MjNlZTMxYmFjZTlkZjZhMWFhNzE2MDRiOTkwNTI3ZmY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"2c0bb0e914665b718d14a9f7f43151d020c95970","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2c0bb0e914665b718d14a9f7f43151d020c95970"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/348546d623ee31bace9df6a1aa71604b990527ff","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/348546d623ee31bace9df6a1aa71604b990527ff","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"456336e23277759bd12515136da78f7fef5dcae6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/456336e23277759bd12515136da78f7fef5dcae6"}]},{"sha":"ec5c91c29611a67043bd36b4c409fd938dde2e0b","node_id":"C_kwDOF83__NoAKGVjNWM5MWMyOTYxMWE2NzA0M2JkMzZiNGM0MDlmZDkzOGRkZTJlMGI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"4ea6f06a9fad68c4f79ee7df9d869e90155f6338","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4ea6f06a9fad68c4f79ee7df9d869e90155f6338"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ec5c91c29611a67043bd36b4c409fd938dde2e0b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"348546d623ee31bace9df6a1aa71604b990527ff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/348546d623ee31bace9df6a1aa71604b990527ff"}]},{"sha":"a8d51426d8398cdfd67e05d0e522f00cf18d962d","node_id":"C_kwDOF83__NoAKGE4ZDUxNDI2ZDgzOThjZGZkNjdlMDVkMGU1MjJmMDBjZjE4ZDk2MmQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"7747c1b44a85d1d293fcc3a8ba91ebe1ed9c1268","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7747c1b44a85d1d293fcc3a8ba91ebe1ed9c1268"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a8d51426d8398cdfd67e05d0e522f00cf18d962d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ec5c91c29611a67043bd36b4c409fd938dde2e0b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ec5c91c29611a67043bd36b4c409fd938dde2e0b"}]},{"sha":"c0b2b32fe21f87917b8134e435a9d944a1593eee","node_id":"C_kwDOF83__NoAKGMwYjJiMzJmZTIxZjg3OTE3YjgxMzRlNDM1YTlkOTQ0YTE1OTNlZWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"5572e410e8c4eb4a92a73b29b93626f9b6ae3cc4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5572e410e8c4eb4a92a73b29b93626f9b6ae3cc4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c0b2b32fe21f87917b8134e435a9d944a1593eee","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a8d51426d8398cdfd67e05d0e522f00cf18d962d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a8d51426d8398cdfd67e05d0e522f00cf18d962d"}]},{"sha":"a795b32e0086bf1e95b73851de4fb2d2fa863c1f","node_id":"C_kwDOF83__NoAKGE3OTViMzJlMDA4NmJmMWU5NWI3Mzg1MWRlNGZiMmQyZmE4NjNjMWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"3bdc6d11c6916bcd6b53e4ff878e64bb882e5180","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3bdc6d11c6916bcd6b53e4ff878e64bb882e5180"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c0b2b32fe21f87917b8134e435a9d944a1593eee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c0b2b32fe21f87917b8134e435a9d944a1593eee"}]},{"sha":"841284bbd93b36212d3a7dc0efe66029db4ed642","node_id":"C_kwDOF83__NoAKDg0MTI4NGJiZDkzYjM2MjEyZDNhN2RjMGVmZTY2MDI5ZGI0ZWQ2NDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"4bcc4080da7734cba24b06634ac8a4d7a6c1a3a0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4bcc4080da7734cba24b06634ac8a4d7a6c1a3a0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/841284bbd93b36212d3a7dc0efe66029db4ed642","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a795b32e0086bf1e95b73851de4fb2d2fa863c1f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a795b32e0086bf1e95b73851de4fb2d2fa863c1f"}]},{"sha":"952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","node_id":"C_kwDOF83__NoAKDk1MmFhMzYzNWY4NGYyYjMyZDE2YWM0Nzc1ZmJkYTM3ZmE1ZTFkZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"79b5850fb119629e322d589bcb0865dc14b341b7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/79b5850fb119629e322d589bcb0865dc14b341b7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"841284bbd93b36212d3a7dc0efe66029db4ed642","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/841284bbd93b36212d3a7dc0efe66029db4ed642"}]},{"sha":"35bb64a0679da9b688f184f5b90fbccca98b8cf0","node_id":"C_kwDOF83__NoAKDM1YmI2NGEwNjc5ZGE5YjY4OGYxODRmNWI5MGZiY2NjYTk4YjhjZjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"1804cd121682fc6e2a43137218c9469b618dfd23","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1804cd121682fc6e2a43137218c9469b618dfd23"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35bb64a0679da9b688f184f5b90fbccca98b8cf0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4"}]},{"sha":"38a549d26370b1e7b5f3425f977194e08dc5fde7","node_id":"C_kwDOF83__NoAKDM4YTU0OWQyNjM3MGIxZTdiNWYzNDI1Zjk3NzE5NGUwOGRjNWZkZTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"3daa68b7261760f3b8aaf2219a2dab2e735dc3b7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3daa68b7261760f3b8aaf2219a2dab2e735dc3b7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/38a549d26370b1e7b5f3425f977194e08dc5fde7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"35bb64a0679da9b688f184f5b90fbccca98b8cf0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35bb64a0679da9b688f184f5b90fbccca98b8cf0"}]},{"sha":"56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","node_id":"C_kwDOF83__NoAKDU2ZDJiODYzZWFmNTU3MGEwYzY1ZWE5YjYzMjZhOTdhYjJlMzljOWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"40c593030da220c8deaf1574aa33261486d4b51b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/40c593030da220c8deaf1574aa33261486d4b51b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"38a549d26370b1e7b5f3425f977194e08dc5fde7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/38a549d26370b1e7b5f3425f977194e08dc5fde7"}]},{"sha":"713ba2443a4447a1d41355760c895ecc703ec57c","node_id":"C_kwDOF83__NoAKDcxM2JhMjQ0M2E0NDQ3YTFkNDEzNTU3NjBjODk1ZWNjNzAzZWM1N2M","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"5926efe56789a5a9ee9cea599656bdb89b2bc497","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5926efe56789a5a9ee9cea599656bdb89b2bc497"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/713ba2443a4447a1d41355760c895ecc703ec57c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/713ba2443a4447a1d41355760c895ecc703ec57c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e"}]},{"sha":"991dfec2212e29c247349c0a111b9daaacba4e54","node_id":"C_kwDOF83__NoAKDk5MWRmZWMyMjEyZTI5YzI0NzM0OWMwYTExMWI5ZGFhYWNiYTRlNTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"470d5e0317648a9a0e5aba7d37391c6c3cecba37","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/470d5e0317648a9a0e5aba7d37391c6c3cecba37"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/991dfec2212e29c247349c0a111b9daaacba4e54","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/991dfec2212e29c247349c0a111b9daaacba4e54","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"713ba2443a4447a1d41355760c895ecc703ec57c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/713ba2443a4447a1d41355760c895ecc703ec57c"}]},{"sha":"27e957c10865d54f442abb9a4db2b2f67548d928","node_id":"C_kwDOF83__NoAKDI3ZTk1N2MxMDg2NWQ1NGY0NDJhYmI5YTRkYjJiMmY2NzU0OGQ5Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"1efe944aad1ff712e310d7d68627973a51f72a0f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1efe944aad1ff712e310d7d68627973a51f72a0f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/27e957c10865d54f442abb9a4db2b2f67548d928","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27e957c10865d54f442abb9a4db2b2f67548d928","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"991dfec2212e29c247349c0a111b9daaacba4e54","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/991dfec2212e29c247349c0a111b9daaacba4e54"}]},{"sha":"f16d666bbaa62e716c0d66caac74d0eabed9dca2","node_id":"C_kwDOF83__NoAKGYxNmQ2NjZiYmFhNjJlNzE2YzBkNjZjYWFjNzRkMGVhYmVkOWRjYTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"698253b7da8df6a37935ddf42e31a378fa107b10","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/698253b7da8df6a37935ddf42e31a378fa107b10"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f16d666bbaa62e716c0d66caac74d0eabed9dca2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"27e957c10865d54f442abb9a4db2b2f67548d928","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27e957c10865d54f442abb9a4db2b2f67548d928"}]},{"sha":"7dfb8db88bca87267617e2d9f231cdf217241fe7","node_id":"C_kwDOF83__NoAKDdkZmI4ZGI4OGJjYTg3MjY3NjE3ZTJkOWYyMzFjZGYyMTcyNDFmZTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"0f2f6fc250488cfd4062021d21a50b6e4b9dcd67","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0f2f6fc250488cfd4062021d21a50b6e4b9dcd67"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dfb8db88bca87267617e2d9f231cdf217241fe7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f16d666bbaa62e716c0d66caac74d0eabed9dca2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f16d666bbaa62e716c0d66caac74d0eabed9dca2"}]},{"sha":"86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","node_id":"C_kwDOF83__NoAKDg2ZTMwZmRmMDJkZWEyZGQ1ZmMzY2RkNDRkZDQ3YmJhMTc4MjczYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"74665de2755706e0a98aedefddf05a064d6f9050","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/74665de2755706e0a98aedefddf05a064d6f9050"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7dfb8db88bca87267617e2d9f231cdf217241fe7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dfb8db88bca87267617e2d9f231cdf217241fe7"}]},{"sha":"3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","node_id":"C_kwDOF83__NoAKDNkNDFlNTdmNDRiOWFlZGViMGNlODhjMTc1Yjk5MzdkZTZhZDNjMTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"1a7b295426d5dc94e8eccd9b88700f4995950753","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1a7b295426d5dc94e8eccd9b88700f4995950753"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9"}]},{"sha":"c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","node_id":"C_kwDOF83__NoAKGM2NTVjMGYyZDAwNDJlOWU0NWFhNWVkZmVlOWEzMDc2OTBjMGNkOWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"e339a930f697c525214fdef4876dc656c940e667","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e339a930f697c525214fdef4876dc656c940e667"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13"}]},{"sha":"fa830292720ccabc7c199249551291da825e1a90","node_id":"C_kwDOF83__NoAKGZhODMwMjkyNzIwY2NhYmM3YzE5OTI0OTU1MTI5MWRhODI1ZTFhOTA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"0b793573ecdb6789cba81c2fe00e1eb6df948b1d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b793573ecdb6789cba81c2fe00e1eb6df948b1d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa830292720ccabc7c199249551291da825e1a90","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa830292720ccabc7c199249551291da825e1a90","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e"}]},{"sha":"0b169bf8c51721082d8b4b175557a4fd7a41859e","node_id":"C_kwDOF83__NoAKDBiMTY5YmY4YzUxNzIxMDgyZDhiNGIxNzU1NTdhNGZkN2E0MTg1OWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"e92ed7519ba0954ecbd3b9af771266e6263ed784","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e92ed7519ba0954ecbd3b9af771266e6263ed784"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b169bf8c51721082d8b4b175557a4fd7a41859e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa830292720ccabc7c199249551291da825e1a90","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa830292720ccabc7c199249551291da825e1a90"}]},{"sha":"9313683ebe3a199a999ddd4435f1f8f577ecbb2b","node_id":"C_kwDOF83__NoAKDkzMTM2ODNlYmUzYTE5OWE5OTlkZGQ0NDM1ZjFmOGY1NzdlY2JiMmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"bedb61d85c7dd955dd610e090f7c541c69bcf302","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bedb61d85c7dd955dd610e090f7c541c69bcf302"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0b169bf8c51721082d8b4b175557a4fd7a41859e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b169bf8c51721082d8b4b175557a4fd7a41859e"}]},{"sha":"b6c2bff101779e4b82efc928ce50db4cd3464c4d","node_id":"C_kwDOF83__NoAKGI2YzJiZmYxMDE3NzllNGI4MmVmYzkyOGNlNTBkYjRjZDM0NjRjNGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"c0a3ed4a1a82e3751c98386673f3477df89d23ee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c0a3ed4a1a82e3751c98386673f3477df89d23ee"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b6c2bff101779e4b82efc928ce50db4cd3464c4d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9313683ebe3a199a999ddd4435f1f8f577ecbb2b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9313683ebe3a199a999ddd4435f1f8f577ecbb2b"}]},{"sha":"141848de6118a8ec0031d42a239b532e28ba7b20","node_id":"C_kwDOF83__NoAKDE0MTg0OGRlNjExOGE4ZWMwMDMxZDQyYTIzOWI1MzJlMjhiYTdiMjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"23dad5f42e28a693961cc1bf2aa9b23ae5df1bec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/23dad5f42e28a693961cc1bf2aa9b23ae5df1bec"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/141848de6118a8ec0031d42a239b532e28ba7b20","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/141848de6118a8ec0031d42a239b532e28ba7b20","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b6c2bff101779e4b82efc928ce50db4cd3464c4d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b6c2bff101779e4b82efc928ce50db4cd3464c4d"}]},{"sha":"746cefc3b695998fca753f27b7937f7b8b0fd73a","node_id":"C_kwDOF83__NoAKDc0NmNlZmMzYjY5NTk5OGZjYTc1M2YyN2I3OTM3ZjdiOGIwZmQ3M2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fe961ba6bd030acdaaad5af65547bfebb95e5b87","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fe961ba6bd030acdaaad5af65547bfebb95e5b87"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/746cefc3b695998fca753f27b7937f7b8b0fd73a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"141848de6118a8ec0031d42a239b532e28ba7b20","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/141848de6118a8ec0031d42a239b532e28ba7b20"}]},{"sha":"3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","node_id":"C_kwDOF83__NoAKDNmOWZmZTcwYmIxZDNlZmNiM2I2ZGJkYTI1MWYzMDM1YjVkOWVlNTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"c8775313f1683f64728b5bf2b8fe13ac392d31e6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c8775313f1683f64728b5bf2b8fe13ac392d31e6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"746cefc3b695998fca753f27b7937f7b8b0fd73a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/746cefc3b695998fca753f27b7937f7b8b0fd73a"}]},{"sha":"ac81fc9eeaa7ebe9071efe91205570db06a728cb","node_id":"C_kwDOF83__NoAKGFjODFmYzllZWFhN2ViZTkwNzFlZmU5MTIwNTU3MGRiMDZhNzI4Y2I","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"2d52611bc40e1e74308dd0716db200da9c07806f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2d52611bc40e1e74308dd0716db200da9c07806f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac81fc9eeaa7ebe9071efe91205570db06a728cb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56"}]},{"sha":"f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","node_id":"C_kwDOF83__NoAKGY4MmY4ODRlNDIyY2MwYTNmMjBkMzgwMTZiN2IxYmE5YjhmZDRkZTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"db7d14712f3554f347f319364f3bcd2ab69cd279","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/db7d14712f3554f347f319364f3bcd2ab69cd279"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ac81fc9eeaa7ebe9071efe91205570db06a728cb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac81fc9eeaa7ebe9071efe91205570db06a728cb"}]},{"sha":"d81c5623eff68a8c0c5f25827b85655dc611d186","node_id":"C_kwDOF83__NoAKGQ4MWM1NjIzZWZmNjhhOGMwYzVmMjU4MjdiODU2NTVkYzYxMWQxODY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fe4b117b678b53e46fed7717ba42a8b746749782","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fe4b117b678b53e46fed7717ba42a8b746749782"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d81c5623eff68a8c0c5f25827b85655dc611d186","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2"}]},{"sha":"9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","node_id":"C_kwDOF83__NoAKDlkYmUxNWFkYjVmNDE0YzFkNDIyYjY1ZTRiMGZiNDM0YWMyYjhhMGM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"1bad7cc557c1d691b024189fc6fae30bfcd8e196","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bad7cc557c1d691b024189fc6fae30bfcd8e196"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d81c5623eff68a8c0c5f25827b85655dc611d186","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d81c5623eff68a8c0c5f25827b85655dc611d186"}]},{"sha":"67402bf06994fb808632d5194c505b3cef667749","node_id":"C_kwDOF83__NoAKDY3NDAyYmYwNjk5NGZiODA4NjMyZDUxOTRjNTA1YjNjZWY2Njc3NDk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fc96727b643600198687942640cae3202de0bc3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fc96727b643600198687942640cae3202de0bc3f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/67402bf06994fb808632d5194c505b3cef667749","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67402bf06994fb808632d5194c505b3cef667749","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c"}]},{"sha":"9d9fa3ef63254933653481c5d3b5d17bd827c7a8","node_id":"C_kwDOF83__NoAKDlkOWZhM2VmNjMyNTQ5MzM2NTM0ODFjNWQzYjVkMTdiZDgyN2M3YTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"6b56f029c24b50d23819dc35587ca154f59070a7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6b56f029c24b50d23819dc35587ca154f59070a7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"67402bf06994fb808632d5194c505b3cef667749","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67402bf06994fb808632d5194c505b3cef667749"}]},{"sha":"fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","node_id":"C_kwDOF83__NoAKGZhMjJmOWRjZTRhYWY4OWZlOWJkNmEzYjYyOWQ4NjUzYTk5ZjY5NjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"88acfb49e074adebacf3a94eec90ce72d855998f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/88acfb49e074adebacf3a94eec90ce72d855998f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9d9fa3ef63254933653481c5d3b5d17bd827c7a8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9d9fa3ef63254933653481c5d3b5d17bd827c7a8"}]},{"sha":"28da794cf3573f21e2d2b7ab67f4b70faa424ef7","node_id":"C_kwDOF83__NoAKDI4ZGE3OTRjZjM1NzNmMjFlMmQyYjdhYjY3ZjRiNzBmYWE0MjRlZjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"d78999e6316deb9eaacb3eda259d8ef05cdeb100","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d78999e6316deb9eaacb3eda259d8ef05cdeb100"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961"}]},{"sha":"dd79321d938d68ff7634c0594d63609a81d08f6e","node_id":"C_kwDOF83__NoAKGRkNzkzMjFkOTM4ZDY4ZmY3NjM0YzA1OTRkNjM2MDlhODFkMDhmNmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"f4e93e721f778a41cf429127b398d6fe5a19e9bf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f4e93e721f778a41cf429127b398d6fe5a19e9bf"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dd79321d938d68ff7634c0594d63609a81d08f6e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"28da794cf3573f21e2d2b7ab67f4b70faa424ef7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28da794cf3573f21e2d2b7ab67f4b70faa424ef7"}]},{"sha":"b01cfede232680315b8e776989863016c434c1c4","node_id":"C_kwDOF83__NoAKGIwMWNmZWRlMjMyNjgwMzE1YjhlNzc2OTg5ODYzMDE2YzQzNGMxYzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"980e5f0bf331e9972241c1f9e27d2783a1cff424","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/980e5f0bf331e9972241c1f9e27d2783a1cff424"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b01cfede232680315b8e776989863016c434c1c4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b01cfede232680315b8e776989863016c434c1c4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"dd79321d938d68ff7634c0594d63609a81d08f6e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dd79321d938d68ff7634c0594d63609a81d08f6e"}]},{"sha":"6bc380dd03a72ed6b936206410d5d306635baffb","node_id":"C_kwDOF83__NoAKDZiYzM4MGRkMDNhNzJlZDZiOTM2MjA2NDEwZDVkMzA2NjM1YmFmZmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"905ca3640c73a8eeff596afdadfe54f21a2a7827","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/905ca3640c73a8eeff596afdadfe54f21a2a7827"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6bc380dd03a72ed6b936206410d5d306635baffb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6bc380dd03a72ed6b936206410d5d306635baffb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b01cfede232680315b8e776989863016c434c1c4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b01cfede232680315b8e776989863016c434c1c4"}]},{"sha":"e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","node_id":"C_kwDOF83__NoAKGU3ODMwZWFlNjg4ZGVjMGJjZDZiYTE2YzdlYjMxZDA2OWY0Yzc5ZDk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"7cbf5e72517459eaa4e27ab2f9612bc020fb081d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7cbf5e72517459eaa4e27ab2f9612bc020fb081d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6bc380dd03a72ed6b936206410d5d306635baffb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6bc380dd03a72ed6b936206410d5d306635baffb"}]},{"sha":"9ead59ffdbd00680efdcd278c945d0190f5431a2","node_id":"C_kwDOF83__NoAKDllYWQ1OWZmZGJkMDA2ODBlZmRjZDI3OGM5NDVkMDE5MGY1NDMxYTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"d4106ae332badffb76ba65d14f573bacdc622bf9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d4106ae332badffb76ba65d14f573bacdc622bf9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9ead59ffdbd00680efdcd278c945d0190f5431a2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9"}]},{"sha":"bf4f3003d8ca2adca1fa6521e79de2e38fa00085","node_id":"C_kwDOF83__NoAKGJmNGYzMDAzZDhjYTJhZGNhMWZhNjUyMWU3OWRlMmUzOGZhMDAwODU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"108372a18861f1313ea463464fa0556adff6cd2c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/108372a18861f1313ea463464fa0556adff6cd2c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9ead59ffdbd00680efdcd278c945d0190f5431a2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9ead59ffdbd00680efdcd278c945d0190f5431a2"}]},{"sha":"54d57f1f7cd199df49c988724d9b630389964ce8","node_id":"C_kwDOF83__NoAKDU0ZDU3ZjFmN2NkMTk5ZGY0OWM5ODg3MjRkOWI2MzAzODk5NjRjZTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"48622698e104ea5980cad5c132faf25c431ef97b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/48622698e104ea5980cad5c132faf25c431ef97b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54d57f1f7cd199df49c988724d9b630389964ce8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54d57f1f7cd199df49c988724d9b630389964ce8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"bf4f3003d8ca2adca1fa6521e79de2e38fa00085","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bf4f3003d8ca2adca1fa6521e79de2e38fa00085"}]},{"sha":"b65976a868ea2226600ac191d4a63767b514bef0","node_id":"C_kwDOF83__NoAKGI2NTk3NmE4NjhlYTIyMjY2MDBhYzE5MWQ0YTYzNzY3YjUxNGJlZjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"89a20c2ed2e32c6bf161e05441c62873839f7a3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/89a20c2ed2e32c6bf161e05441c62873839f7a3f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b65976a868ea2226600ac191d4a63767b514bef0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b65976a868ea2226600ac191d4a63767b514bef0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54d57f1f7cd199df49c988724d9b630389964ce8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54d57f1f7cd199df49c988724d9b630389964ce8"}]},{"sha":"8cb55938020bf324697a713ef8341cf74c676473","node_id":"C_kwDOF83__NoAKDhjYjU1OTM4MDIwYmYzMjQ2OTdhNzEzZWY4MzQxY2Y3NGM2NzY0NzM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"90d6190c3c177b8b68a435928a49983ab456bd70","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/90d6190c3c177b8b68a435928a49983ab456bd70"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8cb55938020bf324697a713ef8341cf74c676473","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8cb55938020bf324697a713ef8341cf74c676473","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b65976a868ea2226600ac191d4a63767b514bef0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b65976a868ea2226600ac191d4a63767b514bef0"}]},{"sha":"a67fc27c06fcb20088043e80e5c70f9a7c7f557f","node_id":"C_kwDOF83__NoAKGE2N2ZjMjdjMDZmY2IyMDA4ODA0M2U4MGU1YzcwZjlhN2M3ZjU1N2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"68e4b0159f0da11f7515c9dd474b97231034cd9a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/68e4b0159f0da11f7515c9dd474b97231034cd9a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8cb55938020bf324697a713ef8341cf74c676473","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8cb55938020bf324697a713ef8341cf74c676473"}]},{"sha":"2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","node_id":"C_kwDOF83__NoAKDJkYjczZDllOGI2Yjk1YjA1ODkwZjQ2YTdlZTdiNWI4MGQwMjVjYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"06b0eeca8e5f85d7c15e450e878dad2dc31547ea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/06b0eeca8e5f85d7c15e450e878dad2dc31547ea"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a67fc27c06fcb20088043e80e5c70f9a7c7f557f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a67fc27c06fcb20088043e80e5c70f9a7c7f557f"}]},{"sha":"771cd52d642b567fd401abeeeb73f6a03b7c25d1","node_id":"C_kwDOF83__NoAKDc3MWNkNTJkNjQyYjU2N2ZkNDAxYWJlZWViNzNmNmEwM2I3YzI1ZDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"979d57f875243288b385bd75240c9c458f4e07ba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/979d57f875243288b385bd75240c9c458f4e07ba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/771cd52d642b567fd401abeeeb73f6a03b7c25d1","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9"}]},{"sha":"54a311b32085fd8a201f47993987cd3898519913","node_id":"C_kwDOF83__NoAKDU0YTMxMWIzMjA4NWZkOGEyMDFmNDc5OTM5ODdjZDM4OTg1MTk5MTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"0d67f9361497af6f5244d44d6c09b2e66f2f6ee2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0d67f9361497af6f5244d44d6c09b2e66f2f6ee2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54a311b32085fd8a201f47993987cd3898519913","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54a311b32085fd8a201f47993987cd3898519913","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"771cd52d642b567fd401abeeeb73f6a03b7c25d1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/771cd52d642b567fd401abeeeb73f6a03b7c25d1"}]},{"sha":"2d4fe5cac27d329c45335fff21a76cc6f2887a42","node_id":"C_kwDOF83__NoAKDJkNGZlNWNhYzI3ZDMyOWM0NTMzNWZmZjIxYTc2Y2M2ZjI4ODdhNDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"8fadb57323efcca3b534843dc60d7d73ae896585","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8fadb57323efcca3b534843dc60d7d73ae896585"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2d4fe5cac27d329c45335fff21a76cc6f2887a42","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54a311b32085fd8a201f47993987cd3898519913","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54a311b32085fd8a201f47993987cd3898519913"}]},{"sha":"1a0c294006f0727c08a8c535d4c35ca9d3a11560","node_id":"C_kwDOF83__NoAKDFhMGMyOTQwMDZmMDcyN2MwOGE4YzUzNWQ0YzM1Y2E5ZDNhMTE1NjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"98758694e1b4f67766769904addeeda09118051e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/98758694e1b4f67766769904addeeda09118051e"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1a0c294006f0727c08a8c535d4c35ca9d3a11560","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2d4fe5cac27d329c45335fff21a76cc6f2887a42","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2d4fe5cac27d329c45335fff21a76cc6f2887a42"}]},{"sha":"5fd537309af26ec463652904bb9b4af194f053f9","node_id":"C_kwDOF83__NoAKDVmZDUzNzMwOWFmMjZlYzQ2MzY1MjkwNGJiOWI0YWYxOTRmMDUzZjk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"783b9b4e10c56fa33fa6b65be1fb5dd64ef4ad52","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/783b9b4e10c56fa33fa6b65be1fb5dd64ef4ad52"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5fd537309af26ec463652904bb9b4af194f053f9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5fd537309af26ec463652904bb9b4af194f053f9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1a0c294006f0727c08a8c535d4c35ca9d3a11560","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1a0c294006f0727c08a8c535d4c35ca9d3a11560"}]},{"sha":"5850a11ff295071daa92b2e0ae3e9351e555e22a","node_id":"C_kwDOF83__NoAKDU4NTBhMTFmZjI5NTA3MWRhYTkyYjJlMGFlM2U5MzUxZTU1NWUyMmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"8c71ecf787f5275b75447146d6e79ae612a2c183","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8c71ecf787f5275b75447146d6e79ae612a2c183"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5850a11ff295071daa92b2e0ae3e9351e555e22a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5fd537309af26ec463652904bb9b4af194f053f9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5fd537309af26ec463652904bb9b4af194f053f9"}]},{"sha":"f414411be9156696683ecf374478379ae1e65799","node_id":"C_kwDOF83__NoAKGY0MTQ0MTFiZTkxNTY2OTY2ODNlY2YzNzQ0NzgzNzlhZTFlNjU3OTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"d73a882c8f6f1b7f5ead65b5ec6f377810be5317","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d73a882c8f6f1b7f5ead65b5ec6f377810be5317"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f414411be9156696683ecf374478379ae1e65799","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f414411be9156696683ecf374478379ae1e65799","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5850a11ff295071daa92b2e0ae3e9351e555e22a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5850a11ff295071daa92b2e0ae3e9351e555e22a"}]},{"sha":"9494846e873fba740874ec7ecadce4a6d00f2321","node_id":"C_kwDOF83__NoAKDk0OTQ4NDZlODczZmJhNzQwODc0ZWM3ZWNhZGNlNGE2ZDAwZjIzMjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"90f6324360eb960205133c9824ba404cadbf5207","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/90f6324360eb960205133c9824ba404cadbf5207"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9494846e873fba740874ec7ecadce4a6d00f2321","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9494846e873fba740874ec7ecadce4a6d00f2321","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f414411be9156696683ecf374478379ae1e65799","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f414411be9156696683ecf374478379ae1e65799"}]},{"sha":"140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","node_id":"C_kwDOF83__NoAKDE0MGMzM2VjODI0OWE0YTFlZmUyZmZjOGJjYzNlNGI1Zjg0Y2JjNWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"d912a3b26e30a7ffa5d679ac528841905c31b982","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d912a3b26e30a7ffa5d679ac528841905c31b982"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9494846e873fba740874ec7ecadce4a6d00f2321","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9494846e873fba740874ec7ecadce4a6d00f2321"}]},{"sha":"965c832e10ac29e3c0f1b91fbb5f06891189f011","node_id":"C_kwDOF83__NoAKDk2NWM4MzJlMTBhYzI5ZTNjMGYxYjkxZmJiNWYwNjg5MTE4OWYwMTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"055491f8f5a4f7b6dba92bca653c2fe4a36e01a1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/055491f8f5a4f7b6dba92bca653c2fe4a36e01a1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/965c832e10ac29e3c0f1b91fbb5f06891189f011","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f"}]},{"sha":"33bab99045167f9b921bd150ec6b92a07cabbb68","node_id":"C_kwDOF83__NoAKDMzYmFiOTkwNDUxNjdmOWI5MjFiZDE1MGVjNmI5MmEwN2NhYmJiNjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"414bcaafd60db705603d60bdc727f6bd4dde4433","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/414bcaafd60db705603d60bdc727f6bd4dde4433"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/33bab99045167f9b921bd150ec6b92a07cabbb68","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"965c832e10ac29e3c0f1b91fbb5f06891189f011","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/965c832e10ac29e3c0f1b91fbb5f06891189f011"}]}] + +https +GET +api.github.com +None +/repositories/399376380/pulls/18/commits?per_page=100&page=2 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9daf800dcf9c6d95497d2e403eeb187fb9d988696065f13e7d5256015cbb7c67"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:51:23 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="prev", ; rel="first"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4797'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '203'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9576:242361:70602C1:70F97F5:661E59E4')] +[{"sha":"d53b9bd64685138bda5b058402f47aa23b2f4e1e","node_id":"C_kwDOF83__NoAKGQ1M2I5YmQ2NDY4NTEzOGJkYTViMDU4NDAyZjQ3YWEyM2IyZjRlMWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"0b3a284b618aba7b17669dc6146235846bceceec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b3a284b618aba7b17669dc6146235846bceceec"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d53b9bd64685138bda5b058402f47aa23b2f4e1e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"33bab99045167f9b921bd150ec6b92a07cabbb68","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/33bab99045167f9b921bd150ec6b92a07cabbb68"}]},{"sha":"989900e5eb2a5260f308b0b1818139704e5888ae","node_id":"C_kwDOF83__NoAKDk4OTkwMGU1ZWIyYTUyNjBmMzA4YjBiMTgxODEzOTcwNGU1ODg4YWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"7038be5b17b879c1212a5487c56c4cb7cca22d5c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7038be5b17b879c1212a5487c56c4cb7cca22d5c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/989900e5eb2a5260f308b0b1818139704e5888ae","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/989900e5eb2a5260f308b0b1818139704e5888ae","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d53b9bd64685138bda5b058402f47aa23b2f4e1e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d53b9bd64685138bda5b058402f47aa23b2f4e1e"}]},{"sha":"e11e6666b3cafc148568d7e58d46bcaf9e0f2143","node_id":"C_kwDOF83__NoAKGUxMWU2NjY2YjNjYWZjMTQ4NTY4ZDdlNThkNDZiY2FmOWUwZjIxNDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"bdcab15b193a509725860b74e6172db9c9e0442d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bdcab15b193a509725860b74e6172db9c9e0442d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"989900e5eb2a5260f308b0b1818139704e5888ae","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/989900e5eb2a5260f308b0b1818139704e5888ae"}]},{"sha":"f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","node_id":"C_kwDOF83__NoAKGY0YTM5Y2E2NDQyZTdkNzgzZDdkNTdkOGNkZGY5OGViZjkwY2MxNDg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"3b33e28e611043e355d0a046a9ec8f1ed60cde92","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3b33e28e611043e355d0a046a9ec8f1ed60cde92"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e11e6666b3cafc148568d7e58d46bcaf9e0f2143","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e11e6666b3cafc148568d7e58d46bcaf9e0f2143"}]},{"sha":"94c509c1d2433ff6733e6d5e555fd0f9af47667a","node_id":"C_kwDOF83__NoAKDk0YzUwOWMxZDI0MzNmZjY3MzNlNmQ1ZTU1NWZkMGY5YWY0NzY2N2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"faf236dc1d98b0c0e791036ffec66bd188269494","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/faf236dc1d98b0c0e791036ffec66bd188269494"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/94c509c1d2433ff6733e6d5e555fd0f9af47667a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148"}]},{"sha":"b1da2ff5d37ce752da86c15bd721b990f72d2204","node_id":"C_kwDOF83__NoAKGIxZGEyZmY1ZDM3Y2U3NTJkYTg2YzE1YmQ3MjFiOTkwZjcyZDIyMDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"494757ef627490593e82cb4e7f6441f313cd22b1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/494757ef627490593e82cb4e7f6441f313cd22b1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1da2ff5d37ce752da86c15bd721b990f72d2204","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"94c509c1d2433ff6733e6d5e555fd0f9af47667a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/94c509c1d2433ff6733e6d5e555fd0f9af47667a"}]},{"sha":"b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","node_id":"C_kwDOF83__NoAKGI5YTRhOTVhNzY2OWJiNjg4ZWFmOWM5OWQ3NDE2MTViZGViOWEzYmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"5d5c995d45b83a5223abbd798c13cc6eec188762","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5d5c995d45b83a5223abbd798c13cc6eec188762"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b1da2ff5d37ce752da86c15bd721b990f72d2204","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1da2ff5d37ce752da86c15bd721b990f72d2204"}]},{"sha":"7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","node_id":"C_kwDOF83__NoAKDdjMDlkZDcxYTVmOWVlYTYwNjVkMWJjYTI1NjNmZDBiYTI2Y2IzMWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"ce6e200389ac6b83ec810fa348f21da113ab39ad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ce6e200389ac6b83ec810fa348f21da113ab39ad"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be"}]},{"sha":"8138ac02f7370f2b3e0ba18eb326231f3dc25767","node_id":"C_kwDOF83__NoAKDgxMzhhYzAyZjczNzBmMmIzZTBiYTE4ZWIzMjYyMzFmM2RjMjU3Njc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7b370eb3d1ba22879377f043473d4a71704097a2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7b370eb3d1ba22879377f043473d4a71704097a2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8138ac02f7370f2b3e0ba18eb326231f3dc25767","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f"}]},{"sha":"4342dab36ead5f115ab89eb5d20d33b00afa67dc","node_id":"C_kwDOF83__NoAKDQzNDJkYWIzNmVhZDVmMTE1YWI4OWViNWQyMGQzM2IwMGFmYTY3ZGM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7173a5c3984e3511ad730752432cbdec0b21de35","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7173a5c3984e3511ad730752432cbdec0b21de35"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4342dab36ead5f115ab89eb5d20d33b00afa67dc","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8138ac02f7370f2b3e0ba18eb326231f3dc25767","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8138ac02f7370f2b3e0ba18eb326231f3dc25767"}]},{"sha":"a3a61e5788ec64eff9d219dd89a0e9168a21941f","node_id":"C_kwDOF83__NoAKGEzYTYxZTU3ODhlYzY0ZWZmOWQyMTlkZDg5YTBlOTE2OGEyMTk0MWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7ee0271301886bf533e5dbfe15c901528a4d669f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7ee0271301886bf533e5dbfe15c901528a4d669f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3a61e5788ec64eff9d219dd89a0e9168a21941f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4342dab36ead5f115ab89eb5d20d33b00afa67dc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4342dab36ead5f115ab89eb5d20d33b00afa67dc"}]},{"sha":"e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","node_id":"C_kwDOF83__NoAKGUzYTQ1MWI3NTJmZDg0M2U2OWE5ZjJjZDFjYmIwZGNjMDYwYmE0ZDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"26f2c4a159165b78eb6ff2080811ca2115476818","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/26f2c4a159165b78eb6ff2080811ca2115476818"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3a61e5788ec64eff9d219dd89a0e9168a21941f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3a61e5788ec64eff9d219dd89a0e9168a21941f"}]},{"sha":"0d5119e4905a0a36a535f2578ce96b41d687f63a","node_id":"C_kwDOF83__NoAKDBkNTExOWU0OTA1YTBhMzZhNTM1ZjI1NzhjZTk2YjQxZDY4N2Y2M2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"aac2bebe9d2ab5fc5f7b10be48b4716cb13297a0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/aac2bebe9d2ab5fc5f7b10be48b4716cb13297a0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0d5119e4905a0a36a535f2578ce96b41d687f63a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0"}]},{"sha":"26d5494b0ed51567d0f58fa3362caf3de1387fb4","node_id":"C_kwDOF83__NoAKDI2ZDU0OTRiMGVkNTE1NjdkMGY1OGZhMzM2MmNhZjNkZTEzODdmYjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"49b03bdae56c36c1daeabb793840f917af28de58","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/49b03bdae56c36c1daeabb793840f917af28de58"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/26d5494b0ed51567d0f58fa3362caf3de1387fb4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0d5119e4905a0a36a535f2578ce96b41d687f63a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0d5119e4905a0a36a535f2578ce96b41d687f63a"}]},{"sha":"c55f434953618d3ee909a82555a2c2e8fe31b8e4","node_id":"C_kwDOF83__NoAKGM1NWY0MzQ5NTM2MThkM2VlOTA5YTgyNTU1YTJjMmU4ZmUzMWI4ZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"fd665bea395e2acee2d44f7a4540bab6f911f9aa","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fd665bea395e2acee2d44f7a4540bab6f911f9aa"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c55f434953618d3ee909a82555a2c2e8fe31b8e4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"26d5494b0ed51567d0f58fa3362caf3de1387fb4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/26d5494b0ed51567d0f58fa3362caf3de1387fb4"}]},{"sha":"343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","node_id":"C_kwDOF83__NoAKDM0M2U1ZTMyNDhjYjFmM2E5MjlhZDVlZmVmZmJlMDEzN2Q1ZjRmYWQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"531aef925460e634a0ddbb4bc58295960a8f18e0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/531aef925460e634a0ddbb4bc58295960a8f18e0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c55f434953618d3ee909a82555a2c2e8fe31b8e4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c55f434953618d3ee909a82555a2c2e8fe31b8e4"}]},{"sha":"93e8596aa02ca43bb0a2f4679cb998b842585b99","node_id":"C_kwDOF83__NoAKDkzZTg1OTZhYTAyY2E0M2JiMGEyZjQ2NzljYjk5OGI4NDI1ODViOTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"0d20a85ba8eed6073b9bdb2d3e4e52a1919a9bf2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0d20a85ba8eed6073b9bdb2d3e4e52a1919a9bf2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93e8596aa02ca43bb0a2f4679cb998b842585b99","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad"}]},{"sha":"93dd83317c6f5c690ddab5f833e121a7aa7e9958","node_id":"C_kwDOF83__NoAKDkzZGQ4MzMxN2M2ZjVjNjkwZGRhYjVmODMzZTEyMWE3YWE3ZTk5NTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"d8417612b327676d69a2018e5b36901ebf8c8177","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d8417612b327676d69a2018e5b36901ebf8c8177"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93dd83317c6f5c690ddab5f833e121a7aa7e9958","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"93e8596aa02ca43bb0a2f4679cb998b842585b99","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93e8596aa02ca43bb0a2f4679cb998b842585b99"}]},{"sha":"7dde5a4c24bfee4440e1eb74d380b3ed7f988714","node_id":"C_kwDOF83__NoAKDdkZGU1YTRjMjRiZmVlNDQ0MGUxZWI3NGQzODBiM2VkN2Y5ODg3MTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"36cb87cda2ac8ecc784e5f665a1af9df07c30623","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/36cb87cda2ac8ecc784e5f665a1af9df07c30623"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"93dd83317c6f5c690ddab5f833e121a7aa7e9958","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93dd83317c6f5c690ddab5f833e121a7aa7e9958"}]},{"sha":"6b3eaceed1efbb6412cd414cf42c11b523d43b46","node_id":"C_kwDOF83__NoAKDZiM2VhY2VlZDFlZmJiNjQxMmNkNDE0Y2Y0MmMxMWI1MjNkNDNiNDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"88ff131e4015879f9679bb45e5ac3b927e0e2071","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/88ff131e4015879f9679bb45e5ac3b927e0e2071"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b3eaceed1efbb6412cd414cf42c11b523d43b46","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7dde5a4c24bfee4440e1eb74d380b3ed7f988714","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dde5a4c24bfee4440e1eb74d380b3ed7f988714"}]},{"sha":"a42445818e0e4087aeca09673ee6977864fe01ef","node_id":"C_kwDOF83__NoAKGE0MjQ0NTgxOGUwZTQwODdhZWNhMDk2NzNlZTY5Nzc4NjRmZTAxZWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"7854f0fe838743b86eaaf5d8f03836b38a18f743","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7854f0fe838743b86eaaf5d8f03836b38a18f743"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a42445818e0e4087aeca09673ee6977864fe01ef","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a42445818e0e4087aeca09673ee6977864fe01ef","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6b3eaceed1efbb6412cd414cf42c11b523d43b46","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b3eaceed1efbb6412cd414cf42c11b523d43b46"}]},{"sha":"2e92add26d5813078727a617884b9a3ae30e3de9","node_id":"C_kwDOF83__NoAKDJlOTJhZGQyNmQ1ODEzMDc4NzI3YTYxNzg4NGI5YTNhZTMwZTNkZTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"84c9d817f10cc927b04b64ea54a0534cf46d9f37","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/84c9d817f10cc927b04b64ea54a0534cf46d9f37"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2e92add26d5813078727a617884b9a3ae30e3de9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e92add26d5813078727a617884b9a3ae30e3de9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a42445818e0e4087aeca09673ee6977864fe01ef","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a42445818e0e4087aeca09673ee6977864fe01ef"}]},{"sha":"c3338ae6aa615c78f5507d315c046d9e82bbce0d","node_id":"C_kwDOF83__NoAKGMzMzM4YWU2YWE2MTVjNzhmNTUwN2QzMTVjMDQ2ZDllODJiYmNlMGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"8f5c543505020a19984f1b3c27803420a1ab4db4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8f5c543505020a19984f1b3c27803420a1ab4db4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c3338ae6aa615c78f5507d315c046d9e82bbce0d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2e92add26d5813078727a617884b9a3ae30e3de9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e92add26d5813078727a617884b9a3ae30e3de9"}]},{"sha":"fda1d3579f11ce0f851c037b0ac50fb641d79f11","node_id":"C_kwDOF83__NoAKGZkYTFkMzU3OWYxMWNlMGY4NTFjMDM3YjBhYzUwZmI2NDFkNzlmMTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"aa5acbc52f19da9cc5e7c423ec8056ac0069b36b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/aa5acbc52f19da9cc5e7c423ec8056ac0069b36b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fda1d3579f11ce0f851c037b0ac50fb641d79f11","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c3338ae6aa615c78f5507d315c046d9e82bbce0d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c3338ae6aa615c78f5507d315c046d9e82bbce0d"}]},{"sha":"c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","node_id":"C_kwDOF83__NoAKGM0MWQ2OWMwODAwZjdjNWFhMWM3YzVmMGZhNjAwZjk0ZjNlM2JhNDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"b0680713892d36ec0e70b81eb1983f23687d6bb6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b0680713892d36ec0e70b81eb1983f23687d6bb6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fda1d3579f11ce0f851c037b0ac50fb641d79f11","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fda1d3579f11ce0f851c037b0ac50fb641d79f11"}]},{"sha":"5de437bf09655fb67fa7f0ddecf969f2635db32e","node_id":"C_kwDOF83__NoAKDVkZTQzN2JmMDk2NTVmYjY3ZmE3ZjBkZGVjZjk2OWYyNjM1ZGIzMmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"93b445e1aa39c94b425869cb073cd1f548f02652","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/93b445e1aa39c94b425869cb073cd1f548f02652"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5de437bf09655fb67fa7f0ddecf969f2635db32e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41"}]},{"sha":"70d4a3979fca7c6983d73f89249f1a072b6939f3","node_id":"C_kwDOF83__NoAKDcwZDRhMzk3OWZjYTdjNjk4M2Q3M2Y4OTI0OWYxYTA3MmI2OTM5ZjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"b63b69b729e943f7fb61615e2444f9d2d67a3749","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b63b69b729e943f7fb61615e2444f9d2d67a3749"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/70d4a3979fca7c6983d73f89249f1a072b6939f3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5de437bf09655fb67fa7f0ddecf969f2635db32e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5de437bf09655fb67fa7f0ddecf969f2635db32e"}]},{"sha":"5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","node_id":"C_kwDOF83__NoAKDUzOTJlNjg2MzBmOGMxZjNlNGIyOTVlYTgwODMxYzZhOWNhYTRkYzI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"0c7a5093ceec2d16578988ff066d687796356fd8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0c7a5093ceec2d16578988ff066d687796356fd8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"70d4a3979fca7c6983d73f89249f1a072b6939f3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/70d4a3979fca7c6983d73f89249f1a072b6939f3"}]},{"sha":"66ead66f52fd286f124c32aa3884ae1ad36f3963","node_id":"C_kwDOF83__NoAKDY2ZWFkNjZmNTJmZDI4NmYxMjRjMzJhYTM4ODRhZTFhZDM2ZjM5NjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"cdf1aa4a83b6535a283870123b95d902ac55135d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/cdf1aa4a83b6535a283870123b95d902ac55135d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/66ead66f52fd286f124c32aa3884ae1ad36f3963","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2"}]},{"sha":"b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","node_id":"C_kwDOF83__NoAKGIxZThjOGM3ZmEyMjhkM2IzYmExZjBiNDlkNWFiZjYzNTFhYzgxM2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"372da138c6830d65620ae9f01ade021c385a8b55","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/372da138c6830d65620ae9f01ade021c385a8b55"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"66ead66f52fd286f124c32aa3884ae1ad36f3963","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/66ead66f52fd286f124c32aa3884ae1ad36f3963"}]},{"sha":"3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","node_id":"C_kwDOF83__NoAKDNiNTE5NWFhODBhNzNmZjE3ZWJmMGE0YjUzNTUwY2VmYjcwNTZiYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"0e63cb7730405421e952d8d865db85b8f637fabe","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0e63cb7730405421e952d8d865db85b8f637fabe"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a"}]},{"sha":"4d570c74cab565cd7e2b6139e5a57f92b7b886be","node_id":"C_kwDOF83__NoAKDRkNTcwYzc0Y2FiNTY1Y2Q3ZTJiNjEzOWU1YTU3ZjkyYjdiODg2YmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"ee704a8f97195f8ca95775a9223794c9a107ea79","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ee704a8f97195f8ca95775a9223794c9a107ea79"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4d570c74cab565cd7e2b6139e5a57f92b7b886be","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9"}]},{"sha":"e21f41004058e91d8dbb3caff061a097ea008911","node_id":"C_kwDOF83__NoAKGUyMWY0MTAwNDA1OGU5MWQ4ZGJiM2NhZmYwNjFhMDk3ZWEwMDg5MTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"45dd732b0501bfce418a2a17fa678bfe3f475e7d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/45dd732b0501bfce418a2a17fa678bfe3f475e7d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e21f41004058e91d8dbb3caff061a097ea008911","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e21f41004058e91d8dbb3caff061a097ea008911","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4d570c74cab565cd7e2b6139e5a57f92b7b886be","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4d570c74cab565cd7e2b6139e5a57f92b7b886be"}]},{"sha":"1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","node_id":"C_kwDOF83__NoAKDE1NTlmZTcxMjk1Y2EzNmRjYzZmYTNlN2FiN2JiZmQ4OGE4MWQ4NmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"4cd94077797f1d89c924cce427088827d9a2c01d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4cd94077797f1d89c924cce427088827d9a2c01d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e21f41004058e91d8dbb3caff061a097ea008911","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e21f41004058e91d8dbb3caff061a097ea008911"}]},{"sha":"b10758b37d2f7b8054f84e716323ef01113bdc5a","node_id":"C_kwDOF83__NoAKGIxMDc1OGIzN2QyZjdiODA1NGY4NGU3MTYzMjNlZjAxMTEzYmRjNWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"940c014b837d2d1bb87000f1f83bc939bbfccac2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/940c014b837d2d1bb87000f1f83bc939bbfccac2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b10758b37d2f7b8054f84e716323ef01113bdc5a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c"}]},{"sha":"ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","node_id":"C_kwDOF83__NoAKGVhNmFjYjFhMTE4OGIwMWRkMWViYmJkNjE2OWE1Yjg0NWQ1ZWNkZDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"0b36fcbd31c164b1f6c77ba79647caec104fae68","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b36fcbd31c164b1f6c77ba79647caec104fae68"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b10758b37d2f7b8054f84e716323ef01113bdc5a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b10758b37d2f7b8054f84e716323ef01113bdc5a"}]},{"sha":"0e617968795f452376ad263cbe1a5e4af8780302","node_id":"C_kwDOF83__NoAKDBlNjE3OTY4Nzk1ZjQ1MjM3NmFkMjYzY2JlMWE1ZTRhZjg3ODAzMDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"d5788b203ca5cf6d33969afdb0fb85e46d6c96ab","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d5788b203ca5cf6d33969afdb0fb85e46d6c96ab"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0e617968795f452376ad263cbe1a5e4af8780302","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e617968795f452376ad263cbe1a5e4af8780302","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0"}]},{"sha":"273452e7560cb359d5f856bf0020c2527af8d40f","node_id":"C_kwDOF83__NoAKDI3MzQ1MmU3NTYwY2IzNTlkNWY4NTZiZjAwMjBjMjUyN2FmOGQ0MGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"65610af9a75b6eaac4da5da637d5489f2e82bbba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/65610af9a75b6eaac4da5da637d5489f2e82bbba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/273452e7560cb359d5f856bf0020c2527af8d40f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/273452e7560cb359d5f856bf0020c2527af8d40f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0e617968795f452376ad263cbe1a5e4af8780302","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e617968795f452376ad263cbe1a5e4af8780302"}]},{"sha":"7694958540750fe64b9271a4beb0c7d929bf7dff","node_id":"C_kwDOF83__NoAKDc2OTQ5NTg1NDA3NTBmZTY0YjkyNzFhNGJlYjBjN2Q5MjliZjdkZmY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"82d37f6bd6bebdc16b3379661bc0d902cb432ee7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/82d37f6bd6bebdc16b3379661bc0d902cb432ee7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7694958540750fe64b9271a4beb0c7d929bf7dff","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"273452e7560cb359d5f856bf0020c2527af8d40f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/273452e7560cb359d5f856bf0020c2527af8d40f"}]},{"sha":"b37681e6cd269af256fbc9834ad8258389ae0a3b","node_id":"C_kwDOF83__NoAKGIzNzY4MWU2Y2QyNjlhZjI1NmZiYzk4MzRhZDgyNTgzODlhZTBhM2I","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"ce22b471d5d2ed59deb1bde24fb3bd9c03272f74","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ce22b471d5d2ed59deb1bde24fb3bd9c03272f74"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b37681e6cd269af256fbc9834ad8258389ae0a3b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7694958540750fe64b9271a4beb0c7d929bf7dff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7694958540750fe64b9271a4beb0c7d929bf7dff"}]},{"sha":"37d7bdc1af3512d1d8752e4319c103392a133d03","node_id":"C_kwDOF83__NoAKDM3ZDdiZGMxYWYzNTEyZDFkODc1MmU0MzE5YzEwMzM5MmExMzNkMDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"135c2f826bc4c2011cf9cb123daeafef4214a0d8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/135c2f826bc4c2011cf9cb123daeafef4214a0d8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/37d7bdc1af3512d1d8752e4319c103392a133d03","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b37681e6cd269af256fbc9834ad8258389ae0a3b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b37681e6cd269af256fbc9834ad8258389ae0a3b"}]},{"sha":"02440e727939b320077b2552cd1e2819122762e6","node_id":"C_kwDOF83__NoAKDAyNDQwZTcyNzkzOWIzMjAwNzdiMjU1MmNkMWUyODE5MTIyNzYyZTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"205cb3059480e23ed0cd18e76d0224c4a417f539","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/205cb3059480e23ed0cd18e76d0224c4a417f539"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/02440e727939b320077b2552cd1e2819122762e6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/02440e727939b320077b2552cd1e2819122762e6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"37d7bdc1af3512d1d8752e4319c103392a133d03","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/37d7bdc1af3512d1d8752e4319c103392a133d03"}]},{"sha":"cf8a20fe025a120a38033327b45213f75a30ebaf","node_id":"C_kwDOF83__NoAKGNmOGEyMGZlMDI1YTEyMGEzODAzMzMyN2I0NTIxM2Y3NWEzMGViYWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"486c6fb99b1cc8dc4c6f5767d126eb13aad872ed","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/486c6fb99b1cc8dc4c6f5767d126eb13aad872ed"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/cf8a20fe025a120a38033327b45213f75a30ebaf","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"02440e727939b320077b2552cd1e2819122762e6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/02440e727939b320077b2552cd1e2819122762e6"}]},{"sha":"2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","node_id":"C_kwDOF83__NoAKDJlN2UzZTg5MTBiMzM0ZGM3ZWQwOTJhYzU3ZjVlYjk4YzhkMmRhMzA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"958bfe4b42cefb9a05a286b6aff678800b41cf77","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/958bfe4b42cefb9a05a286b6aff678800b41cf77"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"cf8a20fe025a120a38033327b45213f75a30ebaf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/cf8a20fe025a120a38033327b45213f75a30ebaf"}]},{"sha":"72c450fe9fad9b732c752fda13eae5358150ac6c","node_id":"C_kwDOF83__NoAKDcyYzQ1MGZlOWZhZDliNzMyYzc1MmZkYTEzZWFlNTM1ODE1MGFjNmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"e3240da5e3d8830ec75464d54f4086055aca6818","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e3240da5e3d8830ec75464d54f4086055aca6818"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/72c450fe9fad9b732c752fda13eae5358150ac6c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30"}]},{"sha":"4918fb6875bad67ed11a790b5c1bfe92a832fe2a","node_id":"C_kwDOF83__NoAKDQ5MThmYjY4NzViYWQ2N2VkMTFhNzkwYjVjMWJmZTkyYTgzMmZlMmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"e2e914419a2c8ebc16b720e183468948811227e5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e2e914419a2c8ebc16b720e183468948811227e5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"72c450fe9fad9b732c752fda13eae5358150ac6c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/72c450fe9fad9b732c752fda13eae5358150ac6c"}]},{"sha":"4f1c4bcbe523e52af825a241984c35a846aba5f2","node_id":"C_kwDOF83__NoAKDRmMWM0YmNiZTUyM2U1MmFmODI1YTI0MTk4NGMzNWE4NDZhYmE1ZjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"b610371ead83324bbd41bc45905e5d5ee2ea0d80","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b610371ead83324bbd41bc45905e5d5ee2ea0d80"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4f1c4bcbe523e52af825a241984c35a846aba5f2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4918fb6875bad67ed11a790b5c1bfe92a832fe2a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4918fb6875bad67ed11a790b5c1bfe92a832fe2a"}]},{"sha":"c4d3429387987cbe0740b97c3bd9e3c3053776d2","node_id":"C_kwDOF83__NoAKGM0ZDM0MjkzODc5ODdjYmUwNzQwYjk3YzNiZDllM2MzMDUzNzc2ZDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"b690b9f5aeb55205b0df418da83842949248ec7a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b690b9f5aeb55205b0df418da83842949248ec7a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4d3429387987cbe0740b97c3bd9e3c3053776d2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4f1c4bcbe523e52af825a241984c35a846aba5f2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4f1c4bcbe523e52af825a241984c35a846aba5f2"}]},{"sha":"3d0781365fb37582e3aad27b77ba897069211812","node_id":"C_kwDOF83__NoAKDNkMDc4MTM2NWZiMzc1ODJlM2FhZDI3Yjc3YmE4OTcwNjkyMTE4MTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"9e95a4cab838c91298db8ed0df971d4b5843c636","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9e95a4cab838c91298db8ed0df971d4b5843c636"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3d0781365fb37582e3aad27b77ba897069211812","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d0781365fb37582e3aad27b77ba897069211812","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c4d3429387987cbe0740b97c3bd9e3c3053776d2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4d3429387987cbe0740b97c3bd9e3c3053776d2"}]},{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","node_id":"C_kwDOF83__NoAKDY5NWFkN2I0MzczMDRiYjZiMGM4MWQ3YTJjNzIzNGE4NTVmMGM2OTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"8670c2f3a9c099d66d518293f9f09e08ea3d0c96","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8670c2f3a9c099d66d518293f9f09e08ea3d0c96"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3d0781365fb37582e3aad27b77ba897069211812","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d0781365fb37582e3aad27b77ba897069211812"}]},{"sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","node_id":"C_kwDOF83__NoAKGZkOTliZDE0NmU4N2EwMGViOTBlY2NlZjEyZjQ4N2VjYzhmNGM0OTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"message":"Dummy commit","tree":{"sha":"54236e4e6361e96958234eabe1a7f1bbf7059991","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/54236e4e6361e96958234eabe1a7f1bbf7059991"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fd99bd146e87a00eb90eccef12f487ecc8f4c496","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"605ebf0d38083b84c1732d6cef6260cd77aa153701accfce8836625329e27afe"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4796'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '204'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9578:39550C:6CD1AB8:6D69518:661E59E4')] +{"state":"pending","statuses":[],"sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","total_count":0,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:45 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a3091b25b4ae4fcae28bf762e157048620f87224780b5daa40c7fefe7a87f4ec"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:45:13 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4795'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '205'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9588:121DD6:71F88C5:7290C0F:661E59E4')] +{"sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","node_id":"C_kwDOF83__NoAKGZkOTliZDE0NmU4N2EwMGViOTBlY2NlZjEyZjQ4N2VjYzhmNGM0OTY","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fd99bd146e87a00eb90eccef12f487ecc8f4c496","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"tree":{"sha":"54236e4e6361e96958234eabe1a7f1bbf7059991","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/54236e4e6361e96958234eabe1a7f1bbf7059991"},"message":"Dummy commit","parents":[{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/18/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:58:45 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Content-Length', '2'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', '"cc3cf89db95a6b340628b5378432e2c6087fa8f10025c5fb8c9ad4b480ed0967"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4794'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '206'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('X-GitHub-Request-Id', '9590:180869:6F2C4F8:6FC4260:661E59E5')] +[] + diff --git a/tests/ReplayData/TestProcessPr.test_new_pr.txt b/tests/ReplayData/TestProcessPr.test_new_pr.txt new file mode 100644 index 000000000000..735ef9a7e1a8 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_new_pr.txt @@ -0,0 +1,121 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:53 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"df54708351dec22173f372be6db921429625919ca98a0ad883d1875068cca702"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4969'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '31'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D666:298002:8151A:81F0A:66153E99')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-03-27T12:22:46Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-08T16:49:56Z","pushed_at":"2024-04-09T12:54:41Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369242,"stargazers_count":1042,"watchers_count":1042,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":893,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":893,"watchers":1042,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-08T16:49:56Z","pushed_at":"2024-04-09T12:54:41Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369242,"stargazers_count":1042,"watchers_count":1042,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":893,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":893,"watchers":1042,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4183,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:54 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"129b750b371fd1e90e6e8907c6d0a62edd8b2029b628eb4b57cdd36296cd610b"'), ('Last-Modified', 'Wed, 03 Apr 2024 14:02:35 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4968'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '32'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D676:3660D3:10472:10673:66153E99')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-03T14:02:35Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:54 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4968'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '32'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D67A:2775EC:114C9:116CF:66153E9A')] +{"resources":{"core":{"limit":5000,"used":32,"remaining":4968,"reset":1712670094},"search":{"limit":30,"used":0,"remaining":30,"reset":1712668374},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1712671914},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1712671914},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1712668374},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1712671914},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1712671914},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1712671914},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1712668374},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1712671914},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1712668374}},"rate":{"limit":5000,"used":32,"remaining":4968,"reset":1712670094}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:54 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"42a0006667dad893d46c325ae448fa080170ec3195c1eafdf63f12df00330a52"'), ('Last-Modified', 'Wed, 03 Apr 2024 14:02:35 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4967'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '33'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D688:3D7F4E:54077:546E9:66153E9A')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-03T14:02:35Z","closed_at":null,"merged_at":null,"merge_commit_sha":"ea15ca65dabbedf700fccacbb2214b100cbbed1b","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"2a9454e30606b17e52000110972998326ce9e428","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-03-27T12:22:46Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-03-27T12:22:46Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/milestones/4 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:55 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5f29bcca832d9cfc6ccda667d9f0cc0f1d4ad982511df035edbbd8d4575e0690"'), ('Last-Modified', 'Thu, 07 Mar 2024 13:14:59 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4966'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '34'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D692:5ABDA:81A69:8240A:66153E9A')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":1,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-03-07T13:14:59Z","due_on":null,"closed_at":null} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:55 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cfd617b58750578a473eff9ab698205e70b7dfd291e63a413f386feea90ed143"'), ('Last-Modified', 'Wed, 03 Apr 2024 14:02:35 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4965'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '35'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D69A:2CE08E:8B79E:8C1ED:66153E9B')] +[{"sha":"1963595dc5bad37400a61b64c43b5efbefa11b81","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2a9454e30606b17e52000110972998326ce9e428/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2a9454e30606b17e52000110972998326ce9e428/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=2a9454e30606b17e52000110972998326ce9e428","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:55 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a0f334741ffaae65f42315177e8231d4bf07b60d9e604f50003fff5caeb9d82a"'), ('Last-Modified', 'Wed, 03 Apr 2024 14:02:35 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4964'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '36'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D69C:2CE08E:8BAB2:8C4F1:66153E9B')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:55 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"3656007f6555f4c0f8dd87bd65ab66fe9783dd6535db4e3f1495052fe1835c94"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4963'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '37'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D6AA:3D7F4E:54D39:553B0:66153E9B')] +{"state":"pending","statuses":[],"sha":"2a9454e30606b17e52000110972998326ce9e428","total_count":0,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:56 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"529a59f29b4da9107663bdf591351dff515981a5e1f513aa7fe81690329c28f0"'), ('Last-Modified', 'Wed, 27 Mar 2024 12:21:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4962'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '38'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D6BA:2775EC:123BA:125BF:66153E9B')] +{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"message":"[do-not-merge] Just for generating bot tests","parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:56 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Content-Length', '2'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', '"cc3cf89db95a6b340628b5378432e2c6087fa8f10025c5fb8c9ad4b480ed0967"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4961'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '39'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('X-GitHub-Request-Id', 'D6C4:1647C3:57002:57694:66153E9C')] +[] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 09 Apr 2024 13:11:56 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6851e3780926babc927db47354cc35297db648a5f516e81fa8a90c36e10af46b"'), ('Last-Modified', 'Wed, 27 Mar 2024 12:21:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4960'), ('X-RateLimit-Reset', '1712670094'), ('X-RateLimit-Used', '40'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D6CA:2CE08E:8C539:8CFAA:66153E9C')] +{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"stats":{"total":2,"additions":2,"deletions":0},"files":[{"sha":"1963595dc5bad37400a61b64c43b5efbefa11b81","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2a9454e30606b17e52000110972998326ce9e428/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2a9454e30606b17e52000110972998326ce9e428/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=2a9454e30606b17e52000110972998326ce9e428","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}]} + diff --git a/tests/ReplayData/TestProcessPr.test_partial_reset.txt b/tests/ReplayData/TestProcessPr.test_partial_reset.txt new file mode 100644 index 000000000000..5d0b53af1e8a --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_partial_reset.txt @@ -0,0 +1,110 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:27 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"09e484d04172f62543db5146019cbc7d41bbe55622b8fe0e7babcff7211a6794"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4990'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '10'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BE86:15E832:813447E:81DA526:6617B0FB')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T09:05:01Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T09:06:15Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T09:06:15Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4183,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:27 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2e83fd1088a1e76e47ed81883849fbbdca3c7663949018500d6dfc36236a5f48"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:05:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4989'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '11'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BE94:80A9F:8652AEB:86F8B8B:6617B0FB')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6005201389,"node_id":"LA_kwDOF83__M8AAAABZfAZ7Q","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/fully-signed","name":"fully-signed","color":"2cbe4e","default":false,"description":""},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600486,"node_id":"LA_kwDOF83__M8AAAABbzNNpg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-approved","name":"core-approved","color":"2cbe4e","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":5,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T09:05:00Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:28 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4989'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '11'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BEA2:33F08E:86FEDD4:87A4E61:6617B0FB')] +{"resources":{"core":{"limit":5000,"used":11,"remaining":4989,"reset":1712832191},"search":{"limit":30,"used":0,"remaining":30,"reset":1712828728},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1712832268},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1712832268},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1712828728},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1712832268},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1712832268},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1712832268},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1712828728},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1712832268},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1712828728}},"rate":{"limit":5000,"used":11,"remaining":4989,"reset":1712832191}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:28 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"f6e769e57a979de87f91dbf68518fdffdf1e3f88646f3d9ac69d0adee7d65775"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:05:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4988'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '12'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BEAC:2DEB7E:89589BA:89FE2DE:6617B0FC')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T09:05:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":"b8e7943b51bdb12001142efc6466d905a4602465","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6005201389,"node_id":"LA_kwDOF83__M8AAAABZfAZ7Q","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/fully-signed","name":"fully-signed","color":"2cbe4e","default":false,"description":""},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600486,"node_id":"LA_kwDOF83__M8AAAABbzNNpg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-approved","name":"core-approved","color":"2cbe4e","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T09:05:01Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T09:05:01Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":5,"review_comments":0,"maintainer_can_modify":false,"commits":2,"additions":3,"deletions":0,"changed_files":2} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:28 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"95a90774ffbe96ce9d6456f8f047d64176d5a47371838a9722f7f0ab87f104d1"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:05:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4987'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '13'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BEB4:179E5:873B28A:87E0B4A:6617B0FC')] +[{"sha":"c4ff11ccdd5aa24f09848b349c9e9dfc03cfdab6","filename":"DQMServices/Components/test/dqmiofilecopy.sh","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh?ref=e4d069b76c464274bf6e7d7cf9bac2153ed9a903","patch":"@@ -1,4 +1,5 @@\n #!/bin/bash\n+# test comment\n # like '/SingleElectron/Run2017D-09Aug2019_UL2017-v1/DQMIO'\n DATASET=$1\n # like 302663"},{"sha":"1963595dc5bad37400a61b64c43b5efbefa11b81","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=e4d069b76c464274bf6e7d7cf9bac2153ed9a903","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:29 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a466b1e566e16ebce1303064fd4e1ca922226499c8715e9848900dd955e4c1f7"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:05:00 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4986'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '14'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BEB8:100D26:868C63A:8731B5B:6617B0FC')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:29 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"585db9012c440ba3503ed656e565d88a9a9e04a560dfe0a1c0c1a91e4864e402"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4985'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '15'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BEC0:38FEFF:86C05CE:87666DB:6617B0FD')] +{"state":"pending","statuses":[],"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","total_count":0,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:29 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"0db2fd6458dd92454bf781e4ed1ccb7350d1822ac3fe45406b2730eee92f1785"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:04:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4984'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '16'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BED0:2943B3:8957777:89FCFDF:6617B0FD')] +{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"message":"test commit for dqm category","parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:29 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d9626df2df66017d4d304ac9a38e85c44b4910310dbc1e6d8af49477ec1adea6"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4983'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '17'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BED8:28A859:84218C0:84C7931:6617B0FD')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-11T09:03:20Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:44:29 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"35141fb5d0735cd51fe2a81b0f49dd806cc32881abb55935d6d3f99512833a59"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:04:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4982'), ('X-RateLimit-Reset', '1712832191'), ('X-RateLimit-Used', '18'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'BEE2:3D52BC:CEE9433:CFD3FBD:6617B0FD')] +{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"c4ff11ccdd5aa24f09848b349c9e9dfc03cfdab6","filename":"DQMServices/Components/test/dqmiofilecopy.sh","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh?ref=e4d069b76c464274bf6e7d7cf9bac2153ed9a903","patch":"@@ -1,4 +1,5 @@\n #!/bin/bash\n+# test comment\n # like '/SingleElectron/Run2017D-09Aug2019_UL2017-v1/DQMIO'\n DATASET=$1\n # like 302663"}]} + diff --git a/tests/ReplayData/TestProcessPr.test_reopen.txt b/tests/ReplayData/TestProcessPr.test_reopen.txt new file mode 100644 index 000000000000..9a201cfbdac1 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_reopen.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:02:36 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ca6a06ea9772149dbd831dc2fec73e170094d661cf0cf776664026e0f258cb82"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4921'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '79'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CD70:226B00:361F5BB8:365F90EF:661D337C')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":2,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:02:37 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"145d4e3c2a067bf410946ca77d83268e4c57039dc70644c33c6eadcfd29dc5bc"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:01:29 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4920'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '80'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CD78:21114:15A86AEA:15C3A2EB:661D337D')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":1,"closed_issues":4,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:00:30Z","due_on":null,"closed_at":null},"comments":20,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T14:01:29Z","closed_at":"2024-04-15T14:00:30Z","author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:02:37 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4920'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '80'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CD80:21114:15A86E81:15C3A698:661D337D')] +{"resources":{"core":{"limit":5000,"used":80,"remaining":4920,"reset":1713193106},"search":{"limit":30,"used":0,"remaining":30,"reset":1713189817},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713193357},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713193357},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713189817},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713193357},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713193357},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713193357},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713189817},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713193357},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713189817}},"rate":{"limit":5000,"used":80,"remaining":4920,"reset":1713193106}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:02:37 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"0c7573f870981d0e7d518eab3cbff3e5181e608318a1c79eab258eed068c4de1"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:01:29 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4919'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '81'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CD82:2934F8:16A5996F:16C0A9BD:661D337D')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"closed","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T14:01:29Z","closed_at":"2024-04-15T14:00:30Z","merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":1,"closed_issues":4,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:00:30Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":2,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":false,"mergeable_state":"unstable","merged_by":null,"comments":20,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:02:37 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:01:29 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4918'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '82'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CD8C:122DEA:16175409:16328A78:661D337D')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:02:38 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:01:29 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4917'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '83'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CD9A:226B00:361F6F86:365FA4AA:661D337E')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:02:38 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5643d1bd4343575fd9b8dd034a360277bafffad32a0764c3d82fbbf2b4394ddb"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4916'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '84'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CDA8:1065FA:16F2D97E:170E0CB9:661D337E')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28593241550,"node_id":"SC_kwDOF83__M8AAAAGqEo9zg","state":"success","description":"2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","context":"bot/17/test_parameters","created_at":"2024-04-15T13:12:09Z","updated_at":"2024-04-15T13:12:09Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594424899,"node_id":"SC_kwDOF83__M8AAAAGqFxMQw","state":"pending","description":"Aborted, waiting for authorized user to issue the test command.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","context":"bot/17/jenkins","created_at":"2024-04-15T13:58:55Z","updated_at":"2024-04-15T13:58:55Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594466810,"node_id":"SC_kwDOF83__M8AAAAGqFzv-g","state":"success","description":"Comment by iarspider at 2024-04-15 14:00:05 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056934192","context":"bot/17/ack","created_at":"2024-04-15T14:00:31Z","updated_at":"2024-04-15T14:00:31Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":17,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:02:38 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4915'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '85'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CDB6:289E16:3D2AF954:3D72423C:661D337E')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:02:39 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9708d9322b593c1273f12d5339a9f6c33da73603dc80010e356102271b6e9188"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4914'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '86'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CDBA:29E823:987B093:99391C3:661D337E')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T14:00:31Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056903278,"node_id":"IC_kwDOF83__M56mdpu","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:46:04Z","updated_at":"2024-04-15T13:46:04Z","author_association":"MEMBER","body":"please test for CMSSW_14_1_CPP20_X","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056930228,"node_id":"IC_kwDOF83__M56mkO0","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:58:14Z","updated_at":"2024-04-15T13:58:14Z","author_association":"MEMBER","body":"please abort","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056934192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056934192,"node_id":"IC_kwDOF83__M56mlMw","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:05Z","updated_at":"2024-04-15T14:00:05Z","author_association":"MEMBER","body":"please close","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056935714","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056935714,"node_id":"IC_kwDOF83__M56mlki","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:44Z","updated_at":"2024-04-15T14:01:29Z","author_association":"MEMBER","body":"please reopen","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_reset_signature.txt b/tests/ReplayData/TestProcessPr.test_reset_signature.txt new file mode 100644 index 000000000000..f59b83fccd6a --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_reset_signature.txt @@ -0,0 +1,110 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:20 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7df86a746acde099688139d6147740a7fe8a48535385a21ba2c375b9154a55fa"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4989'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '11'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8C3E:2943B3:9BC50D4:9C7BEEA:6617CBAC')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:37:25Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207737,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T10:25:39Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T10:25:39Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4183,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:20 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"542d807d8ff19a493716d97811af7a2d581a628d409cd71203a56b9d72941c11"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:37:24 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4988'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '12'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A896:33F08E:9910B6E:99C8576:6617CBAC')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600486,"node_id":"LA_kwDOF83__M8AAAABbzNNpg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-approved","name":"core-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":5,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T11:37:24Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4988'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '12'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A89A:226B00:416F084:41BECD3:6617CBAC')] +{"resources":{"core":{"limit":5000,"used":12,"remaining":4988,"reset":1712837949},"search":{"limit":30,"used":0,"remaining":30,"reset":1712835561},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1712839101},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1712839101},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1712835561},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1712839101},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1712839101},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1712839101},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1712835561},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1712839101},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1712835561}},"rate":{"limit":5000,"used":12,"remaining":4988,"reset":1712837949}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e30cfa54f80003845064cf95fa6bb45cf07ad36bbab72a6d9c1ddfd3b31c9e68"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:37:24 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4987'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '13'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A8A0:2AC267:A2C064B:A37E1B3:6617CBAD')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T11:37:24Z","closed_at":null,"merged_at":null,"merge_commit_sha":"7955fbb2ff74b38a6060c3b355718f2170b808e2","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600486,"node_id":"LA_kwDOF83__M8AAAABbzNNpg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-approved","name":"core-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/79752f053efecad55dde17732259737e621a1f3f","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"79752f053efecad55dde17732259737e621a1f3f","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:37:25Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207737,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:37:25Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207737,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/79752f053efecad55dde17732259737e621a1f3f"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":5,"review_comments":0,"maintainer_can_modify":false,"commits":3,"additions":3,"deletions":0,"changed_files":2} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:21 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"22d8a78051f59b65398a6c94608fb9dbc460c4e5fe04ce5e5353c19c187137fb"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:37:24 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4986'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '14'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A8A2:2E61E0:E591013:E68CF51:6617CBAD')] +[{"sha":"c4ff11ccdd5aa24f09848b349c9e9dfc03cfdab6","filename":"DQMServices/Components/test/dqmiofilecopy.sh","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/79752f053efecad55dde17732259737e621a1f3f/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/79752f053efecad55dde17732259737e621a1f3f/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh?ref=79752f053efecad55dde17732259737e621a1f3f","patch":"@@ -1,4 +1,5 @@\n #!/bin/bash\n+# test comment\n # like '/SingleElectron/Run2017D-09Aug2019_UL2017-v1/DQMIO'\n DATASET=$1\n # like 302663"},{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/79752f053efecad55dde17732259737e621a1f3f/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/79752f053efecad55dde17732259737e621a1f3f/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=79752f053efecad55dde17732259737e621a1f3f","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"845bcfca6f5ee909eb910efd1aabfa572459dd0488eef44ecaa176a84a0b15c6"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:37:24 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4985'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '15'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A8A8:33F08E:99118F4:99C930D:6617CBAD')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ba94866aaf47cde57c98524414e0eeefba417ca23ef0a3a3755d94fee1f56513"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4984'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '16'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A8B8:16A68A:923D4AF:92F4F56:6617CBAE')] +{"state":"pending","statuses":[],"sha":"79752f053efecad55dde17732259737e621a1f3f","total_count":0,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6cf2eb8228940de3c0d9b8a1db1af281fac6630adc2feed6aa8113d384b6cc94"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:37:19 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4983'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '17'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A8BC:16A68A:923D6B5:92F514E:6617CBAE')] +{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"message":"Test: reset core","parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1936a9d43307fe89b02e2d462763614e2a2257e04f009c6263f1c368b00befdf"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4982'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '18'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A8C6:3751D8:9DEA604:9EA201A:6617CBAE')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-11T09:45:17Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:38:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"731ae1208205e110d0d76360b602858116c5e6967ee85d629de4edf9281f4048"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:37:19 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4981'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '19'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'A8D2:F292B:98A5C6D:995D8F9:6617CBAE')] +{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}],"stats":{"total":2,"additions":1,"deletions":1},"files":[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":1,"deletions":1,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/79752f053efecad55dde17732259737e621a1f3f/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/79752f053efecad55dde17732259737e621a1f3f/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=79752f053efecad55dde17732259737e621a1f3f","patch":"@@ -5,7 +5,7 @@\n \n \n \n-\n+\n \n \n "}]} + diff --git a/tests/ReplayData/TestProcessPr.test_revert.txt b/tests/ReplayData/TestProcessPr.test_revert.txt new file mode 100644 index 000000000000..4ab7ec0bc3cd --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_revert.txt @@ -0,0 +1,110 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:10 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e0cf2d9ef7b9eb55f18408af4449610ade0a6034c162c163d166488327d63274"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4959'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '41'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9000:3751D8:A0DD3BB:A19774F:6617CF9E')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207737,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T10:25:39Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T10:25:39Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4183,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d764d7c1cc60ca8113c710cc3b19b2652a3c5e0a1afab025fdc8402964eb0513"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:15 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4958'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '42'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9008:16A68A:94E93E7:95A3809:6617CF9E')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":5,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T11:54:15Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4958'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '42'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9018:289E16:AB85F7D:AC48E20:6617CF9F')] +{"resources":{"core":{"limit":5000,"used":42,"remaining":4958,"reset":1712837949},"search":{"limit":30,"used":0,"remaining":30,"reset":1712836571},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1712840111},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1712840111},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1712836571},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1712840111},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1712840111},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1712840111},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1712836571},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1712840111},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1712836571}},"rate":{"limit":5000,"used":42,"remaining":4958,"reset":1712837949}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7939387274e5cfb643977d9af3169633896f24c3f2e3085d1f8889a444e8d86c"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:15 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4957'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '43'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '901C:15E832:9507548:95C1951:6617CF9F')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T11:54:15Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207737,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207737,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":5,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:15 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4956'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '44'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '902C:3751D8:A0DE0E4:A198488:6617CF9F')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:15 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4955'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '45'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9036:251357:E6F5BDD:E7F47B3:6617CFA0')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"616dbfd22b463cd039719c72f4dc444f84c8f9485bf6552da3057b048645775e"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4954'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '46'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9040:2E61E0:E861832:E960066:6617CFA0')] +{"state":"pending","statuses":[],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":0,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4953'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '47'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9042:20C510:9D865AD:9E40989:6617CFA0')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"784512dad8b3932ec43781b2996105d995dc4cd37b2e30611a93fb7a13007fd5"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4952'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '48'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '904A:80A9F:9B527FC:9C0CBFF:6617CFA0')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-11T11:38:29Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:55:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ef4aa774706094af26c920edc871729bbd1a707a0f54d4164300df396026efe9"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4951'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '49'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9050:226B00:4447E00:449A374:6617CFA0')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"stats":{"total":1,"additions":0,"deletions":1},"files":[{"sha":"774c769077854da8431f4890965d2000b8c0ec3a","filename":"DQMServices/Components/test/dqmiofilecopy.sh","status":"modified","additions":0,"deletions":1,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/DQMServices%2FComponents%2Ftest%2Fdqmiofilecopy.sh?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -1,5 +1,4 @@\n #!/bin/bash\n-# test comment\n # like '/SingleElectron/Run2017D-09Aug2019_UL2017-v1/DQMIO'\n DATASET=$1\n # like 302663"}]} + diff --git a/tests/ReplayData/TestProcessPr.test_run_test_params.txt b/tests/ReplayData/TestProcessPr.test_run_test_params.txt new file mode 100644 index 000000000000..3735990c0f41 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_run_test_params.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:47:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5f8064ebaf701adbdb654b2eecdd65d4898049f3ad24f824dff657bad77e1ee1"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4865'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '135'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFB0:21114:1579B000:1594C067:661D2FDF')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:47:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"8622f4599e457221f6d7db1cbdc39c9592b5a4bc2b63b9bfe1a5c8407313236e"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:46:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4864'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '136'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFB8:279377:15EB32ED:16061794:661D2FDF')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":17,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T13:46:06Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:47:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4864'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '136'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFBA:282288:15FCCA77:1617B411:661D2FE0')] +{"resources":{"core":{"limit":5000,"used":136,"remaining":4864,"reset":1713189498},"search":{"limit":30,"used":0,"remaining":30,"reset":1713188892},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713192432},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713192432},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713188892},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713192432},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713192432},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713192432},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713188892},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713192432},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713188892}},"rate":{"limit":5000,"used":136,"remaining":4864,"reset":1713189498}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:47:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"be19ce723528075d0bcaf8fcff87b8f101247a8e065e5ba828917d928f4b8e13"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:46:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4863'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '137'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFBE:1065FA:16C140C9:16DC4C70:661D2FE0')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T13:46:06Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":17,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:47:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:46:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4862'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '138'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFCC:2AC267:3CA27E41:3CE9D7F2:661D2FE0')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:47:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:46:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4861'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '139'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFDC:2AF02B:34CB639:34FDA72:661D2FE1')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:47:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"8c43ded08a586d74636120385ef87e97a67f8f9c4c4df4fe398f1565a5930651"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4860'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '140'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFE2:2943B3:3BE37467:3C29FE81:661D2FE1')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592326842,"node_id":"SC_kwDOF83__M8AAAAGqDxIug","state":"success","description":"Tests requested by iarspider at 2024-04-15 12:28:44 UTC.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","context":"bot/17/jenkins","created_at":"2024-04-15T12:29:57Z","updated_at":"2024-04-15T12:29:57Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28593241550,"node_id":"SC_kwDOF83__M8AAAAGqEo9zg","state":"success","description":"2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","context":"bot/17/test_parameters","created_at":"2024-04-15T13:12:09Z","updated_at":"2024-04-15T13:12:09Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28593242008,"node_id":"SC_kwDOF83__M8AAAAGqEo_mA","state":"success","description":"Comment by iarspider at 2024-04-15 13:11:06 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","context":"bot/17/ack","created_at":"2024-04-15T13:12:11Z","updated_at":"2024-04-15T13:12:11Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":17,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:47:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4859'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '141'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFF0:2C0410:12564CC9:126DF38D:661D2FE1')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:47:14 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5f0960946a65a3634dee724474cc48b3b94166f369f8b8dac4ff95e1492bee82"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4858'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '142'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'AFFC:29E823:957FD2E:963B6CA:661D2FE2')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T13:12:10Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056903278,"node_id":"IC_kwDOF83__M56mdpu","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:46:04Z","updated_at":"2024-04-15T13:46:04Z","author_association":"MEMBER","body":"please test for CMSSW_14_1_CPP20_X","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_sign_core.txt b/tests/ReplayData/TestProcessPr.test_sign_core.txt new file mode 100644 index 000000000000..6bf3c8ec0c13 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_sign_core.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:03:10 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a5bec9361c09c935d07f5f65c9170b2b1d93ecf60a97ed5615eb828fad481b12"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4990'), ('X-RateLimit-Reset', '1712827525'), ('X-RateLimit-Used', '10'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'EBD8:2AC267:89D9FAD:8A7FBC7:6617A74E')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-03-27T12:22:46Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T08:43:12Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T08:43:12Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4183,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:03:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"27ad893179f5675d25dd861e4b599c63b3c10f962a6838df825162753341a7b4"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:00:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4989'), ('X-RateLimit-Reset', '1712827525'), ('X-RateLimit-Used', '11'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'EBDE:2AC267:89DA34D:8A7FF61:6617A74E')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":4,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T09:00:55Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:03:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4989'), ('X-RateLimit-Reset', '1712827525'), ('X-RateLimit-Used', '11'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'EBEA:28A859:7DE913E:7E88BAF:6617A74F')] +{"resources":{"core":{"limit":5000,"used":11,"remaining":4989,"reset":1712827525},"search":{"limit":30,"used":0,"remaining":30,"reset":1712826251},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1712829791},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1712829791},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1712826251},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1712829791},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1712829791},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1712829791},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1712826251},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1712829791},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1712826251}},"rate":{"limit":5000,"used":11,"remaining":4989,"reset":1712827525}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:03:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"84897cede7769a6cd261a9015841a6ef06f9046797fa91566d1d0d4f46ec60b6"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:00:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4988'), ('X-RateLimit-Reset', '1712827525'), ('X-RateLimit-Used', '12'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'EBFA:38FEFF:807BA98:811B5DE:6617A74F')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T09:00:55Z","closed_at":null,"merged_at":null,"merge_commit_sha":"ea15ca65dabbedf700fccacbb2214b100cbbed1b","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"2a9454e30606b17e52000110972998326ce9e428","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-03-27T12:22:46Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-03-27T12:22:46Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207739,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":4,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:03:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cfd617b58750578a473eff9ab698205e70b7dfd291e63a413f386feea90ed143"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:00:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4987'), ('X-RateLimit-Reset', '1712827525'), ('X-RateLimit-Used', '13'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'EC0A:2943B3:82F9564:8398986:6617A74F')] +[{"sha":"1963595dc5bad37400a61b64c43b5efbefa11b81","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/2a9454e30606b17e52000110972998326ce9e428/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/2a9454e30606b17e52000110972998326ce9e428/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=2a9454e30606b17e52000110972998326ce9e428","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:03:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a0f334741ffaae65f42315177e8231d4bf07b60d9e604f50003fff5caeb9d82a"'), ('Last-Modified', 'Thu, 11 Apr 2024 09:00:55 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4986'), ('X-RateLimit-Reset', '1712827525'), ('X-RateLimit-Used', '14'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'EC18:2E61E0:CD56DDB:CE3B2CC:6617A750')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:03:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7d4685375a99ec937d0fd7069b78237f8a1d59e13ef544807bed8853fd2dc3a3"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4985'), ('X-RateLimit-Reset', '1712827525'), ('X-RateLimit-Used', '15'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'EC1C:251357:CBC78A7:CCAC0AD:6617A750')] +{"state":"pending","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28493557462,"node_id":"SC_kwDOF83__M8AAAAGolku1g","state":"pending","description":"Waiting for authorized user to issue the test command.","target_url":null,"context":"bot/17/jenkins","created_at":"2024-04-09T13:39:28Z","updated_at":"2024-04-09T13:39:28Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28493557925,"node_id":"SC_kwDOF83__M8AAAAGolkwpQ","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","context":"cms/17/code-checks","created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/2a9454e30606b17e52000110972998326ce9e428","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28493558207,"node_id":"SC_kwDOF83__M8AAAAGolkxvw","state":"success","description":"Comment by iarspider at 2024-04-09 13:25:57 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","context":"bot/17/ack","created_at":"2024-04-09T13:39:30Z","updated_at":"2024-04-09T13:39:30Z"}],"sha":"2a9454e30606b17e52000110972998326ce9e428","total_count":3,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:03:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"529a59f29b4da9107663bdf591351dff515981a5e1f513aa7fe81690329c28f0"'), ('Last-Modified', 'Wed, 27 Mar 2024 12:21:07 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4984'), ('X-RateLimit-Reset', '1712827525'), ('X-RateLimit-Used', '16'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'EC20:2943B3:82F9F4F:839935B:6617A750')] +{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"message":"[do-not-merge] Just for generating bot tests","parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 09:03:13 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"3505ad143da00db1f084286ba06bfb9455e16299e0201b3663d83ac4b554b40a"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4983'), ('X-RateLimit-Reset', '1712827525'), ('X-RateLimit-Used', '17'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'EC2A:41493:80CAEC2:816A957:6617A750')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-09T13:18:56Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_sign_reject.txt b/tests/ReplayData/TestProcessPr.test_sign_reject.txt new file mode 100644 index 000000000000..83b1917effbe --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_sign_reject.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:27:48 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c7713199c97b7028f24f02438e4019f4843218e969132e71ea78a9b5c8db065b"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4920'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '80'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9EA2:1294DB:82E0E6C:838CFCE:661E52A4')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:25:54Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:17:40Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T10:17:40Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373448,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":897,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":897,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:27:48 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"260fb0cf98886cc9ea10fafffaeaf16d9d5eb059263d13dbf5f77b31a53105fe"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:27:26 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4919'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '81'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9EA6:117B54:68135F4:68A6A4D:661E52A4')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null},{"id":6664469918,"node_id":"LA_kwDOF83__M8AAAABjTu9ng","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/root","name":"root","color":"ededed","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"comments":23,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-16T10:27:26Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:27:49 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4919'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '81'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9EB6:769E0:699D40A:6A2FEB7:661E52A5')] +{"resources":{"core":{"limit":5000,"used":81,"remaining":4919,"reset":1713266570},"search":{"limit":30,"used":0,"remaining":30,"reset":1713263329},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713266869},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713266869},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713263329},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713266869},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713266869},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713266869},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713263329},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713266869},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713263329}},"rate":{"limit":5000,"used":81,"remaining":4919,"reset":1713266570}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:27:49 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9f8fc92cd801733e963c847bfa23eb805ac91dbcfdfe3f0e114e4bdd5e61bb27"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:27:26 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4918'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '82'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9EB8:2B2A64:6840EEB:68D3E17:661E52A5')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-16T10:27:26Z","closed_at":null,"merged_at":null,"merge_commit_sha":"5332ef066195a6e79787b5793aa71e84e13d81af","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null},{"id":6664469918,"node_id":"LA_kwDOF83__M8AAAABjTu9ng","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/root","name":"root","color":"ededed","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/1d7419a436293c0337ca346fe868cb50cfdedc18","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:25:54Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T10:25:54Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/1d7419a436293c0337ca346fe868cb50cfdedc18"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":23,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":3,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:27:49 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"14cd246b508d03af3d7f1b05edf8b7ca5f07bd6d68f0949f25456a378b0da5ed"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:27:26 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4917'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '83'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9EC4:2B2A64:684128B:68D41C7:661E52A5')] +[{"sha":"08cedc77a303a689fbda9b90b2636950237425b2","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":3,"deletions":0,"changes":3,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/1d7419a436293c0337ca346fe868cb50cfdedc18/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/1d7419a436293c0337ca346fe868cb50cfdedc18/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=1d7419a436293c0337ca346fe868cb50cfdedc18","patch":"@@ -4,6 +4,9 @@\n \n \n \n+\n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:27:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e75bc6b24540b9697d1b235942602da1ee084a952ef477e18ede4a6634c5df8d"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:27:26 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4916'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '84'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9ED0:127A77:6C02D7D:6C9612F:661E52A5')] +[{"sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","node_id":"C_kwDOF83__NoAKDFkNzQxOWE0MzYyOTNjMDMzN2NhMzQ2ZmU4NjhjYjUwY2ZkZWRjMTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:25:47Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"59ca8d083da13dcfe54b584fd1f0690872d5f788","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/59ca8d083da13dcfe54b584fd1f0690872d5f788"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1d7419a436293c0337ca346fe868cb50cfdedc18","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:27:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c84e22511968484d1e6828c1f1e1c341cc95f8c32dab4f479f93690b8f86eec7"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4915'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '85'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9ED8:242361:6B711B3:6C05728:661E52A6')] +{"state":"pending","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/1d7419a436293c0337ca346fe868cb50cfdedc18","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28614751323,"node_id":"SC_kwDOF83__M8AAAAGqZJ0Ww","state":"pending","description":"code-checks requested","target_url":null,"context":"cms/17/code-checks","created_at":"2024-04-16T10:26:35Z","updated_at":"2024-04-16T10:26:35Z"}],"sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","total_count":1,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1d7419a436293c0337ca346fe868cb50cfdedc18/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/1d7419a436293c0337ca346fe868cb50cfdedc18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:27:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d7abf0ecff4b1322a60be6175cfa8cbdfec91d3aad04f73a12bf63ee0d132d22"'), ('Last-Modified', 'Tue, 16 Apr 2024 10:25:47 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4914'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '86'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9EDE:3A2467:8375BB5:8421D2B:661E52A6')] +{"sha":"1d7419a436293c0337ca346fe868cb50cfdedc18","node_id":"C_kwDOF83__NoAKDFkNzQxOWE0MzYyOTNjMDMzN2NhMzQ2ZmU4NjhjYjUwY2ZkZWRjMTg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1d7419a436293c0337ca346fe868cb50cfdedc18","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1d7419a436293c0337ca346fe868cb50cfdedc18","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:25:47Z"},"tree":{"sha":"59ca8d083da13dcfe54b584fd1f0690872d5f788","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/59ca8d083da13dcfe54b584fd1f0690872d5f788"},"message":"[do-not-merge] Just for generating bot tests","parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 10:27:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c474e149b3e981ccabe46aa0a6792ee0523031eb6ee6899ab074bfbcb1184330"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4913'), ('X-RateLimit-Reset', '1713266570'), ('X-RateLimit-Used', '87'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D2A2:1294DB:82E25C2:838E722:661E52A6')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-16T10:26:35Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056903278,"node_id":"IC_kwDOF83__M56mdpu","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:46:04Z","updated_at":"2024-04-15T13:46:04Z","author_association":"MEMBER","body":"please test for CMSSW_14_1_CPP20_X","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056930228,"node_id":"IC_kwDOF83__M56mkO0","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:58:14Z","updated_at":"2024-04-15T13:58:14Z","author_association":"MEMBER","body":"please abort","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056934192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056934192,"node_id":"IC_kwDOF83__M56mlMw","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:05Z","updated_at":"2024-04-15T14:00:05Z","author_association":"MEMBER","body":"please close","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056935714","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056935714,"node_id":"IC_kwDOF83__M56mlki","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:44Z","updated_at":"2024-04-15T14:01:29Z","author_association":"MEMBER","body":"please reopen","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056946596","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056946596,"node_id":"IC_kwDOF83__M56moOk","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:05:24Z","updated_at":"2024-04-15T14:05:24Z","author_association":"MEMBER","body":"type invalid","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596/reactions","total_count":1,"+1":0,"-1":1,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056966759","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056966759","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056966759,"node_id":"IC_kwDOF83__M56mtJn","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:14:24Z","updated_at":"2024-04-15T14:14:24Z","author_association":"MEMBER","body":"type root","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056966759/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058758464","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2058758464","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2058758464,"node_id":"IC_kwDOF83__M56tilA","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-16T10:27:25Z","updated_at":"2024-04-16T10:27:25Z","author_association":"MEMBER","body":"-core\r\nProposed test is invalid","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058758464/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_start_tests.txt b/tests/ReplayData/TestProcessPr.test_start_tests.txt new file mode 100644 index 000000000000..c1f7c752af06 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_start_tests.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:59:22 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e0cf2d9ef7b9eb55f18408af4449610ade0a6034c162c163d166488327d63274"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4930'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '70'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C246:226B00:44FB263:454E1D4:6617D09A')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207737,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T10:25:39Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T10:25:39Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4183,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":914,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4183,"open_issues":914,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4183,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:59:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a568735fedb1df6dd97082a0df60a35f5223b906351f23ec50881338bc72c0bf"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:58:24 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4929'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '71'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C250:33F08E:9C993DE:9D541EA:6617D09A')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":7,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T11:58:24Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:59:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4929'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '71'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C258:2E61E0:E918192:EA173EF:6617D09B')] +{"resources":{"core":{"limit":5000,"used":71,"remaining":4929,"reset":1712837949},"search":{"limit":30,"used":0,"remaining":30,"reset":1712836823},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1712840363},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1712840363},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1712836823},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1712840363},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1712840363},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1712840363},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1712836823},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1712840363},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1712836823}},"rate":{"limit":5000,"used":71,"remaining":4929,"reset":1712837949}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:59:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"63dcee65cda58ce92f79efc7d06901207412a475171e9dd18c6ae2c520329b1a"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:58:24 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4928'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '72'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C260:3D52BC:E435406:E5348A7:6617D09B')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T11:58:24Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207737,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207737,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":7,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:59:23 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:58:24 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4927'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '73'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C266:80A9F:9C09A7F:9CC48B1:6617D09B')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:59:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:58:24 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4926'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '74'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C270:251357:E7A91E2:E8A87B4:6617D09C')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:59:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c95695382b4388bcc29c327e2565145c620f403c56b886af66f02517c1bc0eb9"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4925'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '75'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C274:100D26:9BEEB20:9CA8956:6617D09C')] +{"state":"pending","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539413215,"node_id":"SC_kwDOF83__M8AAAAGpRTi3w","state":"pending","description":"code-checks requested","target_url":null,"context":"cms/17/code-checks","created_at":"2024-04-11T11:55:18Z","updated_at":"2024-04-11T11:55:18Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":1,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:59:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4924'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '76'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C282:289E16:AC43647:AD06F30:6617D09C')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 11:59:24 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"965c1627a1186d064b5252d41da5ecc49fe62cd5c5fb0ee066913f19423153ec"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4923'), ('X-RateLimit-Reset', '1712837949'), ('X-RateLimit-Used', '77'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'C28A:101CE1:97DBEBB:98970F2:6617D09C')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-11T11:55:18Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_test_params.txt b/tests/ReplayData/TestProcessPr.test_test_params.txt new file mode 100644 index 000000000000..0e45db71e9e9 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_test_params.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:12:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e1df18831e9e10cd96cad5a308e73a1fb869e91c72d2c166c92246777b46e453"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4895'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '105'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CB16:122DEA:157CA97A:15975DCD:661D27A2')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:12:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d89adc8031d9b4fcca746525a921cfdf561e460345fad140d59f72f8dd0a5f72"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:11:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4894'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '106'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CB18:289E16:3C8CCA43:3CD392C7:661D27A2')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":16,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T13:11:06Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:12:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4894'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '106'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CB1C:2F483F:14841FF5:149ED420:661D27A2')] +{"resources":{"core":{"limit":5000,"used":106,"remaining":4894,"reset":1713189498},"search":{"limit":30,"used":0,"remaining":30,"reset":1713186783},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713190323},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713190323},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713186783},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713190323},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713190323},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713190323},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713186783},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713190323},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713186783}},"rate":{"limit":5000,"used":106,"remaining":4894,"reset":1713189498}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:12:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7d6354c5b0946d8a9b260eb825ecdc185ef79fa9a7d489d7acc7e5aded070036"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:11:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4893'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '107'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CB20:2E61E0:3F3C40CB:3F86C527:661D27A3')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T13:11:06Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":16,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:12:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:11:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4892'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '108'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CB22:226B00:35836A9A:35C31F4C:661D27A3')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:12:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:11:06 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4891'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '109'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CB30:300E63:14C03763:14DAEA97:661D27A3')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:12:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"bc35be9d5a37fe9c096ba74651c5402faa80560faf4f18b0b71a9b99101620da"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4890'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '110'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CB36:1065FA:16529CDD:166D4E47:661D27A4')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592326842,"node_id":"SC_kwDOF83__M8AAAAGqDxIug","state":"success","description":"Tests requested by iarspider at 2024-04-15 12:28:44 UTC.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","context":"bot/17/jenkins","created_at":"2024-04-15T12:29:57Z","updated_at":"2024-04-15T12:29:57Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28593102232,"node_id":"SC_kwDOF83__M8AAAAGqEgdmA","state":"success","description":"Comment by iarspider at 2024-04-15 13:01:40 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","context":"bot/17/ack","created_at":"2024-04-15T13:06:13Z","updated_at":"2024-04-15T13:06:13Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":16,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:12:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4889'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '111'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CB38:122DEA:157CC3F3:15977839:661D27A4')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:12:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"24e562b714ceeb1b7ff21f14ee69c510f36688d0426f8180b218dacd22ba3d12"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4888'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '112'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CB3C:122DEA:157CC67B:15977AD8:661D27A4')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T13:06:12Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_tests_passed.txt b/tests/ReplayData/TestProcessPr.test_tests_passed.txt new file mode 100644 index 000000000000..e96de464ee29 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_tests_passed.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:29:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e1df18831e9e10cd96cad5a308e73a1fb869e91c72d2c166c92246777b46e453"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4965'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '35'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D87E:1B4F11:184821A:185FCBB:661D1DBD')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:29:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"003213bb95f9d662353420e59cf9e73707fef84f02c8288a04ec62c7e8fdfa60"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:28:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4964'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '36'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D888:21114:1497C7A4:14B21100:661D1DBE')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600089,"node_id":"LA_kwDOF83__M8AAAABbzNMGQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-rejected","name":"tests-rejected","color":"e11d21","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":9,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T12:28:45Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:29:50 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4964'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '36'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'D890:300E63:1448C04F:146306E4:661D1DBE')] +{"resources":{"core":{"limit":5000,"used":36,"remaining":4964,"reset":1713184962},"search":{"limit":30,"used":0,"remaining":30,"reset":1713184250},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713187790},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713187790},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713184250},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713187790},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713187790},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713187790},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713184250},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713187790},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713184250}},"rate":{"limit":5000,"used":36,"remaining":4964,"reset":1713184962}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:29:51 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ce4ab381d179c17ed3357776791cf54dafbcf9ffd87606d752ebc246593ae877"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:28:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4963'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '37'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CC60:2C0410:117503A4:118BE36B:661D1DBE')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T12:28:45Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600089,"node_id":"LA_kwDOF83__M8AAAABbzNMGQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-rejected","name":"tests-rejected","color":"e11d21","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":9,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:29:51 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:28:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4962'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '38'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CC6E:2E61E0:3EBDEF05:3F080823:661D1DBF')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:29:51 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:28:45 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4961'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '39'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CC74:1065FA:15D1EB21:15EC2FDD:661D1DBF')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:29:51 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"662651e5957362081b48248d9647dac8ca694787ca1f232feed4794aa1241f4b"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4960'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '40'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CC76:226B00:3504EB41:354434B4:661D1DBF')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539483930,"node_id":"SC_kwDOF83__M8AAAAGpRX3Gg","state":"success","description":"Tests requested by iarspider at 2024-04-11 11:58:24 UTC.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","context":"bot/17/jenkins","created_at":"2024-04-11T11:59:29Z","updated_at":"2024-04-11T11:59:29Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28543910712,"node_id":"SC_kwDOF83__M8AAAAGpVmDOA","state":"success","description":"Comment by iarspider at 2024-04-11 11:59:32 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","context":"bot/17/ack","created_at":"2024-04-11T15:03:20Z","updated_at":"2024-04-11T15:03:20Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":16,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:29:52 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4959'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '41'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CC7C:289E16:3C0D33D8:3C539138:661D1DBF')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:29:52 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"64e4300d71d973ad4b20ebbe75813ba7207cbad4335b8a05d59569e509c045f9"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4958'), ('X-RateLimit-Reset', '1713184962'), ('X-RateLimit-Used', '42'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'CC8A:1066E:13019F47:131A13D7:661D1DC0')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_tests_rejected.txt b/tests/ReplayData/TestProcessPr.test_tests_rejected.txt new file mode 100644 index 000000000000..3f2c244b6467 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_tests_rejected.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 15:03:10 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5adcf3cfeb0a5f61cc05be03e68298afcd43582c218f85c3a027580fa43d1438"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4915'), ('X-RateLimit-Reset', '1712849809'), ('X-RateLimit-Used', '85'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B1DA:101CE1:B65C480:B733C4B:6617FBAE')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T14:36:27Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4184,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":917,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4184,"open_issues":917,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-11T02:47:19Z","pushed_at":"2024-04-11T14:36:27Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1369319,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4184,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":917,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4184,"open_issues":917,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4184,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 15:03:10 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4cd9729ac1464ab00414de9c358d95d75add2d4f70947b6219342a8c44664126"'), ('Last-Modified', 'Thu, 11 Apr 2024 12:02:32 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4914'), ('X-RateLimit-Reset', '1712849809'), ('X-RateLimit-Used', '86'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'B1E4:101CE1:B65C879:B734026:6617FBAE')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598766,"node_id":"LA_kwDOF83__M8AAAABbzNG7g","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-started","name":"tests-started","color":"ff8000","default":false,"description":null},{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":8,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T12:02:32Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 15:03:10 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4914'), ('X-RateLimit-Reset', '1712849809'), ('X-RateLimit-Used', '86'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DDC4:289E16:CD2B1D8:CE0AAE3:6617FBAE')] +{"resources":{"core":{"limit":5000,"used":86,"remaining":4914,"reset":1712849809},"search":{"limit":30,"used":0,"remaining":30,"reset":1712847850},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1712851390},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1712851390},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1712847850},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1712851390},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1712851390},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1712851390},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1712847850},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1712851390},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1712847850}},"rate":{"limit":5000,"used":86,"remaining":4914,"reset":1712849809}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 15:03:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6d4a9527798d597e13756ab285f39a25658dd68c2e84bcf709d7dd8319d3091a"'), ('Last-Modified', 'Thu, 11 Apr 2024 12:02:32 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4913'), ('X-RateLimit-Reset', '1712849809'), ('X-RateLimit-Used', '87'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DDD2:15E832:B3F0801:B4C7C60:6617FBAE')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-11T12:02:32Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598766,"node_id":"LA_kwDOF83__M8AAAABbzNG7g","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-started","name":"tests-started","color":"ff8000","default":false,"description":null},{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":8,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 15:03:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Thu, 11 Apr 2024 12:02:32 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4912'), ('X-RateLimit-Reset', '1712849809'), ('X-RateLimit-Used', '88'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DDD4:3D52BC:1037A289:10495798:6617FBAF')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 15:03:11 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Thu, 11 Apr 2024 12:02:32 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4911'), ('X-RateLimit-Reset', '1712849809'), ('X-RateLimit-Used', '89'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DDE0:41493:BCF3411:BDCA684:6617FBAF')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 15:03:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a09617f83cd78949b81226ae9a48da79d5ee2adf42a361faedeb27a83c0aae17"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4910'), ('X-RateLimit-Reset', '1712849809'), ('X-RateLimit-Used', '90'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DDEE:2AC267:C6C13BA:C79E7CB:6617FBB0')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539483930,"node_id":"SC_kwDOF83__M8AAAAGpRX3Gg","state":"success","description":"Tests requested by iarspider at 2024-04-11 11:58:24 UTC.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","context":"bot/17/jenkins","created_at":"2024-04-11T11:59:29Z","updated_at":"2024-04-11T11:59:29Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484947,"node_id":"SC_kwDOF83__M8AAAAGpRX7Ew","state":"success","description":"Comment by iarspider at 2024-04-11 11:58:24 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","context":"bot/17/ack","created_at":"2024-04-11T11:59:33Z","updated_at":"2024-04-11T11:59:33Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28543896409,"node_id":"SC_kwDOF83__M8AAAAGpVlLWQ","state":"error","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-11T15:02:50Z","updated_at":"2024-04-11T15:02:50Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28543896543,"node_id":"SC_kwDOF83__M8AAAAGpVlL3w","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-11T15:02:50Z","updated_at":"2024-04-11T15:02:50Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28543896653,"node_id":"SC_kwDOF83__M8AAAAGpVlMTQ","state":"error","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-11T15:02:50Z","updated_at":"2024-04-11T15:02:50Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28543896781,"node_id":"SC_kwDOF83__M8AAAAGpVlMzQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-11T15:02:51Z","updated_at":"2024-04-11T15:02:51Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28543896933,"node_id":"SC_kwDOF83__M8AAAAGpVlNZQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-11T15:02:51Z","updated_at":"2024-04-11T15:02:51Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28543897071,"node_id":"SC_kwDOF83__M8AAAAGpVlN7w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-11T15:02:51Z","updated_at":"2024-04-11T15:02:51Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28543897229,"node_id":"SC_kwDOF83__M8AAAAGpVlOjQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-11T15:02:52Z","updated_at":"2024-04-11T15:02:52Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":16,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 15:03:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4909'), ('X-RateLimit-Reset', '1712849809'), ('X-RateLimit-Used', '91'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DDF0:3751D8:C2B051A:C3877DE:6617FBB0')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Thu, 11 Apr 2024 15:03:12 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"96b5b36ffee6ec687283dc5f852675ce952c314c84114ae747b0b8947d844c15"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4908'), ('X-RateLimit-Reset', '1712849809'), ('X-RateLimit-Used', '92'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', 'DE00:2E61E0:10934E19:10A5009A:6617FBB0')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_too_many_commits.txt b/tests/ReplayData/TestProcessPr.test_too_many_commits.txt new file mode 100644 index 000000000000..0d500b94aa79 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_too_many_commits.txt @@ -0,0 +1,132 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:31 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"314c3d67496ca458a543c112566ccbd43bb729f994255f1d9710a16734c2fd54"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4339'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '661'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8BDE:29BB20:84EC5B1:859A159:661E79F3')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T13:07:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207812,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T13:00:13Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1380162,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":894,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":894,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-16T13:00:13Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1380162,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":894,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":894,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:32 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b8d3f19f3de3e2a0a60d6de90cf660741499bdfa6f70c281f36d1e6b3e472591"'), ('Last-Modified', 'Tue, 16 Apr 2024 13:07:28 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4338'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '662'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8BEE:1294DB:A1158F4:A1DCA4C:661E79F3')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","id":2245729026,"node_id":"PR_kwDOF83__M5syVdt","number":18,"title":"Commit flood","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6005195488,"node_id":"LA_kwDOF83__M8AAAABZfAC4A","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/alca-pending","name":"alca-pending","color":"fbca04","default":false,"description":""},{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599807,"node_id":"LA_kwDOF83__M8AAAABbzNK_w","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/trk","name":"trk","color":"257fdb","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-16T10:59:01Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2024-04-16T10:47:28Z","updated_at":"2024-04-16T13:07:28Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:32 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4338'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '662'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8BFA:1F230F:8AF14C0:8BA08F6:661E79F4')] +{"resources":{"core":{"limit":5000,"used":662,"remaining":4338,"reset":1713273973},"search":{"limit":30,"used":0,"remaining":30,"reset":1713273392},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713276932},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713276932},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713273392},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713276932},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713276932},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713276932},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713273392},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713276932},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713273392}},"rate":{"limit":5000,"used":662,"remaining":4338,"reset":1713273973}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:33 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a403a3a9f6ada789ba4ba4dfa78edc53cb1d850a5f38ebe164f12825d79497e1"'), ('Last-Modified', 'Tue, 16 Apr 2024 13:07:28 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4337'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '663'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8C00:180869:88C3A51:8971422:661E79F4')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18","id":1825134445,"node_id":"PR_kwDOF83__M5syVdt","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/18.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","number":18,"state":"open","locked":false,"title":"Commit flood","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-04-16T10:47:28Z","updated_at":"2024-04-16T13:07:28Z","closed_at":null,"merged_at":null,"merge_commit_sha":"af4b29b51d06db0565f76af200dddbabe91e7580","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6005195488,"node_id":"LA_kwDOF83__M8AAAABZfAC4A","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/alca-pending","name":"alca-pending","color":"fbca04","default":false,"description":""},{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599807,"node_id":"LA_kwDOF83__M8AAAABbzNK_w","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/trk","name":"trk","color":"257fdb","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600115,"node_id":"LA_kwDOF83__M8AAAABbzNMMw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-pending","name":"code-checks-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-16T10:59:01Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/848c88ff0403fad82b647b13c2be704548a78df4","head":{"label":"iarspider-cmssw:commit-flood","ref":"commit-flood","sha":"848c88ff0403fad82b647b13c2be704548a78df4","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T13:07:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207812,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-16T13:07:28Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207812,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":4,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":4,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/18"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/18/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/848c88ff0403fad82b647b13c2be704548a78df4"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"clean","merged_by":null,"comments":3,"review_comments":0,"maintainer_can_modify":false,"commits":251,"additions":251,"deletions":0,"changed_files":151} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:33 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"178f3610721900546bb78d4813afdd0ee9e91897079a5292f432d815efd5cb97"'), ('Last-Modified', 'Tue, 16 Apr 2024 13:07:28 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="next", ; rel="last"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4336'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '664'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8C0C:39550C:85DDF58:868B652:661E79F5')] +[{"sha":"c4b9b1a69d7ed73102649c879ee704f97aa423c2","filename":"Alignment/APEEstimation/python/AlcaRecoSelection_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlcaRecoSelection_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -60,3 +60,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"a7d7841e3a0617e77c161acf69065182d08a427b","filename":"Alignment/APEEstimation/python/AlignmentTrackSelector_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FAlignmentTrackSelector_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -110,3 +110,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"f7ddc9d4a89b9ead4d7e856e4c829b987731fefa","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -24,3 +24,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"c410787332e156a3a952c364e35175c115f0f17b","filename":"Alignment/APEEstimation/python/ApeEstimatorSummary_cfi.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimatorSummary_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -47,3 +47,5 @@\n ApeOutputFile = cms.string(os.environ['CMSSW_BASE'] + '/src/Alignment/APEEstimation/hists/apeOutput.txt'),\n \n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"38f3567254c3698ec8c5c4627cebf4bb3ed08b0b","filename":"Alignment/APEEstimation/python/ApeEstimator_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -62,3 +62,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"e66f39e15f15f126be516d483cb96ba0bb3d2a07","filename":"Alignment/APEEstimation/python/ApeEstimator_cfi.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FApeEstimator_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -98,3 +98,5 @@\n #Define intervals in residual error for calculation of APE (one estimation per interval), (for APE calculation)\n residualErrorBinning = cms.vdouble(),\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"247a150b67f81dc7c3bc9b1fcbe34f236250f416","filename":"Alignment/APEEstimation/python/PrivateSkim_EventContent_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FPrivateSkim_EventContent_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -43,3 +43,5 @@\n \t#'drop *_MEtoEDMConverter_*_*',\n ),\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"8f6222cc533b17ff3324ec6be15cc98e5432b8ba","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_Phase0_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_Phase0_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -95,3 +95,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"0780ebd307b3a7947f0252ff4d818dbea18d87ea","filename":"Alignment/APEEstimation/python/SectorBuilder_Bpix_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Bpix_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -110,3 +110,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"dc1d522f14fa5bde297ec95368698a3279138248","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_Phase0_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_Phase0_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -124,3 +124,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"674fca520acd08826d49151c3dbd4b4f666c0604","filename":"Alignment/APEEstimation/python/SectorBuilder_Fpix_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Fpix_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -154,3 +154,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"710a9d134ea8f26e6037d8933ba6bc1dc2dbc028","filename":"Alignment/APEEstimation/python/SectorBuilder_Tec_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tec_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -421,3 +421,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"796f8117bd093a8b3e26153462124a1ebf33b9c9","filename":"Alignment/APEEstimation/python/SectorBuilder_Tib_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tib_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -212,3 +212,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"d27263e968a8a836a422bb2527f6d52ab7171631","filename":"Alignment/APEEstimation/python/SectorBuilder_Tid_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tid_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -253,3 +253,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"a6988c599be3703d09f22e026d1154c3cd7bf325","filename":"Alignment/APEEstimation/python/SectorBuilder_Tob_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_Tob_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -253,3 +253,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"e7154675fa862a13510882c0844cfd2aa9bd30a1","filename":"Alignment/APEEstimation/python/SectorBuilder_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -132,3 +132,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"f66e6225fad13488f3e70ce78ff5bd54b0ec45d4","filename":"Alignment/APEEstimation/python/SectorBuilder_cfi.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FSectorBuilder_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -32,3 +32,5 @@\n posY = cms.vdouble(), #(-120.,120.) must contain Intervals\n posZ = cms.vdouble() #(-280.,280.) must contain Intervals\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"004d749dab8ad661209161a01a367420b3dccd49","filename":"Alignment/APEEstimation/python/TrackRefitter_38T_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTrackRefitter_38T_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -42,3 +42,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"d2ff57fbf76083ac99904b820ac5e7cda17fd670","filename":"Alignment/APEEstimation/python/TriggerSelection_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2FTriggerSelection_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -26,3 +26,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"0093760a124ba8296c20bbfe6c6046e8dc4edef2","filename":"Alignment/APEEstimation/python/conditions/init.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fconditions%2Finit.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -1 +1,3 @@\n #Automatically created by SCRAM\n+# dummy dummy\n+# dummy dummy"},{"sha":"7046a60964a2697a3ece80d2b1607c79926d6b72","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMinBias_Run2018C_PromptReco_v3_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -31,3 +31,5 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"a567dda92047762c4034ddc85ace9f2b243198aa","filename":"Alignment/APEEstimation/python/samples/Data_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlMuonIsolated_Run2015B_PromptReco_v1_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -30,3 +30,5 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"3a0c9c814f2d25e5c374126f0a37a8f88c658bf3","filename":"Alignment/APEEstimation/python/samples/Data_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FData_TkAlZMuMu_Run2015B_DoubleMuon_PromptReco_v1_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -26,3 +26,5 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"59f37f1c67eafed90b72fd2977f278aad00cb2bf","filename":"Alignment/APEEstimation/python/samples/MC_UL16_ttbar_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UL16_ttbar_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -57,3 +57,5 @@\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0920227F-8FE9-C641-81B1-E4E33CBC50DE.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/0837296D-D6B4-4244-8BB8-4E01D53DA5EF.root',\n '/store/relval/CMSSW_11_0_0_pre10/RelValTTbar_13/GEN-SIM-RECO/PU25ns_110X_mcRun2_asymptotic_2016preVFP_v2_HS_rsb-v2/10000/060F5791-2313-2241-A6DE-729007C98C57.root'])\n+# dummy dummy\n+# dummy dummy"},{"sha":"8724bfea9ba949f66e935fa91eb39e80b5ec7565","filename":"Alignment/APEEstimation/python/samples/MC_UnitTest_TkAlMuonIsolated_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMC_UnitTest_TkAlMuonIsolated_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -18,3 +18,5 @@\n secFiles.extend( [\n ] )\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"fc3f43b17622375904168b0b45f39006794e80f5","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_ApeSkim_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -22,3 +22,5 @@\n ] )\n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"b3f86c8bf6f597286da6652921ab493b16c230bb","filename":"Alignment/APEEstimation/python/samples/Mc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Fpython%2Fsamples%2FMc_TkAlMuonIsolated_Phys14_74X_wlnu_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -63,3 +63,5 @@\n ] )\n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"2184a834a6977c3ca0329192cdca7f36a1e4d406","filename":"Alignment/APEEstimation/test/SkimProducer/skimProducer_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimProducer_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -205,3 +205,5 @@\n ## Outpath\n ##\n process.outpath = cms.EndPath(process.out)\n+# dummy dummy\n+# dummy dummy"},{"sha":"68ac5a32db613467347b4ed93678321ef9e51c0b","filename":"Alignment/APEEstimation/test/SkimProducer/skimTemplates.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FskimTemplates.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -88,3 +88,5 @@\n endif\n \"\"\"\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"18b6412a4b415d690039163dfbf4905d0843e4ff","filename":"Alignment/APEEstimation/test/SkimProducer/startSkim.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FSkimProducer%2FstartSkim.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -186,3 +186,5 @@ def main(argv):\n pass # The keyboard interrupt will be forwarded to the subprocesses anyway, stopping them without terminating them immediately\n if __name__ == \"__main__\":\n main(sys.argv)\n+# dummy dummy\n+# dummy dummy"},{"sha":"becb3a9b0f7ab32293c3fb5397ea4a0648f25b94","filename":"Alignment/APEEstimation/test/apeTreeCreateDefault_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FapeTreeCreateDefault_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -133,3 +133,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"5acea5070e2f4538e70f7543d9f6b92ed9c3f0a6","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitter.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitter.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -611,3 +611,5 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy\n+# dummy dummy"},{"sha":"4f85e0aede61bef041c5b0359643d52c4aaeeefa","filename":"Alignment/APEEstimation/test/autoSubmitter/autoSubmitterTemplates.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2FautoSubmitterTemplates.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -74,3 +74,5 @@ def applyConditions(process):\n )\n process.prefer_my{record}Conditions = cms.ESPrefer(\"PoolDBESSource\", \"my{record}Conditions\")\n \"\"\"\n+# dummy dummy\n+# dummy dummy"},{"sha":"abfbe3ff27ac3bfb824784a239adfcc4978c5896","filename":"Alignment/APEEstimation/test/autoSubmitter/helpers.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FautoSubmitter%2Fhelpers.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -199,3 +199,5 @@ def loadConditions(dictionary):\n goodConditions = False\n print(\"'{}' is not a valid record name.\".format(condition[\"record\"]))\n return conditions, goodConditions\n+# dummy dummy\n+# dummy dummy"},{"sha":"7b8dae4bfc639c9b3f48960f1ac64d5e1e104948","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimatorSummary_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimatorSummary_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -142,3 +142,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"03879f1d01145a94ee65115c4b5de22218d8adc4","filename":"Alignment/APEEstimation/test/cfgTemplate/apeEstimator_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeEstimator_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -267,3 +267,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"e790a8e9d2c52e06246fb05672ab53f7670d04a6","filename":"Alignment/APEEstimation/test/cfgTemplate/apeLocalSetting_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcfgTemplate%2FapeLocalSetting_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -112,3 +112,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"021903a82490feaad0ec7fed458a45832a8b193a","filename":"Alignment/APEEstimation/test/createTrackerAlignmentErrorExtendedRcd_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FcreateTrackerAlignmentErrorExtendedRcd_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -168,3 +168,5 @@\n )\n \n # We do not even need a path - producer is called anyway...\n+# dummy dummy\n+# dummy dummy"},{"sha":"e44f557b689ea8967be89da1de35b98c4e3526ac","filename":"Alignment/APEEstimation/test/plottingTools/drawIterations.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawIterations.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -15,3 +15,5 @@\n plot.setTitle(\"Title\")\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy\n+# dummy dummy"},{"sha":"ab01eb884492e33e9684ad943ea26dbe41a85b1d","filename":"Alignment/APEEstimation/test/plottingTools/drawResults.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawResults.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -16,3 +16,5 @@\n plot.addInputFile(\"label\", base+\"/hists/workingArea/iter14/allData_iterationApe.root\", color = ROOT.kGray+2)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy\n+# dummy dummy"},{"sha":"c39a655b19f634880b4f41617ba831870878d408","filename":"Alignment/APEEstimation/test/plottingTools/drawTrend.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawTrend.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -35,3 +35,5 @@\n plot.log = False\n \n plot.draw()\n+# dummy dummy\n+# dummy dummy"},{"sha":"27d9a8e7fe2d1ed452a23a99cd891091f949215c","filename":"Alignment/APEEstimation/test/plottingTools/drawValidation.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FdrawValidation.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -19,3 +19,5 @@\n plot.addInputFile(\"Design\", \"{base}/hists/Design/baseline/allData.root\".format(base=base),color=ROOT.kRed,marker=0)\n plot.setGranularity(standardGranularity)\n plot.draw()\n+# dummy dummy\n+# dummy dummy"},{"sha":"f1487da3ad4e60bee8cd151c3a102649f6e94b2b","filename":"Alignment/APEEstimation/test/plottingTools/granularity.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2Fgranularity.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -44,3 +44,5 @@ def __init__(self):\n # BpixLayer1Out, BpixLayer3In, FpixMinusLayer1, TibLayer1RphiOut, TibLayer4In, TobLayer1StereoOut, TobLayer5Out, TecPlusRing7\n # This can be changed in apeEstimator_cfg or in SectorBuilder_cff\n # For these sectors, additional hit validation plots are created\n+# dummy dummy\n+# dummy dummy"},{"sha":"21f051b0eeef957244bff1b10bc8c176f9b07bd1","filename":"Alignment/APEEstimation/test/plottingTools/iterationsPlotter.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FiterationsPlotter.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -127,3 +127,5 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy\n+# dummy dummy"},{"sha":"13e254ce556fefe4cf2d30c0801130646028fd73","filename":"Alignment/APEEstimation/test/plottingTools/resultPlotter.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FresultPlotter.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -237,3 +237,5 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy\n+# dummy dummy"},{"sha":"437860c255d3be1d786489ce4c49c48082c97cd7","filename":"Alignment/APEEstimation/test/plottingTools/setTDRStyle.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsetTDRStyle.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -168,3 +168,5 @@ def setTDRStyle():\n \n tdrStyle.cd()\n return tdrStyle\n+# dummy dummy\n+# dummy dummy"},{"sha":"4ee0fd914f1e814e55c3ccb1eb14e5311cd4c07c","filename":"Alignment/APEEstimation/test/plottingTools/systematicErrors.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FsystematicErrors.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -114,3 +114,5 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy\n+# dummy dummy"},{"sha":"962b34e8c0338c8fc2dd3c7f1d179ca48c2db70f","filename":"Alignment/APEEstimation/test/plottingTools/trendPlotter.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FtrendPlotter.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -309,3 +309,5 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy\n+# dummy dummy"},{"sha":"8f78f02b7fb92830dd41119297be4094b7b380d7","filename":"Alignment/APEEstimation/test/plottingTools/validationPlotter.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FplottingTools%2FvalidationPlotter.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -293,3 +293,5 @@ def main():\n \n if __name__ == \"__main__\":\n main()\n+# dummy dummy\n+# dummy dummy"},{"sha":"fa8481a8d292fb9ac3725c8a354bcfb22300cae9","filename":"Alignment/APEEstimation/test/trackerTreeGenerator_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FAPEEstimation%2Ftest%2FtrackerTreeGenerator_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -88,3 +88,5 @@\n \n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"d239662550234f4658a37e6c8cdb759954c81bd7","filename":"Alignment/CocoaApplication/test/cocoaAnalyzer_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCocoaApplication%2Ftest%2FcocoaAnalyzer_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -82,3 +82,5 @@\n \n process.p = cms.Path(process.cocoa)\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"225d46573715f4176544478987da56a81b1f7520","filename":"Alignment/CommonAlignmentAlgorithm/python/AlignmentParameterStore_cfi.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FAlignmentParameterStore_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -12,3 +12,5 @@\n )\n )\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"1b3bff826e27955ced236b209a61200d7bdef751","filename":"Alignment/CommonAlignmentAlgorithm/python/ApeSettingAlgorithm_cfi.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FApeSettingAlgorithm_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -31,3 +31,5 @@\n # Also note:\n # process.AlignmentProducer.saveApeToDB -- to save as an sqlite file\n # and associated entries in _cfg.py\n+# dummy dummy\n+# dummy dummy"},{"sha":"ad91844f759467c6f7721435cd237e20180c6ce5","filename":"Alignment/CommonAlignmentAlgorithm/python/SiPixelLorentzAngleCalibration_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiPixelLorentzAngleCalibration_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -22,3 +22,5 @@\n # one directly uses the unlabelled version, i.e. \"\"\n lorentzAngleLabel = cms.string(\"fromAlignment\"),\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"10ccf5935c220cd35d11e55e8c160669eed3bc82","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripBackplaneCalibration_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripBackplaneCalibration_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -17,3 +17,5 @@\n # Configuration of the granularity for the backplane correction determination\n BackplaneModuleGroups = cms.PSet(),\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"e2edeefb0e9cd6623d632c4f259b0be3c95ad5e1","filename":"Alignment/CommonAlignmentAlgorithm/python/SiStripLorentzAngleCalibration_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Fpython%2FSiStripLorentzAngleCalibration_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -22,3 +22,5 @@\n readoutMode = 'deconvolution',\n recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_deco'),\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"c246af4b5491b759aff51e7bbd7a40bd38c9621f","filename":"Alignment/CommonAlignmentAlgorithm/test/apeLocalSetting_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeLocalSetting_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -104,3 +104,5 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"bdd38ecf5759f2806ac0f0573a7fc9d2b9172b32","filename":"Alignment/CommonAlignmentAlgorithm/test/apeSetting_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentAlgorithm%2Ftest%2FapeSetting_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -94,3 +94,5 @@\n #process.TrackRefitter.TrajectoryInEvent = True\n \n \n+# dummy dummy\n+# dummy dummy"},{"sha":"ba2fe99f592f28d81acb72d1d45623221bd2ba5a","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonResidualsDefaults_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonResidualsDefaults_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -11,3 +11,5 @@\n ystdev_bins = cms.uint32(300), ystdev_low = cms.double(0.0), ystdev_high = cms.double(30.0),\n yerronmean_bins = cms.uint32(300), yerronmean_low = cms.double(0.0), yerronmean_high = cms.double(1.0),\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"e5075ba928cc91d96b088042bdff1f95b0c9ca07","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonSystemMap1D_cfi.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonSystemMap1D_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -20,3 +20,5 @@\n useStubPosition = cms.bool(False),\n createNtuple = cms.bool(False)\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"68808e454eda0f2df2c6ca40ae8b56b4f5271e8f","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorMuonVsCurvature_cfi.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorMuonVsCurvature_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -18,3 +18,5 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"a394609dbce723083aa19d1594bd9423f51d0609","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentMonitorSegmentDifferences_cfi.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentMonitorSegmentDifferences_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -16,3 +16,5 @@\n doDT = cms.bool(True),\n doCSC = cms.bool(True)\n )\n+# dummy dummy\n+# dummy dummy"},{"sha":"30773e6acf1280ae42165012f9ba8a03445db77e","filename":"Alignment/CommonAlignmentMonitor/python/AlignmentStats_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Fpython%2FAlignmentStats_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -1,2 +1,4 @@\n import FWCore.ParameterSet.Config as cms\n from Alignment.CommonAlignmentMonitor.AlignmentStats_cfi import *\n+# dummy dummy\n+# dummy dummy"},{"sha":"13f3d7051168d6d9ed2ca81c4a416fd7441460f0","filename":"Alignment/CommonAlignmentMonitor/test/testAlignmentStats_cfg.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentMonitor%2Ftest%2FtestAlignmentStats_cfg.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -190,3 +190,5 @@\n process.NewStatsCTF)\n \n process.p2 = cms.Path(process.seqALCARECOTkAlMinBiasSkimmed)\n+# dummy dummy\n+# dummy dummy"},{"sha":"78da4bea921b2c7d07bbdf572ea83ad358758515","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -19,3 +19,5 @@\n import copy\n OutALCARECOMuAlBeamHaloOverlaps = copy.deepcopy(OutALCARECOMuAlBeamHaloOverlaps_noDrop)\n OutALCARECOMuAlBeamHaloOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"3e9463c0a15538fa0e0efbe26a798cda1e8adc6d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHaloOverlaps_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHaloOverlaps_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -35,3 +35,5 @@\n )\n \n seqALCARECOMuAlBeamHaloOverlaps = cms.Sequence(ALCARECOMuAlBeamHaloOverlapsHLT + ALCARECOMuAlBeamHaloOverlapsDCSFilter + ALCARECOMuAlBeamHaloOverlapsEnergyCut * ALCARECOMuAlBeamHaloOverlaps)\n+# dummy dummy\n+# dummy dummy"},{"sha":"ec635830bea995e5ed71242ef2afb4ed73a404c4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -19,3 +19,5 @@\n import copy\n OutALCARECOMuAlBeamHalo = copy.deepcopy(OutALCARECOMuAlBeamHalo_noDrop)\n OutALCARECOMuAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"c98154237a13b4995deeedfb45b1e7962c0b16b5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlBeamHalo_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlBeamHalo_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -29,3 +29,5 @@\n \n seqALCARECOMuAlBeamHalo = cms.Sequence(ALCARECOMuAlBeamHaloHLT + ALCARECOMuAlBeamHaloDCSFilter + ALCARECOMuAlBeamHalo)\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"07175ab7f1b7dbc011effff22de33ddd37599fd8","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -32,3 +32,5 @@\n import copy\n OutALCARECOMuAlCalIsolatedMu = copy.deepcopy(OutALCARECOMuAlCalIsolatedMu_noDrop)\n OutALCARECOMuAlCalIsolatedMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"e83cd4e93099a7fab6600666f2ad2995db938ed9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlCalIsolatedMu_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlCalIsolatedMu_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -48,3 +48,5 @@\n seqALCARECOMuAlCalIsolatedMu = cms.Sequence(ALCARECOMuAlCalIsolatedMuHLT + ALCARECOMuAlCalIsolatedDCSFilter + ALCARECOMuAlCalIsolatedMu)\n \n seqALCARECOMuAlCalIsolatedMuGeneralTracks = cms.Sequence(ALCARECOMuAlCalIsolatedMuGeneralTracks)\n+# dummy dummy\n+# dummy dummy"},{"sha":"1dcffade2ff6090fd9ddabb96952b5aa56f3c985","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -32,3 +32,5 @@\n import copy\n OutALCARECOMuAlGlobalCosmicsInCollisions = copy.deepcopy(OutALCARECOMuAlGlobalCosmicsInCollisions_noDrop)\n OutALCARECOMuAlGlobalCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"a8bb8bfcb0c8b3970e359d49ba25b28359d442f0","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmicsInCollisions_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmicsInCollisions_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -33,3 +33,5 @@\n )\n \n seqALCARECOMuAlGlobalCosmicsInCollisions = cms.Sequence(ALCARECOMuAlGlobalCosmicsInCollisionsHLT + ALCARECOMuAlGlobalCosmicsInCollisionsDCSFilter + ALCARECOMuAlGlobalCosmicsInCollisions)\n+# dummy dummy\n+# dummy dummy"},{"sha":"1facd6b856bdc3a1e9141ab6ef1922f6c0f5dabc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -35,3 +35,5 @@\n import copy\n OutALCARECOMuAlGlobalCosmics = copy.deepcopy(OutALCARECOMuAlGlobalCosmics_noDrop)\n OutALCARECOMuAlGlobalCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"73b8ed8ea64a6f80d78110e6ab862681d5ea1b79","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlGlobalCosmics_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlGlobalCosmics_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -62,3 +62,5 @@\n seqALCARECOMuAlGlobalCosmicsCombinatorialTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCombinatorialTF)\n seqALCARECOMuAlGlobalCosmicsCosmicTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsCosmicTF)\n seqALCARECOMuAlGlobalCosmicsRegionalTF = cms.Sequence(ALCARECOMuAlGlobalCosmicsRegionalTF)\n+# dummy dummy\n+# dummy dummy"},{"sha":"709acb466ce9fa5360a60e4a4af6d7807c43b377","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -29,3 +29,5 @@\n import copy\n OutALCARECOMuAlOverlaps = copy.deepcopy(OutALCARECOMuAlOverlaps_noDrop)\n OutALCARECOMuAlOverlaps.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"134a4b619b735beff5f0cc64cdbbfaa8ce08bb5b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlOverlaps_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlOverlaps_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -51,3 +51,5 @@\n seqALCARECOMuAlOverlaps = cms.Sequence(ALCARECOMuAlOverlapsHLT+ALCARECOMuAlOverlapsDCSFilter+ALCARECOMuAlOverlapsMuonSelector*ALCARECOMuAlOverlaps)\n \n seqALCARECOMuAlOverlapsGeneralTracks = cms.Sequence(ALCARECOMuAlOverlapsGeneralTracks)\n+# dummy dummy\n+# dummy dummy"},{"sha":"47adc6f38fdff7e2d54538881bc9fc529977a945","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -27,3 +27,5 @@\n import copy\n OutALCARECOMuAlStandAloneCosmics = copy.deepcopy(OutALCARECOMuAlStandAloneCosmics_noDrop)\n OutALCARECOMuAlStandAloneCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"1adc87e4d7f51a82f7af0eff233d39d6ac416efe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlStandAloneCosmics_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -32,3 +32,5 @@\n \n seqALCARECOMuAlStandAloneCosmics = cms.Sequence(ALCARECOMuAlStandAloneCosmicsHLT + ALCARECOMuAlStandAloneCosmicsDCSFilter + ALCARECOMuAlStandAloneCosmics)\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"335a8a2396a124500b6d3b28fa51c992424db764","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -29,3 +29,5 @@\n import copy\n OutALCARECOMuAlZMuMu = copy.deepcopy(OutALCARECOMuAlZMuMu_noDrop)\n OutALCARECOMuAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"e9055e8b0b65e3888fc1af406c0da387274e5702","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOMuAlZMuMu_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOMuAlZMuMu_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -49,3 +49,5 @@\n seqALCARECOMuAlZMuMu = cms.Sequence(ALCARECOMuAlZMuMuHLT+ALCARECOMuAlZMuMuDCSFilter+ALCARECOMuAlZMuMu)\n \n seqALCARECOMuAlZMuMuGeneralTracks = cms.Sequence(ALCARECOMuAlZMuMuGeneralTracks)\n+# dummy dummy\n+# dummy dummy"},{"sha":"dce90d333cc7f961e8d24da75f04cac32f29aec5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli0T_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli0T_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -161,3 +161,5 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy\n+# dummy dummy"},{"sha":"2dcaff04e50ade14bb008fdfc05cb6e8b7414da7","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGCombined_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -10,3 +10,5 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHGComb=OutALCARECOPromptCalibProdSiPixelAliHGComb_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHGComb.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"44f72cad407d6c3cca006db1b23e2359cda5b0cb","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHGDiMuon_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -133,3 +133,5 @@\n SiPixelAliTrackRefitterHGDimuon1*\n SiPixelAliMilleAlignmentProducerHGDimuon*\n SiPixelAliMillePedeFileConverterHGDimuon)\n+# dummy dummy\n+# dummy dummy"},{"sha":"846097d430b11bb5d888903cda64f68fa8266456","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -10,3 +10,5 @@\n \n OutALCARECOPromptCalibProdSiPixelAliHG=OutALCARECOPromptCalibProdSiPixelAliHG_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAliHG.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"a3d5f9f676b3a3b4fab20edd5f859af0955676a4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAliHG_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAliHG_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -74,3 +74,5 @@\n SiPixelAliTrackRefitterHG1*\n SiPixelAliMilleAlignmentProducerHG*\n SiPixelAliMillePedeFileConverterHG)\n+# dummy dummy\n+# dummy dummy"},{"sha":"7a52b34d36caf0db0ea1d858954c8b0f9696ea9e","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -10,3 +10,5 @@\n \n OutALCARECOPromptCalibProdSiPixelAli=OutALCARECOPromptCalibProdSiPixelAli_noDrop.clone()\n OutALCARECOPromptCalibProdSiPixelAli.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"140595fc8fed1f3a1a1bc563039fb63aa6840549","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOPromptCalibProdSiPixelAli_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOPromptCalibProdSiPixelAli_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -159,3 +159,5 @@\n \t\t\t\t\t\t SiPixelAliTrackRefitter1*\n SiPixelAliMilleAlignmentProducer*\n SiPixelAliMillePedeFileConverter)\n+# dummy dummy\n+# dummy dummy"},{"sha":"3b7531ea73622e64ce215ae668643c681a3e6052","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,5 @@\n \n OutALCARECOTkAlBeamHalo = copy.deepcopy(OutALCARECOTkAlBeamHalo_noDrop)\n OutALCARECOTkAlBeamHalo.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"6f87854337b82dc7b29247f546d6203188211fa6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlBeamHalo_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlBeamHalo_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,5 @@\n ALCARECOTkAlBeamHalo.TwoBodyDecaySelector.applyAcoplanarityFilter = False\n \n seqALCARECOTkAlBeamHalo = cms.Sequence(ALCARECOTkAlBeamHaloDCSFilter+ALCARECOTkAlBeamHalo)\n+# dummy dummy\n+# dummy dummy"},{"sha":"c31963fcb02a05e65503847419a37fb8a1a6d138","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -19,3 +19,5 @@\n import copy\n OutALCARECOTkAlCosmics0THLT = copy.deepcopy(OutALCARECOTkAlCosmics0THLT_noDrop)\n OutALCARECOTkAlCosmics0THLT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"94858f9ebf97e8b288dd4477be7346928a7fb80c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0THLT_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0THLT_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -21,3 +21,5 @@\n seqALCARECOTkAlCosmicsCTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCTF0T)\n seqALCARECOTkAlCosmicsCosmicTF0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0THLT = cms.Sequence(ALCARECOTkAlCosmics0THLT+seqALCARECOTkAlCosmicsRegional0T)\n+# dummy dummy\n+# dummy dummy"},{"sha":"0515e9f599a0a0cccb65ca41968a9625d9227e92","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -31,3 +31,5 @@\n import copy\n OutALCARECOTkAlCosmics0T = copy.deepcopy(OutALCARECOTkAlCosmics0T_noDrop)\n OutALCARECOTkAlCosmics0T.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"f3b25f9f2265ee6b48fbd82da66651307c7acb75","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_Skimmed_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_Skimmed_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -142,3 +142,5 @@\n #seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF+NewStatsCTF)\n seqALCARECOTkAlCosmicsCTFSkimmed = cms.Sequence(MyBeamSpot+TrackRefitterCTF1+AlignmentHitFilterCTF+ctfProducerCustomisedCTF+ALCARECOTkAlCosmicsCTF4TSkimmed+TrackRefitterCTF2+OverlapAssoMapCTF)\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"970ed3bf6f79564c115cac687a3b313eb2d53c4a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics0T_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -57,3 +57,5 @@\n seqALCARECOTkAlCosmicsCosmicTF0T = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF0T)\n seqALCARECOTkAlCosmicsRegional0T = cms.Sequence(ALCARECOTkAlCosmicsRegional0T)\n seqALCARECOTkAlCosmicsDuringCollisions0T = cms.Sequence(ALCARECOTkAlCosmicsDuringCollisions0T)\n+# dummy dummy\n+# dummy dummy"},{"sha":"ff679d3528fd4ab3b3f36b11628e4cd080f962f6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -21,3 +21,5 @@\n OutALCARECOTkAlCosmicsHLT = copy.deepcopy(OutALCARECOTkAlCosmicsHLT_noDrop)\n OutALCARECOTkAlCosmicsHLT.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"8990b5900ce2af01e828dd5cf33b1b0b1300afe1","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsHLT_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsHLT_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -19,3 +19,5 @@\n seqALCARECOTkAlCosmicsCosmicTFHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegionalHLT = cms.Sequence(ALCARECOTkAlCosmicsHLT+seqALCARECOTkAlCosmicsRegional)\n \n+# dummy dummy\n+# dummy dummy"},{"sha":"aa4ab27d3e2c06e9469498f0f8cde47c7f0965e6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -25,3 +25,5 @@\n import copy\n OutALCARECOTkAlCosmicsInCollisions = copy.deepcopy(OutALCARECOTkAlCosmicsInCollisions_noDrop)\n OutALCARECOTkAlCosmicsInCollisions.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"08e97587c350249c4f2760170d8a7c4b86e4f768","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmicsInCollisions_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmicsInCollisions_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -53,3 +53,5 @@\n \n #________________________________Sequences____________________________________\n seqALCARECOTkAlCosmicsInCollisions = cms.Sequence(cosmicDCTracksSeq*ALCARECOTkAlCosmicsInCollisionsHLT+ALCARECOTkAlCosmicsInCollisionsDCSFilter+ALCARECOTkAlCosmicsInCollisions)\n+# dummy dummy\n+# dummy dummy"},{"sha":"20f566050ddeafab01876ae75aa9997212c6384d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_Output_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -28,3 +28,5 @@\n import copy\n OutALCARECOTkAlCosmics = copy.deepcopy(OutALCARECOTkAlCosmics_noDrop)\n OutALCARECOTkAlCosmics.outputCommands.insert(0, \"drop *\")\n+# dummy dummy\n+# dummy dummy"},{"sha":"49b403ad0d6bb3c22aea28193ed540e908a6f0ae","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics_cff.py","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlCosmics_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -56,3 +56,5 @@\n seqALCARECOTkAlCosmicsCTF = cms.Sequence(ALCARECOTkAlCosmicsCTF)\n seqALCARECOTkAlCosmicsCosmicTF = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF)\n seqALCARECOTkAlCosmicsRegional = cms.Sequence(ALCARECOTkAlCosmicsRegional)\n+# dummy dummy\n+# dummy dummy"}] + +https +GET +api.github.com +None +/repositories/399376380/pulls/18/files?per_page=100&page=2 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:33 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"942b55ea08c435aa0753dae5b6a374af19ecb945474bf5e755479057ad1a241c"'), ('Last-Modified', 'Tue, 16 Apr 2024 13:07:28 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="prev", ; rel="first"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4335'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '665'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8C14:121DD6:8C20299:8CCE2CA:661E79F5')] +[{"sha":"04e2d813ac585e1b7673cfbb8fc1923dedafa59f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -36,3 +36,4 @@\n \n OutALCARECOTkAlDiMuonAndVertex = OutALCARECOTkAlDiMuonAndVertex_noDrop.clone()\n OutALCARECOTkAlDiMuonAndVertex.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"95b1f254dffb1313d929032538d77052b4161080","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlDiMuonAndVertex_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlDiMuonAndVertex_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -34,3 +34,4 @@\n eventSetupPathsKey='TkAlZMuMuHI')\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlDiMuon, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"40c7addf56393c1a7bde9fc55e48ae9bb434cfc4","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -42,3 +42,4 @@\n \n OutALCARECOTkAlJetHT = OutALCARECOTkAlJetHT_noDrop.clone()\n OutALCARECOTkAlJetHT.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"560bf98333a3142d57a6f197637b08d36d2408e1","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJetHT_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJetHT_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -47,3 +47,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJetHT, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"740618cab38b590946602344d8f81a4b844ce12b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMuHI = OutALCARECOTkAlJpsiMuMuHI_noDrop.clone()\n OutALCARECOTkAlJpsiMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"bf859b1017bc91f4fa4cc69f0a3f462e40db7adc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMuHI_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -22,3 +22,4 @@\n +ALCARECOTkAlJpsiMuMuHIGoodMuons\n +ALCARECOTkAlJpsiMuMuHI\n )\n+# dummy dummy"},{"sha":"3a74b9aea426eaf71bfb189a1ef031ca7a19ed68","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlJpsiMuMu = OutALCARECOTkAlJpsiMuMu_noDrop.clone()\n OutALCARECOTkAlJpsiMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"16c9d0587c7f1ca36f19494751bc5fd61414fe0c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlJpsiMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlJpsiMuMu_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -60,3 +60,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlJpsiMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"ca5d3981af1d54cccfa4c91f6b18a723f8c2335c","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -13,3 +13,4 @@\n import copy\n OutALCARECOTkAlLAS = copy.deepcopy(OutALCARECOTkAlLAS_noDrop)\n OutALCARECOTkAlLAS.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"37ad0535fa3f082ef3085a7cba35cc3a101a3395","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlLAS_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -23,3 +23,4 @@\n )\n \n seqALCARECOTkAlLAS = cms.Sequence(ALCARECOTkAlLASsiStripDigis+ALCARECOTkAlLASEventFilter+ALCARECOTkAlLAST0Producer)\n+# dummy dummy"},{"sha":"ec3ea92010c2560fdc8dec05d1b8da649d587a39","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlMinBiasHI = copy.deepcopy(OutALCARECOTkAlMinBiasHI_noDrop)\n OutALCARECOTkAlMinBiasHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1c627ee4220e2bdc2a8c1590b9c32a5ac7a80af6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBiasHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBiasHI_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -17,3 +17,4 @@\n #ALCARECOTkAlMinBiasHI.pMin = 3.0 ##GeV\n \n seqALCARECOTkAlMinBiasHI = cms.Sequence(ALCARECOTkAlMinBiasHIHLT+ALCARECOTkAlMinBiasHIDCSFilter+ALCARECOTkAlMinBiasHI)\n+# dummy dummy"},{"sha":"bbe624309fad5e7d0069c975b58e42f91a772daf","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -41,3 +41,4 @@\n \n OutALCARECOTkAlMinBias = OutALCARECOTkAlMinBias_noDrop.clone()\n OutALCARECOTkAlMinBias.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"f12db1ad9d5d5208c8723fe2564d5810a0b13d3a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_Skimmed_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_Skimmed_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -141,3 +141,4 @@\n \n \n \n+# dummy dummy"},{"sha":"23de0a29ee8829cc2cb3cac9b62d69ef93fd016d","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMinBias_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMinBias_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -70,3 +70,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMinBias, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"812ecac0085dee52a0d36009b321ca87c721e60f","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedHI = OutALCARECOTkAlMuonIsolatedHI_noDrop.clone()\n OutALCARECOTkAlMuonIsolatedHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b1bcdf384d62646da81f4fe38aa40898644516d6","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedHI_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -28,3 +28,4 @@\n +ALCARECOTkAlMuonIsolatedHIDCSFilter\n +ALCARECOTkAlMuonIsolatedHI\n )\n+# dummy dummy"},{"sha":"db2d480f19e16b06a2baadfdf8e6d45fd4f558be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolatedPA = copy.deepcopy(OutALCARECOTkAlMuonIsolatedPA_noDrop)\n OutALCARECOTkAlMuonIsolatedPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"ad25e41b012b8d51b886d841e629c58bb1523164","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolatedPA_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -44,3 +44,4 @@\n seqALCARECOTkAlMuonIsolatedPA = cms.Sequence(ALCARECOTkAlMuonIsolatedPAHLT\n +ALCARECOTkAlMuonIsolatedPADCSFilter\n +ALCARECOTkAlMuonIsolatedPA)\n+# dummy dummy"},{"sha":"64e4be787a63b8d84bba977606a0eeee9229746a","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlMuonIsolated = OutALCARECOTkAlMuonIsolated_noDrop.clone()\n OutALCARECOTkAlMuonIsolated.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"150d629df9c4243d8a03ea4640cd17a7db77e7fe","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlMuonIsolated_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -62,3 +62,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlMuonIsolated, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"15faac5d2bf408166454d118ec3d33b7afc165da","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMuHI = OutALCARECOTkAlUpsilonMuMuHI_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"a37326e8e5e180955b0497ede6f5b149284ce7ba","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuHI_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuHIGoodMuons\n +ALCARECOTkAlUpsilonMuMuHI\n )\n+# dummy dummy"},{"sha":"caa0a6885bbf08aa3c233cf65a80b29e4a5c78e2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlUpsilonMuMuPA = copy.deepcopy(OutALCARECOTkAlUpsilonMuMuPA_noDrop)\n OutALCARECOTkAlUpsilonMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"52398e4ccae91588670d8017e1b455925d57e42b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMuPA_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlUpsilonMuMuPAGoodMuons\n +ALCARECOTkAlUpsilonMuMuPA\n )\n+# dummy dummy"},{"sha":"a0ad5327c3312489af64708dfee132c72c45b4be","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlUpsilonMuMu = OutALCARECOTkAlUpsilonMuMu_noDrop.clone()\n OutALCARECOTkAlUpsilonMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1099c00ffe243c7be34319a5d6e89139052ce70b","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlUpsilonMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlUpsilonMuMu_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -64,3 +64,4 @@\n )\n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlUpsilonMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"3ff6614f26c23998b935ecec43b33cea1982dfc2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -50,3 +50,4 @@\n \n OutALCARECOTkAlV0s = OutALCARECOTkAlV0s_noDrop.clone()\n OutALCARECOTkAlV0s.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"1e6869c43e1bada2c14fa7b4b0944b4dfbac38e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlV0s_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlV0s_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -38,3 +38,4 @@\n ##################################################################\n seqALCARECOTkAlK0s = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sKShortEventSelector + ALCARECOTkAlKShortTracks)\n seqALCARECOTkAlLambdas = cms.Sequence(ALCARECOTkAlV0sHLTFilter + ALCARECOTkAlV0sLambdaEventSelector + ALCARECOTkAlLambdaTracks)\n+# dummy dummy"},{"sha":"4984db89d155cc9e42edfeab63704f9b6c2e06cd","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -41,3 +41,4 @@\n OutALCARECOTkAlWMuNu = OutALCARECOTkAlWMuNu_noDrop.clone()\n OutALCARECOTkAlWMuNu.outputCommands.insert(0, \"drop *\")\n \n+# dummy dummy"},{"sha":"12d45b9f6946d0cd8f2c3b801f0fb064fadaa4b2","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlWMuNu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlWMuNu_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -59,3 +59,4 @@\n ALCARECOTkAlWMuNu.TwoBodyDecaySelector.acoplanarDistance = 1 ##radian\n \n seqALCARECOTkAlWMuNu = cms.Sequence(ALCARECOTkAlWMuNuHLT+ALCARECOTkAlWMuNuDCSFilter+ALCARECOTkAlWMuNuGoodMuons+ALCARECOTkAlWMuNuRelCombIsoMuons+ALCARECOTkAlWMuNu)\n+# dummy dummy"},{"sha":"2e1d642fc7bf7bb735da62936f015b7c959ee265","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMuHI = OutALCARECOTkAlZMuMuHI_noDrop.clone()\n OutALCARECOTkAlZMuMuHI.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"b10490d6d7bd2c4412c315a1d13d4b6deb3b9cb9","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuHI_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuHI_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuHIGoodMuons\n +ALCARECOTkAlZMuMuHI\n )\n+# dummy dummy"},{"sha":"ad3df1e1e69c4ab367457b7483f9880b5f23c525","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -40,3 +40,4 @@\n \n OutALCARECOTkAlZMuMuPA = copy.deepcopy(OutALCARECOTkAlZMuMuPA_noDrop)\n OutALCARECOTkAlZMuMuPA.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"788c071104caa4f263abcb2a37137aa34cf094e5","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMuPA_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMuPA_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -21,3 +21,4 @@\n +ALCARECOTkAlZMuMuPAGoodMuons\n +ALCARECOTkAlZMuMuPA\n )\n+# dummy dummy"},{"sha":"ae380fe2fb275ff268af5b7a244b25b562934ffc","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_Output_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_Output_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -39,3 +39,4 @@\n \n OutALCARECOTkAlZMuMu = OutALCARECOTkAlZMuMu_noDrop.clone()\n OutALCARECOTkAlZMuMu.outputCommands.insert(0, \"drop *\")\n+# dummy dummy"},{"sha":"f4410fb589cfa4fd1805f5bb58e6c938f34d2e28","filename":"Alignment/CommonAlignmentProducer/python/ALCARECOTkAlZMuMu_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FALCARECOTkAlZMuMu_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -62,3 +62,4 @@\n \n from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker\n phase2_tracker.toModify(ALCARECOTkAlZMuMu, etaMin = -4, etaMax = 4)\n+# dummy dummy"},{"sha":"920b3ea769172d92355979895b4c6c15adfd643a","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester0T_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester0T_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -55,3 +55,4 @@\n \n ALCAHARVESTSiPixelAli = cms.Sequence(SiPixelAliMilleFileExtractor*\n SiPixelAliPedeAlignmentProducer)\n+# dummy dummy"},{"sha":"ed5ef5ddf63e60c775b9f8fb45d77a2fff73fba3","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHGCombined_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHGCombined_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -90,3 +90,4 @@\n SiPixelAliPedeAlignmentProducerHGCombined*\n SiPixelAliDQMModuleHGCombined*\n dqmEnvSiPixelAliHGCombined)\n+# dummy dummy"},{"sha":"78eb11a43a7ea82a94992397608d64942d5bb145","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvesterHG_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvesterHG_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -78,3 +78,4 @@\n SiPixelAliPedeAlignmentProducerHG*\n SiPixelAliDQMModuleHG*\n dqmEnvSiPixelAliHG)\n+# dummy dummy"},{"sha":"158b8847e1c548f23cb1b99c85e89edbd5cc3978","filename":"Alignment/CommonAlignmentProducer/python/AlcaSiPixelAliHarvester_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlcaSiPixelAliHarvester_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -61,3 +61,4 @@\n SiPixelAliPedeAlignmentProducer*\n SiPixelAliDQMModule*\n dqmEnvSiPixelAli)\n+# dummy dummy"},{"sha":"ba9b7eaf9365feb77dafb85924e3bf161ecc6076","filename":"Alignment/CommonAlignmentProducer/python/AlignmentMuonSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentMuonSelector_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -44,3 +44,4 @@\n minMassPair = cms.double(89.0),\n maxMassPair = cms.double(90.0)\n )\n+# dummy dummy"},{"sha":"8a212b2ed5c0c0c3b8892798e7b36cc1b7073a53","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducerAsAnalyzer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducerAsAnalyzer_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -88,3 +88,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"},{"sha":"4143f9d9ec58863e84f7725d3721fa7fef4a158d","filename":"Alignment/CommonAlignmentProducer/python/AlignmentProducer_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentProducer_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -91,3 +91,4 @@\n import Geometry.GEMGeometryBuilder.gemGeometryDB_cfi\n GEMGeometryAlignmentProducerAsAnalyzer = Geometry.GEMGeometryBuilder.gemGeometryDB_cfi.GEMGeometryESModule.clone()\n GEMGeometryAlignmentProducerAsAnalyzer.appendToDataLabel = 'idealForAlignmentProducerBase'\n+# dummy dummy"},{"sha":"6f57ca13d86fe929af57b4425beaa3e9b1359029","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTrackSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTrackSelector_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -120,3 +120,4 @@\n )\n \n \n+# dummy dummy"},{"sha":"5cd06205a6bb4174c50304aa4343871572503e1e","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexCompositeCandidateSelector_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -2,3 +2,4 @@\n \n from Alignment.CommonAlignmentProducer.alignmentTrackFromVertexCompositeCandidateSelectorModule_cfi import alignmentTrackFromVertexCompositeCandidateSelectorModule\n AlignmentTracksFromVertexCompositeCandidateSelector = alignmentTrackFromVertexCompositeCandidateSelectorModule.clone()\n+# dummy dummy"},{"sha":"f0b6960be9fd73052c1a73c32edf45e4c6d816ef","filename":"Alignment/CommonAlignmentProducer/python/AlignmentTracksFromVertexSelector_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FAlignmentTracksFromVertexSelector_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -5,3 +5,4 @@\n vertices = cms.InputTag(\"offlinePrimaryVertices\"),\n vertexIndex = cms.uint32(0),\n filter = cms.bool(False))\n+# dummy dummy"},{"sha":"99f3383f32bac03f478218b5c53966f9ec5f2c26","filename":"Alignment/CommonAlignmentProducer/python/DBConfiguration_cff.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FDBConfiguration_cff.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -33,3 +33,4 @@\n )\n \n \n+# dummy dummy"},{"sha":"2d1716bcbd3ac0cab354a05a40a454cb35643c41","filename":"Alignment/CommonAlignmentProducer/python/FakeAlignmentSource_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FFakeAlignmentSource_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -9,3 +9,4 @@\n produceTrackerSurfaceDeformation = cms.bool(True),\n appendToDataLabel = cms.string('')\n )\n+# dummy dummy"},{"sha":"7efc3c8be0a1220d356495ddbb11d5ab24921f62","filename":"Alignment/CommonAlignmentProducer/python/customizeLSNumberFilterForRelVals.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FcustomizeLSNumberFilterForRelVals.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -32,3 +32,4 @@ def lowerHitsPerStructure(process):\n 'skipemptycons'\n )\n return process\n+# dummy dummy"},{"sha":"38a9225bda00da0f45d5ca8ab21ae7afadf0e38a","filename":"Alignment/CommonAlignmentProducer/python/fakeAlignmentProducer_cfi.py","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/848c88ff0403fad82b647b13c2be704548a78df4/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Alignment%2FCommonAlignmentProducer%2Fpython%2FfakeAlignmentProducer_cfi.py?ref=848c88ff0403fad82b647b13c2be704548a78df4","patch":"@@ -5,3 +5,4 @@\n )\n \n \n+# dummy dummy"}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/18/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"566a70f5880554446ab6e8fbc7d162d841d14f540f39abccfaeec548ed542e83"'), ('Last-Modified', 'Tue, 16 Apr 2024 13:07:28 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="next", ; rel="last"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4334'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '666'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8520:1AAB48:886489B:8912B1F:661E79FD')] +[{"sha":"247c0caac63c4155f2a10acc26b59d7547ff6f21","node_id":"C_kwDOF83__NoAKDI0N2MwY2FhYzYzYzQxNTVmMmExMGFjYzI2YjU5ZDc1NDdmZjZmMjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"5ee2fed7809c2c4a64b2a9cfb6d66a19763783df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5ee2fed7809c2c4a64b2a9cfb6d66a19763783df"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/247c0caac63c4155f2a10acc26b59d7547ff6f21","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6955d8ed3dc748e23c565b2978083036918468f6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6955d8ed3dc748e23c565b2978083036918468f6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6955d8ed3dc748e23c565b2978083036918468f6"}]},{"sha":"e51cf1bf814047845cf0e6a09112abb57a0b6299","node_id":"C_kwDOF83__NoAKGU1MWNmMWJmODE0MDQ3ODQ1Y2YwZTZhMDkxMTJhYmI1N2EwYjYyOTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"d1d3223bbfee32e1192a1e4afe894fc2ac98f90f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d1d3223bbfee32e1192a1e4afe894fc2ac98f90f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e51cf1bf814047845cf0e6a09112abb57a0b6299","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"247c0caac63c4155f2a10acc26b59d7547ff6f21","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/247c0caac63c4155f2a10acc26b59d7547ff6f21","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/247c0caac63c4155f2a10acc26b59d7547ff6f21"}]},{"sha":"8afccd866520ab62c501af476ad5b3b9af8f77eb","node_id":"C_kwDOF83__NoAKDhhZmNjZDg2NjUyMGFiNjJjNTAxYWY0NzZhZDViM2I5YWY4Zjc3ZWI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"6c81a6cb7c3ba6bd69df6e1715d38b2501ad8d31","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6c81a6cb7c3ba6bd69df6e1715d38b2501ad8d31"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8afccd866520ab62c501af476ad5b3b9af8f77eb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e51cf1bf814047845cf0e6a09112abb57a0b6299","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e51cf1bf814047845cf0e6a09112abb57a0b6299","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e51cf1bf814047845cf0e6a09112abb57a0b6299"}]},{"sha":"5710511d889195da564138babf2d14dc82f0b27f","node_id":"C_kwDOF83__NoAKDU3MTA1MTFkODg5MTk1ZGE1NjQxMzhiYWJmMmQxNGRjODJmMGIyN2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"53a4e6779dd443ee456cfe89ecf28319ed9b85bb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/53a4e6779dd443ee456cfe89ecf28319ed9b85bb"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5710511d889195da564138babf2d14dc82f0b27f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5710511d889195da564138babf2d14dc82f0b27f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8afccd866520ab62c501af476ad5b3b9af8f77eb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8afccd866520ab62c501af476ad5b3b9af8f77eb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8afccd866520ab62c501af476ad5b3b9af8f77eb"}]},{"sha":"d9a57159b2c24366f0d1b880aab463aaaf5da412","node_id":"C_kwDOF83__NoAKGQ5YTU3MTU5YjJjMjQzNjZmMGQxYjg4MGFhYjQ2M2FhYWY1ZGE0MTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"af5c7dd9931ebbc0af6c2704467ac88ca87b13f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/af5c7dd9931ebbc0af6c2704467ac88ca87b13f4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d9a57159b2c24366f0d1b880aab463aaaf5da412","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5710511d889195da564138babf2d14dc82f0b27f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5710511d889195da564138babf2d14dc82f0b27f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5710511d889195da564138babf2d14dc82f0b27f"}]},{"sha":"d18965eed76efeb820839413951e7b490756ded2","node_id":"C_kwDOF83__NoAKGQxODk2NWVlZDc2ZWZlYjgyMDgzOTQxMzk1MWU3YjQ5MDc1NmRlZDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"2217eae6f286992914af68ec89c06b8bda3962e3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2217eae6f286992914af68ec89c06b8bda3962e3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d18965eed76efeb820839413951e7b490756ded2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d18965eed76efeb820839413951e7b490756ded2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d9a57159b2c24366f0d1b880aab463aaaf5da412","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d9a57159b2c24366f0d1b880aab463aaaf5da412","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d9a57159b2c24366f0d1b880aab463aaaf5da412"}]},{"sha":"f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","node_id":"C_kwDOF83__NoAKGY1YmZmODVmMTM5M2FmZTQ1NWZlNDJhNDg3M2ZmM2ZjZmNmYzAyYjU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:53Z"},"message":"Dummy commit","tree":{"sha":"6c3eff6c9fa350668233e3c158c33e5777f077aa","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6c3eff6c9fa350668233e3c158c33e5777f077aa"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d18965eed76efeb820839413951e7b490756ded2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d18965eed76efeb820839413951e7b490756ded2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d18965eed76efeb820839413951e7b490756ded2"}]},{"sha":"f3b440e9ca574ac4971cc1478dae15a25e4357c4","node_id":"C_kwDOF83__NoAKGYzYjQ0MGU5Y2E1NzRhYzQ5NzFjYzE0NzhkYWUxNWEyNWU0MzU3YzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"f0c3e3d6ac6029c6a12814bfafa7d1215eaefd2e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f0c3e3d6ac6029c6a12814bfafa7d1215eaefd2e"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f3b440e9ca574ac4971cc1478dae15a25e4357c4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f5bff85f1393afe455fe42a4873ff3fcfcfc02b5"}]},{"sha":"b16a737b809df919dd2e8e3ab615b1cfbe112bd4","node_id":"C_kwDOF83__NoAKGIxNmE3MzdiODA5ZGY5MTlkZDJlOGUzYWI2MTViMWNmYmUxMTJiZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"bad34a10e058de4e4e86cb13bae4f8336e628fe8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bad34a10e058de4e4e86cb13bae4f8336e628fe8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f3b440e9ca574ac4971cc1478dae15a25e4357c4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f3b440e9ca574ac4971cc1478dae15a25e4357c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f3b440e9ca574ac4971cc1478dae15a25e4357c4"}]},{"sha":"2382eabec2dab6ab48fc7186266ccb6c7b964dc3","node_id":"C_kwDOF83__NoAKDIzODJlYWJlYzJkYWI2YWI0OGZjNzE4NjI2NmNjYjZjN2I5NjRkYzM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"11ff41a0805431ecc8b92c47bdfc1bc7edb58d7f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/11ff41a0805431ecc8b92c47bdfc1bc7edb58d7f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b16a737b809df919dd2e8e3ab615b1cfbe112bd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b16a737b809df919dd2e8e3ab615b1cfbe112bd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b16a737b809df919dd2e8e3ab615b1cfbe112bd4"}]},{"sha":"89f220f19348e3c2f0c4c6dc7945d469f1331786","node_id":"C_kwDOF83__NoAKDg5ZjIyMGYxOTM0OGUzYzJmMGM0YzZkYzc5NDVkNDY5ZjEzMzE3ODY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"ca0b5cc489f32297be4b323ca83f6752e219a93a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ca0b5cc489f32297be4b323ca83f6752e219a93a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/89f220f19348e3c2f0c4c6dc7945d469f1331786","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2382eabec2dab6ab48fc7186266ccb6c7b964dc3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2382eabec2dab6ab48fc7186266ccb6c7b964dc3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2382eabec2dab6ab48fc7186266ccb6c7b964dc3"}]},{"sha":"e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","node_id":"C_kwDOF83__NoAKGU1YjdlMWI2MmY2Y2VjMmZhNDdiNmIyNWVmNmZjZjcyMjViYWRjMjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"953200290b9ea8d399019baa124d5d74e2b145b5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/953200290b9ea8d399019baa124d5d74e2b145b5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"89f220f19348e3c2f0c4c6dc7945d469f1331786","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/89f220f19348e3c2f0c4c6dc7945d469f1331786","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/89f220f19348e3c2f0c4c6dc7945d469f1331786"}]},{"sha":"8965abe7d624415d97cadc713b7e149d71ff65f1","node_id":"C_kwDOF83__NoAKDg5NjVhYmU3ZDYyNDQxNWQ5N2NhZGM3MTNiN2UxNDlkNzFmZjY1ZjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"1081d42476a3f4f419f6123387738ecffa28e074","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1081d42476a3f4f419f6123387738ecffa28e074"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8965abe7d624415d97cadc713b7e149d71ff65f1","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e5b7e1b62f6cec2fa47b6b25ef6fcf7225badc27"}]},{"sha":"2aaed36eb31d0b944c227a24799b77e101cc22f2","node_id":"C_kwDOF83__NoAKDJhYWVkMzZlYjMxZDBiOTQ0YzIyN2EyNDc5OWI3N2UxMDFjYzIyZjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"6efe70a21b279efeac2cf929adbdf71fefe286cd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6efe70a21b279efeac2cf929adbdf71fefe286cd"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2aaed36eb31d0b944c227a24799b77e101cc22f2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8965abe7d624415d97cadc713b7e149d71ff65f1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8965abe7d624415d97cadc713b7e149d71ff65f1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8965abe7d624415d97cadc713b7e149d71ff65f1"}]},{"sha":"fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","node_id":"C_kwDOF83__NoAKGZiMDcwZTQ3Y2I1YTdhZjEyNGJiMmNjNzhjMDBiMzlkOGQ5NTY3ZWM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:54Z"},"message":"Dummy commit","tree":{"sha":"2fada430faba664c4a955a5c816ca675da716cfc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2fada430faba664c4a955a5c816ca675da716cfc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2aaed36eb31d0b944c227a24799b77e101cc22f2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2aaed36eb31d0b944c227a24799b77e101cc22f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2aaed36eb31d0b944c227a24799b77e101cc22f2"}]},{"sha":"639802afc54c74ac0dc8b396099bf5c8f233dd91","node_id":"C_kwDOF83__NoAKDYzOTgwMmFmYzU0Yzc0YWMwZGM4YjM5NjA5OWJmNWM4ZjIzM2RkOTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"ea2b2bd36674fdba6641b22a8ecb04f4f6b27fe2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ea2b2bd36674fdba6641b22a8ecb04f4f6b27fe2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/639802afc54c74ac0dc8b396099bf5c8f233dd91","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb070e47cb5a7af124bb2cc78c00b39d8d9567ec"}]},{"sha":"a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","node_id":"C_kwDOF83__NoAKGEzYjBkYmFhNTQzOTg2Y2E5NDNlMWRkN2ExZGVkNTgxYjc1ZWQ0MmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"413891e07ffb962450fdd61a75da8e0813bc7625","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/413891e07ffb962450fdd61a75da8e0813bc7625"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"639802afc54c74ac0dc8b396099bf5c8f233dd91","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/639802afc54c74ac0dc8b396099bf5c8f233dd91","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/639802afc54c74ac0dc8b396099bf5c8f233dd91"}]},{"sha":"9cbfcbb09eae7cac65425211c039a8f252d49143","node_id":"C_kwDOF83__NoAKDljYmZjYmIwOWVhZTdjYWM2NTQyNTIxMWMwMzlhOGYyNTJkNDkxNDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"c19e228bf08daac524ad2d56c10e16eec7ebef14","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c19e228bf08daac524ad2d56c10e16eec7ebef14"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9cbfcbb09eae7cac65425211c039a8f252d49143","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3b0dbaa543986ca943e1dd7a1ded581b75ed42a"}]},{"sha":"561d6cfcd9df7f9567c66bd0f638d602081c02c5","node_id":"C_kwDOF83__NoAKDU2MWQ2Y2ZjZDlkZjdmOTU2N2M2NmJkMGY2MzhkNjAyMDgxYzAyYzU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"8b439ff7fca802596e2e169290f2296d1dd412e1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8b439ff7fca802596e2e169290f2296d1dd412e1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/561d6cfcd9df7f9567c66bd0f638d602081c02c5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9cbfcbb09eae7cac65425211c039a8f252d49143","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9cbfcbb09eae7cac65425211c039a8f252d49143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9cbfcbb09eae7cac65425211c039a8f252d49143"}]},{"sha":"c84a9d9f368018e0672e7d2e931f8ae24a90ad83","node_id":"C_kwDOF83__NoAKGM4NGE5ZDlmMzY4MDE4ZTA2NzJlN2QyZTkzMWY4YWUyNGE5MGFkODM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"f45fb80386c5b459086a3dc5595ff8714ff97687","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f45fb80386c5b459086a3dc5595ff8714ff97687"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"561d6cfcd9df7f9567c66bd0f638d602081c02c5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/561d6cfcd9df7f9567c66bd0f638d602081c02c5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/561d6cfcd9df7f9567c66bd0f638d602081c02c5"}]},{"sha":"fa29a9f267a1c45ffa701242e9250f2ba50991df","node_id":"C_kwDOF83__NoAKGZhMjlhOWYyNjdhMWM0NWZmYTcwMTI0MmU5MjUwZjJiYTUwOTkxZGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"a411a65f9cdc442d4530080b2eeff1bcd51fbccd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a411a65f9cdc442d4530080b2eeff1bcd51fbccd"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa29a9f267a1c45ffa701242e9250f2ba50991df","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c84a9d9f368018e0672e7d2e931f8ae24a90ad83","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c84a9d9f368018e0672e7d2e931f8ae24a90ad83","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c84a9d9f368018e0672e7d2e931f8ae24a90ad83"}]},{"sha":"5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","node_id":"C_kwDOF83__NoAKDViN2I1NmZmODg4NjI3ZDBkYmMxMzQwZWQyZjVmN2ExZDI5NjE4Zjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"edd0bdfb4ad28e6b210f9a5fb77c554031e8ee55","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/edd0bdfb4ad28e6b210f9a5fb77c554031e8ee55"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa29a9f267a1c45ffa701242e9250f2ba50991df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa29a9f267a1c45ffa701242e9250f2ba50991df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa29a9f267a1c45ffa701242e9250f2ba50991df"}]},{"sha":"8c926930d03076afbc7f8385f6bd00ce8b1a1c01","node_id":"C_kwDOF83__NoAKDhjOTI2OTMwZDAzMDc2YWZiYzdmODM4NWY2YmQwMGNlOGIxYTFjMDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:55Z"},"message":"Dummy commit","tree":{"sha":"1accb80ab9117a43b65686d1484a886b8572d931","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1accb80ab9117a43b65686d1484a886b8572d931"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5b7b56ff888627d0dbc1340ed2f5f7a1d29618f7"}]},{"sha":"acd63acec5999824c69d122ee9bfe4e486175edf","node_id":"C_kwDOF83__NoAKGFjZDYzYWNlYzU5OTk4MjRjNjlkMTIyZWU5YmZlNGU0ODYxNzVlZGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"73de3071727dd5e45b7c78070eae728570b23fe1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/73de3071727dd5e45b7c78070eae728570b23fe1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/acd63acec5999824c69d122ee9bfe4e486175edf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/acd63acec5999824c69d122ee9bfe4e486175edf","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8c926930d03076afbc7f8385f6bd00ce8b1a1c01","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c926930d03076afbc7f8385f6bd00ce8b1a1c01","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c926930d03076afbc7f8385f6bd00ce8b1a1c01"}]},{"sha":"62b4517e606f00a5155e904306a2cdffbdb686e4","node_id":"C_kwDOF83__NoAKDYyYjQ1MTdlNjA2ZjAwYTUxNTVlOTA0MzA2YTJjZGZmYmRiNjg2ZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"ff3f2da01f1fb109e3f578e48e799f86a4848c08","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ff3f2da01f1fb109e3f578e48e799f86a4848c08"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/62b4517e606f00a5155e904306a2cdffbdb686e4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"acd63acec5999824c69d122ee9bfe4e486175edf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/acd63acec5999824c69d122ee9bfe4e486175edf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/acd63acec5999824c69d122ee9bfe4e486175edf"}]},{"sha":"9687f4e8953e009205e255f49ace95dda6413888","node_id":"C_kwDOF83__NoAKDk2ODdmNGU4OTUzZTAwOTIwNWUyNTVmNDlhY2U5NWRkYTY0MTM4ODg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"a0bb4a1b7fc956a8a6183d70b8d4a98eef1ddefc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a0bb4a1b7fc956a8a6183d70b8d4a98eef1ddefc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9687f4e8953e009205e255f49ace95dda6413888","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9687f4e8953e009205e255f49ace95dda6413888","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"62b4517e606f00a5155e904306a2cdffbdb686e4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/62b4517e606f00a5155e904306a2cdffbdb686e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/62b4517e606f00a5155e904306a2cdffbdb686e4"}]},{"sha":"a1585e75d345a0aa57d3d82947b0fe54acb14eb6","node_id":"C_kwDOF83__NoAKGExNTg1ZTc1ZDM0NWEwYWE1N2QzZDgyOTQ3YjBmZTU0YWNiMTRlYjY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"c545a539046669576ca5222662f9cd8cca0562ba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c545a539046669576ca5222662f9cd8cca0562ba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9687f4e8953e009205e255f49ace95dda6413888","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9687f4e8953e009205e255f49ace95dda6413888","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9687f4e8953e009205e255f49ace95dda6413888"}]},{"sha":"d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","node_id":"C_kwDOF83__NoAKGQzZWQ3OGExYmI2YWJmMTJhYTMwYjMxMzRjNGU1MDZmMmE1ZjhkNTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"9f230834e36af0eb754d1eb804cbbbf37a22ce52","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9f230834e36af0eb754d1eb804cbbbf37a22ce52"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a1585e75d345a0aa57d3d82947b0fe54acb14eb6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1585e75d345a0aa57d3d82947b0fe54acb14eb6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1585e75d345a0aa57d3d82947b0fe54acb14eb6"}]},{"sha":"577cfd8011ce680166019acad3b78d4d1aec5704","node_id":"C_kwDOF83__NoAKDU3N2NmZDgwMTFjZTY4MDE2NjAxOWFjYWQzYjc4ZDRkMWFlYzU3MDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:56Z"},"message":"Dummy commit","tree":{"sha":"c54f0c020f41fa54d4dda7d76036e92d784da2f0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c54f0c020f41fa54d4dda7d76036e92d784da2f0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/577cfd8011ce680166019acad3b78d4d1aec5704","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/577cfd8011ce680166019acad3b78d4d1aec5704","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d3ed78a1bb6abf12aa30b3134c4e506f2a5f8d58"}]},{"sha":"ac021e5cda8755d345731bee5df062757bdc8d0b","node_id":"C_kwDOF83__NoAKGFjMDIxZTVjZGE4NzU1ZDM0NTczMWJlZTVkZjA2Mjc1N2JkYzhkMGI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"c2e5cb0a97d5ca275b81ba07640f0f74610c014d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c2e5cb0a97d5ca275b81ba07640f0f74610c014d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac021e5cda8755d345731bee5df062757bdc8d0b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"577cfd8011ce680166019acad3b78d4d1aec5704","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/577cfd8011ce680166019acad3b78d4d1aec5704","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/577cfd8011ce680166019acad3b78d4d1aec5704"}]},{"sha":"48e890c532fdfe2150006de853719fab3cffdc34","node_id":"C_kwDOF83__NoAKDQ4ZTg5MGM1MzJmZGZlMjE1MDAwNmRlODUzNzE5ZmFiM2NmZmRjMzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"7fd811a9c99d35dcbd83eefde7cec30ff09a741f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7fd811a9c99d35dcbd83eefde7cec30ff09a741f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/48e890c532fdfe2150006de853719fab3cffdc34","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48e890c532fdfe2150006de853719fab3cffdc34","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ac021e5cda8755d345731bee5df062757bdc8d0b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac021e5cda8755d345731bee5df062757bdc8d0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac021e5cda8755d345731bee5df062757bdc8d0b"}]},{"sha":"b97f6a05ba120a65d58d103938db8df9baf4f806","node_id":"C_kwDOF83__NoAKGI5N2Y2YTA1YmExMjBhNjVkNThkMTAzOTM4ZGI4ZGY5YmFmNGY4MDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"fa965ce397d1bf0b1fc5b3c1fa73387f48a8037c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fa965ce397d1bf0b1fc5b3c1fa73387f48a8037c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b97f6a05ba120a65d58d103938db8df9baf4f806","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"48e890c532fdfe2150006de853719fab3cffdc34","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48e890c532fdfe2150006de853719fab3cffdc34","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48e890c532fdfe2150006de853719fab3cffdc34"}]},{"sha":"add7d8dadbca5bc85cc272df8cf61276baf04cd4","node_id":"C_kwDOF83__NoAKGFkZDdkOGRhZGJjYTViYzg1Y2MyNzJkZjhjZjYxMjc2YmFmMDRjZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"3236c22560ed1514a36c1b4b7bf02be114ec7355","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3236c22560ed1514a36c1b4b7bf02be114ec7355"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/add7d8dadbca5bc85cc272df8cf61276baf04cd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b97f6a05ba120a65d58d103938db8df9baf4f806","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b97f6a05ba120a65d58d103938db8df9baf4f806","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b97f6a05ba120a65d58d103938db8df9baf4f806"}]},{"sha":"79f3589b1a2b00e7ad39d538a9e44473864a697d","node_id":"C_kwDOF83__NoAKDc5ZjM1ODliMWEyYjAwZTdhZDM5ZDUzOGE5ZTQ0NDczODY0YTY5N2Q","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"4dc0c89d9a3910531c9318e3c75096436f67a606","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4dc0c89d9a3910531c9318e3c75096436f67a606"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79f3589b1a2b00e7ad39d538a9e44473864a697d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"add7d8dadbca5bc85cc272df8cf61276baf04cd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/add7d8dadbca5bc85cc272df8cf61276baf04cd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/add7d8dadbca5bc85cc272df8cf61276baf04cd4"}]},{"sha":"de5759756a4b88a6da27e6f1d1697373db4da96c","node_id":"C_kwDOF83__NoAKGRlNTc1OTc1NmE0Yjg4YTZkYTI3ZTZmMWQxNjk3MzczZGI0ZGE5NmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:57Z"},"message":"Dummy commit","tree":{"sha":"0da27b42c606d0c01676e63ebc1d4d5a22d39b11","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0da27b42c606d0c01676e63ebc1d4d5a22d39b11"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/de5759756a4b88a6da27e6f1d1697373db4da96c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79f3589b1a2b00e7ad39d538a9e44473864a697d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79f3589b1a2b00e7ad39d538a9e44473864a697d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79f3589b1a2b00e7ad39d538a9e44473864a697d"}]},{"sha":"6ce2f1ca3368168db2046b418e246a4cd9482340","node_id":"C_kwDOF83__NoAKDZjZTJmMWNhMzM2ODE2OGRiMjA0NmI0MThlMjQ2YTRjZDk0ODIzNDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"89291d0cc4c2009ff8ba2c4f5bfcc61c5937d484","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/89291d0cc4c2009ff8ba2c4f5bfcc61c5937d484"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6ce2f1ca3368168db2046b418e246a4cd9482340","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"de5759756a4b88a6da27e6f1d1697373db4da96c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/de5759756a4b88a6da27e6f1d1697373db4da96c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/de5759756a4b88a6da27e6f1d1697373db4da96c"}]},{"sha":"54643679f52ced591752a2f2e0d2f19d61818ce4","node_id":"C_kwDOF83__NoAKDU0NjQzNjc5ZjUyY2VkNTkxNzUyYTJmMmUwZDJmMTlkNjE4MThjZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"4801f0118cfad4ab673cbdf81100f72b88da291d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4801f0118cfad4ab673cbdf81100f72b88da291d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54643679f52ced591752a2f2e0d2f19d61818ce4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6ce2f1ca3368168db2046b418e246a4cd9482340","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6ce2f1ca3368168db2046b418e246a4cd9482340","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6ce2f1ca3368168db2046b418e246a4cd9482340"}]},{"sha":"7768fa4600824dd0b65dd81554cf06f57ce2e636","node_id":"C_kwDOF83__NoAKDc3NjhmYTQ2MDA4MjRkZDBiNjVkZDgxNTU0Y2YwNmY1N2NlMmU2MzY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"2f6ecdfbadfca783e72c3a051a439b83a1258876","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2f6ecdfbadfca783e72c3a051a439b83a1258876"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7768fa4600824dd0b65dd81554cf06f57ce2e636","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54643679f52ced591752a2f2e0d2f19d61818ce4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54643679f52ced591752a2f2e0d2f19d61818ce4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54643679f52ced591752a2f2e0d2f19d61818ce4"}]},{"sha":"c5b694fb9ddd2908939b0bdf644c997587af5322","node_id":"C_kwDOF83__NoAKGM1YjY5NGZiOWRkZDI5MDg5MzliMGJkZjY0NGM5OTc1ODdhZjUzMjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"5dee9d335cff7d52b54ed1e66acfdcb300b0d227","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5dee9d335cff7d52b54ed1e66acfdcb300b0d227"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5b694fb9ddd2908939b0bdf644c997587af5322","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7768fa4600824dd0b65dd81554cf06f57ce2e636","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7768fa4600824dd0b65dd81554cf06f57ce2e636","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7768fa4600824dd0b65dd81554cf06f57ce2e636"}]},{"sha":"32389ecf320569de6f3eb0a721574ba90bc8c751","node_id":"C_kwDOF83__NoAKDMyMzg5ZWNmMzIwNTY5ZGU2ZjNlYjBhNzIxNTc0YmE5MGJjOGM3NTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"ea6dd5157a2001daa0a3d6f78bb23de46e5fd173","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ea6dd5157a2001daa0a3d6f78bb23de46e5fd173"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/32389ecf320569de6f3eb0a721574ba90bc8c751","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c5b694fb9ddd2908939b0bdf644c997587af5322","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5b694fb9ddd2908939b0bdf644c997587af5322","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5b694fb9ddd2908939b0bdf644c997587af5322"}]},{"sha":"7bb612cdc6079b0ada45c2eda67de3c756436cb3","node_id":"C_kwDOF83__NoAKDdiYjYxMmNkYzYwNzliMGFkYTQ1YzJlZGE2N2RlM2M3NTY0MzZjYjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"b82b57b1baaee7e2553d7623c261bffcbee681bc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b82b57b1baaee7e2553d7623c261bffcbee681bc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bb612cdc6079b0ada45c2eda67de3c756436cb3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"32389ecf320569de6f3eb0a721574ba90bc8c751","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/32389ecf320569de6f3eb0a721574ba90bc8c751","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/32389ecf320569de6f3eb0a721574ba90bc8c751"}]},{"sha":"7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","node_id":"C_kwDOF83__NoAKDdiZDYxZTYzMzI1NjU5YTM1MjkxY2IxYmYxYTBjZmRiNmViNTdlZWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"9d54baad426346aa19f395ee31b162bec4571a36","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9d54baad426346aa19f395ee31b162bec4571a36"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7bb612cdc6079b0ada45c2eda67de3c756436cb3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bb612cdc6079b0ada45c2eda67de3c756436cb3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bb612cdc6079b0ada45c2eda67de3c756436cb3"}]},{"sha":"4c8cc3cfe87c45e330c41b0728be267288fe5c02","node_id":"C_kwDOF83__NoAKDRjOGNjM2NmZTg3YzQ1ZTMzMGM0MWIwNzI4YmUyNjcyODhmZTVjMDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:58Z"},"message":"Dummy commit","tree":{"sha":"6201a2b4167b4796468a458aace564384f59a1b1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6201a2b4167b4796468a458aace564384f59a1b1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4c8cc3cfe87c45e330c41b0728be267288fe5c02","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7bd61e63325659a35291cb1bf1a0cfdb6eb57eea"}]},{"sha":"456336e23277759bd12515136da78f7fef5dcae6","node_id":"C_kwDOF83__NoAKDQ1NjMzNmUyMzI3Nzc1OWJkMTI1MTUxMzZkYTc4ZjdmZWY1ZGNhZTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"3d3a700141e833201f7d02769ed4884c2c5e1975","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3d3a700141e833201f7d02769ed4884c2c5e1975"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/456336e23277759bd12515136da78f7fef5dcae6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/456336e23277759bd12515136da78f7fef5dcae6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4c8cc3cfe87c45e330c41b0728be267288fe5c02","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4c8cc3cfe87c45e330c41b0728be267288fe5c02","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4c8cc3cfe87c45e330c41b0728be267288fe5c02"}]},{"sha":"348546d623ee31bace9df6a1aa71604b990527ff","node_id":"C_kwDOF83__NoAKDM0ODU0NmQ2MjNlZTMxYmFjZTlkZjZhMWFhNzE2MDRiOTkwNTI3ZmY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"2c0bb0e914665b718d14a9f7f43151d020c95970","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2c0bb0e914665b718d14a9f7f43151d020c95970"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/348546d623ee31bace9df6a1aa71604b990527ff","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/348546d623ee31bace9df6a1aa71604b990527ff","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"456336e23277759bd12515136da78f7fef5dcae6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/456336e23277759bd12515136da78f7fef5dcae6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/456336e23277759bd12515136da78f7fef5dcae6"}]},{"sha":"ec5c91c29611a67043bd36b4c409fd938dde2e0b","node_id":"C_kwDOF83__NoAKGVjNWM5MWMyOTYxMWE2NzA0M2JkMzZiNGM0MDlmZDkzOGRkZTJlMGI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"4ea6f06a9fad68c4f79ee7df9d869e90155f6338","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4ea6f06a9fad68c4f79ee7df9d869e90155f6338"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ec5c91c29611a67043bd36b4c409fd938dde2e0b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"348546d623ee31bace9df6a1aa71604b990527ff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/348546d623ee31bace9df6a1aa71604b990527ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/348546d623ee31bace9df6a1aa71604b990527ff"}]},{"sha":"a8d51426d8398cdfd67e05d0e522f00cf18d962d","node_id":"C_kwDOF83__NoAKGE4ZDUxNDI2ZDgzOThjZGZkNjdlMDVkMGU1MjJmMDBjZjE4ZDk2MmQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"7747c1b44a85d1d293fcc3a8ba91ebe1ed9c1268","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7747c1b44a85d1d293fcc3a8ba91ebe1ed9c1268"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a8d51426d8398cdfd67e05d0e522f00cf18d962d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ec5c91c29611a67043bd36b4c409fd938dde2e0b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ec5c91c29611a67043bd36b4c409fd938dde2e0b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ec5c91c29611a67043bd36b4c409fd938dde2e0b"}]},{"sha":"c0b2b32fe21f87917b8134e435a9d944a1593eee","node_id":"C_kwDOF83__NoAKGMwYjJiMzJmZTIxZjg3OTE3YjgxMzRlNDM1YTlkOTQ0YTE1OTNlZWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"5572e410e8c4eb4a92a73b29b93626f9b6ae3cc4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5572e410e8c4eb4a92a73b29b93626f9b6ae3cc4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c0b2b32fe21f87917b8134e435a9d944a1593eee","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a8d51426d8398cdfd67e05d0e522f00cf18d962d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a8d51426d8398cdfd67e05d0e522f00cf18d962d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a8d51426d8398cdfd67e05d0e522f00cf18d962d"}]},{"sha":"a795b32e0086bf1e95b73851de4fb2d2fa863c1f","node_id":"C_kwDOF83__NoAKGE3OTViMzJlMDA4NmJmMWU5NWI3Mzg1MWRlNGZiMmQyZmE4NjNjMWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"3bdc6d11c6916bcd6b53e4ff878e64bb882e5180","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3bdc6d11c6916bcd6b53e4ff878e64bb882e5180"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c0b2b32fe21f87917b8134e435a9d944a1593eee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c0b2b32fe21f87917b8134e435a9d944a1593eee","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c0b2b32fe21f87917b8134e435a9d944a1593eee"}]},{"sha":"841284bbd93b36212d3a7dc0efe66029db4ed642","node_id":"C_kwDOF83__NoAKDg0MTI4NGJiZDkzYjM2MjEyZDNhN2RjMGVmZTY2MDI5ZGI0ZWQ2NDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"4bcc4080da7734cba24b06634ac8a4d7a6c1a3a0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4bcc4080da7734cba24b06634ac8a4d7a6c1a3a0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/841284bbd93b36212d3a7dc0efe66029db4ed642","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a795b32e0086bf1e95b73851de4fb2d2fa863c1f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a795b32e0086bf1e95b73851de4fb2d2fa863c1f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a795b32e0086bf1e95b73851de4fb2d2fa863c1f"}]},{"sha":"952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","node_id":"C_kwDOF83__NoAKDk1MmFhMzYzNWY4NGYyYjMyZDE2YWM0Nzc1ZmJkYTM3ZmE1ZTFkZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:44:59Z"},"message":"Dummy commit","tree":{"sha":"79b5850fb119629e322d589bcb0865dc14b341b7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/79b5850fb119629e322d589bcb0865dc14b341b7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"841284bbd93b36212d3a7dc0efe66029db4ed642","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/841284bbd93b36212d3a7dc0efe66029db4ed642","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/841284bbd93b36212d3a7dc0efe66029db4ed642"}]},{"sha":"35bb64a0679da9b688f184f5b90fbccca98b8cf0","node_id":"C_kwDOF83__NoAKDM1YmI2NGEwNjc5ZGE5YjY4OGYxODRmNWI5MGZiY2NjYTk4YjhjZjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"1804cd121682fc6e2a43137218c9469b618dfd23","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1804cd121682fc6e2a43137218c9469b618dfd23"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35bb64a0679da9b688f184f5b90fbccca98b8cf0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/952aa3635f84f2b32d16ac4775fbda37fa5e1dd4"}]},{"sha":"38a549d26370b1e7b5f3425f977194e08dc5fde7","node_id":"C_kwDOF83__NoAKDM4YTU0OWQyNjM3MGIxZTdiNWYzNDI1Zjk3NzE5NGUwOGRjNWZkZTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"3daa68b7261760f3b8aaf2219a2dab2e735dc3b7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3daa68b7261760f3b8aaf2219a2dab2e735dc3b7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/38a549d26370b1e7b5f3425f977194e08dc5fde7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"35bb64a0679da9b688f184f5b90fbccca98b8cf0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/35bb64a0679da9b688f184f5b90fbccca98b8cf0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/35bb64a0679da9b688f184f5b90fbccca98b8cf0"}]},{"sha":"56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","node_id":"C_kwDOF83__NoAKDU2ZDJiODYzZWFmNTU3MGEwYzY1ZWE5YjYzMjZhOTdhYjJlMzljOWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"40c593030da220c8deaf1574aa33261486d4b51b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/40c593030da220c8deaf1574aa33261486d4b51b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"38a549d26370b1e7b5f3425f977194e08dc5fde7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/38a549d26370b1e7b5f3425f977194e08dc5fde7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/38a549d26370b1e7b5f3425f977194e08dc5fde7"}]},{"sha":"713ba2443a4447a1d41355760c895ecc703ec57c","node_id":"C_kwDOF83__NoAKDcxM2JhMjQ0M2E0NDQ3YTFkNDEzNTU3NjBjODk1ZWNjNzAzZWM1N2M","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"5926efe56789a5a9ee9cea599656bdb89b2bc497","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5926efe56789a5a9ee9cea599656bdb89b2bc497"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/713ba2443a4447a1d41355760c895ecc703ec57c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/713ba2443a4447a1d41355760c895ecc703ec57c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/56d2b863eaf5570a0c65ea9b6326a97ab2e39c9e"}]},{"sha":"991dfec2212e29c247349c0a111b9daaacba4e54","node_id":"C_kwDOF83__NoAKDk5MWRmZWMyMjEyZTI5YzI0NzM0OWMwYTExMWI5ZGFhYWNiYTRlNTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"470d5e0317648a9a0e5aba7d37391c6c3cecba37","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/470d5e0317648a9a0e5aba7d37391c6c3cecba37"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/991dfec2212e29c247349c0a111b9daaacba4e54","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/991dfec2212e29c247349c0a111b9daaacba4e54","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"713ba2443a4447a1d41355760c895ecc703ec57c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/713ba2443a4447a1d41355760c895ecc703ec57c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/713ba2443a4447a1d41355760c895ecc703ec57c"}]},{"sha":"27e957c10865d54f442abb9a4db2b2f67548d928","node_id":"C_kwDOF83__NoAKDI3ZTk1N2MxMDg2NWQ1NGY0NDJhYmI5YTRkYjJiMmY2NzU0OGQ5Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"1efe944aad1ff712e310d7d68627973a51f72a0f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1efe944aad1ff712e310d7d68627973a51f72a0f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/27e957c10865d54f442abb9a4db2b2f67548d928","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27e957c10865d54f442abb9a4db2b2f67548d928","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"991dfec2212e29c247349c0a111b9daaacba4e54","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/991dfec2212e29c247349c0a111b9daaacba4e54","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/991dfec2212e29c247349c0a111b9daaacba4e54"}]},{"sha":"f16d666bbaa62e716c0d66caac74d0eabed9dca2","node_id":"C_kwDOF83__NoAKGYxNmQ2NjZiYmFhNjJlNzE2YzBkNjZjYWFjNzRkMGVhYmVkOWRjYTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"698253b7da8df6a37935ddf42e31a378fa107b10","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/698253b7da8df6a37935ddf42e31a378fa107b10"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f16d666bbaa62e716c0d66caac74d0eabed9dca2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"27e957c10865d54f442abb9a4db2b2f67548d928","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27e957c10865d54f442abb9a4db2b2f67548d928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27e957c10865d54f442abb9a4db2b2f67548d928"}]},{"sha":"7dfb8db88bca87267617e2d9f231cdf217241fe7","node_id":"C_kwDOF83__NoAKDdkZmI4ZGI4OGJjYTg3MjY3NjE3ZTJkOWYyMzFjZGYyMTcyNDFmZTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:00Z"},"message":"Dummy commit","tree":{"sha":"0f2f6fc250488cfd4062021d21a50b6e4b9dcd67","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0f2f6fc250488cfd4062021d21a50b6e4b9dcd67"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dfb8db88bca87267617e2d9f231cdf217241fe7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f16d666bbaa62e716c0d66caac74d0eabed9dca2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f16d666bbaa62e716c0d66caac74d0eabed9dca2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f16d666bbaa62e716c0d66caac74d0eabed9dca2"}]},{"sha":"86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","node_id":"C_kwDOF83__NoAKDg2ZTMwZmRmMDJkZWEyZGQ1ZmMzY2RkNDRkZDQ3YmJhMTc4MjczYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"74665de2755706e0a98aedefddf05a064d6f9050","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/74665de2755706e0a98aedefddf05a064d6f9050"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7dfb8db88bca87267617e2d9f231cdf217241fe7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dfb8db88bca87267617e2d9f231cdf217241fe7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dfb8db88bca87267617e2d9f231cdf217241fe7"}]},{"sha":"3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","node_id":"C_kwDOF83__NoAKDNkNDFlNTdmNDRiOWFlZGViMGNlODhjMTc1Yjk5MzdkZTZhZDNjMTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"1a7b295426d5dc94e8eccd9b88700f4995950753","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1a7b295426d5dc94e8eccd9b88700f4995950753"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/86e30fdf02dea2dd5fc3cdd44dd47bba178273a9"}]},{"sha":"c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","node_id":"C_kwDOF83__NoAKGM2NTVjMGYyZDAwNDJlOWU0NWFhNWVkZmVlOWEzMDc2OTBjMGNkOWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"e339a930f697c525214fdef4876dc656c940e667","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e339a930f697c525214fdef4876dc656c940e667"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d41e57f44b9aedeb0ce88c175b9937de6ad3c13"}]},{"sha":"fa830292720ccabc7c199249551291da825e1a90","node_id":"C_kwDOF83__NoAKGZhODMwMjkyNzIwY2NhYmM3YzE5OTI0OTU1MTI5MWRhODI1ZTFhOTA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"0b793573ecdb6789cba81c2fe00e1eb6df948b1d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b793573ecdb6789cba81c2fe00e1eb6df948b1d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa830292720ccabc7c199249551291da825e1a90","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa830292720ccabc7c199249551291da825e1a90","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c655c0f2d0042e9e45aa5edfee9a307690c0cd9e"}]},{"sha":"0b169bf8c51721082d8b4b175557a4fd7a41859e","node_id":"C_kwDOF83__NoAKDBiMTY5YmY4YzUxNzIxMDgyZDhiNGIxNzU1NTdhNGZkN2E0MTg1OWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"e92ed7519ba0954ecbd3b9af771266e6263ed784","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e92ed7519ba0954ecbd3b9af771266e6263ed784"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b169bf8c51721082d8b4b175557a4fd7a41859e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa830292720ccabc7c199249551291da825e1a90","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa830292720ccabc7c199249551291da825e1a90","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa830292720ccabc7c199249551291da825e1a90"}]},{"sha":"9313683ebe3a199a999ddd4435f1f8f577ecbb2b","node_id":"C_kwDOF83__NoAKDkzMTM2ODNlYmUzYTE5OWE5OTlkZGQ0NDM1ZjFmOGY1NzdlY2JiMmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"bedb61d85c7dd955dd610e090f7c541c69bcf302","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bedb61d85c7dd955dd610e090f7c541c69bcf302"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0b169bf8c51721082d8b4b175557a4fd7a41859e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b169bf8c51721082d8b4b175557a4fd7a41859e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b169bf8c51721082d8b4b175557a4fd7a41859e"}]},{"sha":"b6c2bff101779e4b82efc928ce50db4cd3464c4d","node_id":"C_kwDOF83__NoAKGI2YzJiZmYxMDE3NzllNGI4MmVmYzkyOGNlNTBkYjRjZDM0NjRjNGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"c0a3ed4a1a82e3751c98386673f3477df89d23ee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c0a3ed4a1a82e3751c98386673f3477df89d23ee"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b6c2bff101779e4b82efc928ce50db4cd3464c4d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9313683ebe3a199a999ddd4435f1f8f577ecbb2b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9313683ebe3a199a999ddd4435f1f8f577ecbb2b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9313683ebe3a199a999ddd4435f1f8f577ecbb2b"}]},{"sha":"141848de6118a8ec0031d42a239b532e28ba7b20","node_id":"C_kwDOF83__NoAKDE0MTg0OGRlNjExOGE4ZWMwMDMxZDQyYTIzOWI1MzJlMjhiYTdiMjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:01Z"},"message":"Dummy commit","tree":{"sha":"23dad5f42e28a693961cc1bf2aa9b23ae5df1bec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/23dad5f42e28a693961cc1bf2aa9b23ae5df1bec"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/141848de6118a8ec0031d42a239b532e28ba7b20","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/141848de6118a8ec0031d42a239b532e28ba7b20","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b6c2bff101779e4b82efc928ce50db4cd3464c4d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b6c2bff101779e4b82efc928ce50db4cd3464c4d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b6c2bff101779e4b82efc928ce50db4cd3464c4d"}]},{"sha":"746cefc3b695998fca753f27b7937f7b8b0fd73a","node_id":"C_kwDOF83__NoAKDc0NmNlZmMzYjY5NTk5OGZjYTc1M2YyN2I3OTM3ZjdiOGIwZmQ3M2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fe961ba6bd030acdaaad5af65547bfebb95e5b87","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fe961ba6bd030acdaaad5af65547bfebb95e5b87"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/746cefc3b695998fca753f27b7937f7b8b0fd73a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"141848de6118a8ec0031d42a239b532e28ba7b20","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/141848de6118a8ec0031d42a239b532e28ba7b20","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/141848de6118a8ec0031d42a239b532e28ba7b20"}]},{"sha":"3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","node_id":"C_kwDOF83__NoAKDNmOWZmZTcwYmIxZDNlZmNiM2I2ZGJkYTI1MWYzMDM1YjVkOWVlNTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"c8775313f1683f64728b5bf2b8fe13ac392d31e6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c8775313f1683f64728b5bf2b8fe13ac392d31e6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"746cefc3b695998fca753f27b7937f7b8b0fd73a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/746cefc3b695998fca753f27b7937f7b8b0fd73a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/746cefc3b695998fca753f27b7937f7b8b0fd73a"}]},{"sha":"ac81fc9eeaa7ebe9071efe91205570db06a728cb","node_id":"C_kwDOF83__NoAKGFjODFmYzllZWFhN2ViZTkwNzFlZmU5MTIwNTU3MGRiMDZhNzI4Y2I","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"2d52611bc40e1e74308dd0716db200da9c07806f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2d52611bc40e1e74308dd0716db200da9c07806f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac81fc9eeaa7ebe9071efe91205570db06a728cb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3f9ffe70bb1d3efcb3b6dbda251f3035b5d9ee56"}]},{"sha":"f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","node_id":"C_kwDOF83__NoAKGY4MmY4ODRlNDIyY2MwYTNmMjBkMzgwMTZiN2IxYmE5YjhmZDRkZTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"db7d14712f3554f347f319364f3bcd2ab69cd279","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/db7d14712f3554f347f319364f3bcd2ab69cd279"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ac81fc9eeaa7ebe9071efe91205570db06a728cb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ac81fc9eeaa7ebe9071efe91205570db06a728cb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ac81fc9eeaa7ebe9071efe91205570db06a728cb"}]},{"sha":"d81c5623eff68a8c0c5f25827b85655dc611d186","node_id":"C_kwDOF83__NoAKGQ4MWM1NjIzZWZmNjhhOGMwYzVmMjU4MjdiODU2NTVkYzYxMWQxODY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fe4b117b678b53e46fed7717ba42a8b746749782","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fe4b117b678b53e46fed7717ba42a8b746749782"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d81c5623eff68a8c0c5f25827b85655dc611d186","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f82f884e422cc0a3f20d38016b7b1ba9b8fd4de2"}]},{"sha":"9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","node_id":"C_kwDOF83__NoAKDlkYmUxNWFkYjVmNDE0YzFkNDIyYjY1ZTRiMGZiNDM0YWMyYjhhMGM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"1bad7cc557c1d691b024189fc6fae30bfcd8e196","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bad7cc557c1d691b024189fc6fae30bfcd8e196"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d81c5623eff68a8c0c5f25827b85655dc611d186","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d81c5623eff68a8c0c5f25827b85655dc611d186","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d81c5623eff68a8c0c5f25827b85655dc611d186"}]},{"sha":"67402bf06994fb808632d5194c505b3cef667749","node_id":"C_kwDOF83__NoAKDY3NDAyYmYwNjk5NGZiODA4NjMyZDUxOTRjNTA1YjNjZWY2Njc3NDk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:02Z"},"message":"Dummy commit","tree":{"sha":"fc96727b643600198687942640cae3202de0bc3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fc96727b643600198687942640cae3202de0bc3f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/67402bf06994fb808632d5194c505b3cef667749","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67402bf06994fb808632d5194c505b3cef667749","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9dbe15adb5f414c1d422b65e4b0fb434ac2b8a0c"}]},{"sha":"9d9fa3ef63254933653481c5d3b5d17bd827c7a8","node_id":"C_kwDOF83__NoAKDlkOWZhM2VmNjMyNTQ5MzM2NTM0ODFjNWQzYjVkMTdiZDgyN2M3YTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"6b56f029c24b50d23819dc35587ca154f59070a7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6b56f029c24b50d23819dc35587ca154f59070a7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"67402bf06994fb808632d5194c505b3cef667749","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67402bf06994fb808632d5194c505b3cef667749","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67402bf06994fb808632d5194c505b3cef667749"}]},{"sha":"fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","node_id":"C_kwDOF83__NoAKGZhMjJmOWRjZTRhYWY4OWZlOWJkNmEzYjYyOWQ4NjUzYTk5ZjY5NjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"88acfb49e074adebacf3a94eec90ce72d855998f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/88acfb49e074adebacf3a94eec90ce72d855998f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9d9fa3ef63254933653481c5d3b5d17bd827c7a8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9d9fa3ef63254933653481c5d3b5d17bd827c7a8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9d9fa3ef63254933653481c5d3b5d17bd827c7a8"}]},{"sha":"28da794cf3573f21e2d2b7ab67f4b70faa424ef7","node_id":"C_kwDOF83__NoAKDI4ZGE3OTRjZjM1NzNmMjFlMmQyYjdhYjY3ZjRiNzBmYWE0MjRlZjc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"d78999e6316deb9eaacb3eda259d8ef05cdeb100","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d78999e6316deb9eaacb3eda259d8ef05cdeb100"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fa22f9dce4aaf89fe9bd6a3b629d8653a99f6961"}]},{"sha":"dd79321d938d68ff7634c0594d63609a81d08f6e","node_id":"C_kwDOF83__NoAKGRkNzkzMjFkOTM4ZDY4ZmY3NjM0YzA1OTRkNjM2MDlhODFkMDhmNmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"f4e93e721f778a41cf429127b398d6fe5a19e9bf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f4e93e721f778a41cf429127b398d6fe5a19e9bf"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dd79321d938d68ff7634c0594d63609a81d08f6e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"28da794cf3573f21e2d2b7ab67f4b70faa424ef7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28da794cf3573f21e2d2b7ab67f4b70faa424ef7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28da794cf3573f21e2d2b7ab67f4b70faa424ef7"}]},{"sha":"b01cfede232680315b8e776989863016c434c1c4","node_id":"C_kwDOF83__NoAKGIwMWNmZWRlMjMyNjgwMzE1YjhlNzc2OTg5ODYzMDE2YzQzNGMxYzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"980e5f0bf331e9972241c1f9e27d2783a1cff424","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/980e5f0bf331e9972241c1f9e27d2783a1cff424"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b01cfede232680315b8e776989863016c434c1c4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b01cfede232680315b8e776989863016c434c1c4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"dd79321d938d68ff7634c0594d63609a81d08f6e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dd79321d938d68ff7634c0594d63609a81d08f6e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dd79321d938d68ff7634c0594d63609a81d08f6e"}]},{"sha":"6bc380dd03a72ed6b936206410d5d306635baffb","node_id":"C_kwDOF83__NoAKDZiYzM4MGRkMDNhNzJlZDZiOTM2MjA2NDEwZDVkMzA2NjM1YmFmZmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:03Z"},"message":"Dummy commit","tree":{"sha":"905ca3640c73a8eeff596afdadfe54f21a2a7827","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/905ca3640c73a8eeff596afdadfe54f21a2a7827"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6bc380dd03a72ed6b936206410d5d306635baffb","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6bc380dd03a72ed6b936206410d5d306635baffb","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b01cfede232680315b8e776989863016c434c1c4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b01cfede232680315b8e776989863016c434c1c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b01cfede232680315b8e776989863016c434c1c4"}]},{"sha":"e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","node_id":"C_kwDOF83__NoAKGU3ODMwZWFlNjg4ZGVjMGJjZDZiYTE2YzdlYjMxZDA2OWY0Yzc5ZDk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"7cbf5e72517459eaa4e27ab2f9612bc020fb081d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7cbf5e72517459eaa4e27ab2f9612bc020fb081d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6bc380dd03a72ed6b936206410d5d306635baffb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6bc380dd03a72ed6b936206410d5d306635baffb","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6bc380dd03a72ed6b936206410d5d306635baffb"}]},{"sha":"9ead59ffdbd00680efdcd278c945d0190f5431a2","node_id":"C_kwDOF83__NoAKDllYWQ1OWZmZGJkMDA2ODBlZmRjZDI3OGM5NDVkMDE5MGY1NDMxYTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"d4106ae332badffb76ba65d14f573bacdc622bf9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d4106ae332badffb76ba65d14f573bacdc622bf9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9ead59ffdbd00680efdcd278c945d0190f5431a2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e7830eae688dec0bcd6ba16c7eb31d069f4c79d9"}]},{"sha":"bf4f3003d8ca2adca1fa6521e79de2e38fa00085","node_id":"C_kwDOF83__NoAKGJmNGYzMDAzZDhjYTJhZGNhMWZhNjUyMWU3OWRlMmUzOGZhMDAwODU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"108372a18861f1313ea463464fa0556adff6cd2c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/108372a18861f1313ea463464fa0556adff6cd2c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9ead59ffdbd00680efdcd278c945d0190f5431a2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9ead59ffdbd00680efdcd278c945d0190f5431a2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9ead59ffdbd00680efdcd278c945d0190f5431a2"}]},{"sha":"54d57f1f7cd199df49c988724d9b630389964ce8","node_id":"C_kwDOF83__NoAKDU0ZDU3ZjFmN2NkMTk5ZGY0OWM5ODg3MjRkOWI2MzAzODk5NjRjZTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"48622698e104ea5980cad5c132faf25c431ef97b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/48622698e104ea5980cad5c132faf25c431ef97b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54d57f1f7cd199df49c988724d9b630389964ce8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54d57f1f7cd199df49c988724d9b630389964ce8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"bf4f3003d8ca2adca1fa6521e79de2e38fa00085","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bf4f3003d8ca2adca1fa6521e79de2e38fa00085","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bf4f3003d8ca2adca1fa6521e79de2e38fa00085"}]},{"sha":"b65976a868ea2226600ac191d4a63767b514bef0","node_id":"C_kwDOF83__NoAKGI2NTk3NmE4NjhlYTIyMjY2MDBhYzE5MWQ0YTYzNzY3YjUxNGJlZjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"89a20c2ed2e32c6bf161e05441c62873839f7a3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/89a20c2ed2e32c6bf161e05441c62873839f7a3f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b65976a868ea2226600ac191d4a63767b514bef0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b65976a868ea2226600ac191d4a63767b514bef0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54d57f1f7cd199df49c988724d9b630389964ce8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54d57f1f7cd199df49c988724d9b630389964ce8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54d57f1f7cd199df49c988724d9b630389964ce8"}]},{"sha":"8cb55938020bf324697a713ef8341cf74c676473","node_id":"C_kwDOF83__NoAKDhjYjU1OTM4MDIwYmYzMjQ2OTdhNzEzZWY4MzQxY2Y3NGM2NzY0NzM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"90d6190c3c177b8b68a435928a49983ab456bd70","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/90d6190c3c177b8b68a435928a49983ab456bd70"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8cb55938020bf324697a713ef8341cf74c676473","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8cb55938020bf324697a713ef8341cf74c676473","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b65976a868ea2226600ac191d4a63767b514bef0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b65976a868ea2226600ac191d4a63767b514bef0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b65976a868ea2226600ac191d4a63767b514bef0"}]},{"sha":"a67fc27c06fcb20088043e80e5c70f9a7c7f557f","node_id":"C_kwDOF83__NoAKGE2N2ZjMjdjMDZmY2IyMDA4ODA0M2U4MGU1YzcwZjlhN2M3ZjU1N2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"68e4b0159f0da11f7515c9dd474b97231034cd9a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/68e4b0159f0da11f7515c9dd474b97231034cd9a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8cb55938020bf324697a713ef8341cf74c676473","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8cb55938020bf324697a713ef8341cf74c676473","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8cb55938020bf324697a713ef8341cf74c676473"}]},{"sha":"2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","node_id":"C_kwDOF83__NoAKDJkYjczZDllOGI2Yjk1YjA1ODkwZjQ2YTdlZTdiNWI4MGQwMjVjYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:04Z"},"message":"Dummy commit","tree":{"sha":"06b0eeca8e5f85d7c15e450e878dad2dc31547ea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/06b0eeca8e5f85d7c15e450e878dad2dc31547ea"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a67fc27c06fcb20088043e80e5c70f9a7c7f557f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a67fc27c06fcb20088043e80e5c70f9a7c7f557f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a67fc27c06fcb20088043e80e5c70f9a7c7f557f"}]},{"sha":"771cd52d642b567fd401abeeeb73f6a03b7c25d1","node_id":"C_kwDOF83__NoAKDc3MWNkNTJkNjQyYjU2N2ZkNDAxYWJlZWViNzNmNmEwM2I3YzI1ZDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"979d57f875243288b385bd75240c9c458f4e07ba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/979d57f875243288b385bd75240c9c458f4e07ba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/771cd52d642b567fd401abeeeb73f6a03b7c25d1","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2db73d9e8b6b95b05890f46a7ee7b5b80d025ca9"}]},{"sha":"54a311b32085fd8a201f47993987cd3898519913","node_id":"C_kwDOF83__NoAKDU0YTMxMWIzMjA4NWZkOGEyMDFmNDc5OTM5ODdjZDM4OTg1MTk5MTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"0d67f9361497af6f5244d44d6c09b2e66f2f6ee2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0d67f9361497af6f5244d44d6c09b2e66f2f6ee2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/54a311b32085fd8a201f47993987cd3898519913","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54a311b32085fd8a201f47993987cd3898519913","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"771cd52d642b567fd401abeeeb73f6a03b7c25d1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/771cd52d642b567fd401abeeeb73f6a03b7c25d1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/771cd52d642b567fd401abeeeb73f6a03b7c25d1"}]},{"sha":"2d4fe5cac27d329c45335fff21a76cc6f2887a42","node_id":"C_kwDOF83__NoAKDJkNGZlNWNhYzI3ZDMyOWM0NTMzNWZmZjIxYTc2Y2M2ZjI4ODdhNDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"8fadb57323efcca3b534843dc60d7d73ae896585","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8fadb57323efcca3b534843dc60d7d73ae896585"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2d4fe5cac27d329c45335fff21a76cc6f2887a42","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"54a311b32085fd8a201f47993987cd3898519913","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/54a311b32085fd8a201f47993987cd3898519913","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/54a311b32085fd8a201f47993987cd3898519913"}]},{"sha":"1a0c294006f0727c08a8c535d4c35ca9d3a11560","node_id":"C_kwDOF83__NoAKDFhMGMyOTQwMDZmMDcyN2MwOGE4YzUzNWQ0YzM1Y2E5ZDNhMTE1NjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"98758694e1b4f67766769904addeeda09118051e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/98758694e1b4f67766769904addeeda09118051e"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1a0c294006f0727c08a8c535d4c35ca9d3a11560","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2d4fe5cac27d329c45335fff21a76cc6f2887a42","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2d4fe5cac27d329c45335fff21a76cc6f2887a42","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2d4fe5cac27d329c45335fff21a76cc6f2887a42"}]},{"sha":"5fd537309af26ec463652904bb9b4af194f053f9","node_id":"C_kwDOF83__NoAKDVmZDUzNzMwOWFmMjZlYzQ2MzY1MjkwNGJiOWI0YWYxOTRmMDUzZjk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"783b9b4e10c56fa33fa6b65be1fb5dd64ef4ad52","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/783b9b4e10c56fa33fa6b65be1fb5dd64ef4ad52"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5fd537309af26ec463652904bb9b4af194f053f9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5fd537309af26ec463652904bb9b4af194f053f9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1a0c294006f0727c08a8c535d4c35ca9d3a11560","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1a0c294006f0727c08a8c535d4c35ca9d3a11560","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1a0c294006f0727c08a8c535d4c35ca9d3a11560"}]},{"sha":"5850a11ff295071daa92b2e0ae3e9351e555e22a","node_id":"C_kwDOF83__NoAKDU4NTBhMTFmZjI5NTA3MWRhYTkyYjJlMGFlM2U5MzUxZTU1NWUyMmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"8c71ecf787f5275b75447146d6e79ae612a2c183","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8c71ecf787f5275b75447146d6e79ae612a2c183"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5850a11ff295071daa92b2e0ae3e9351e555e22a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5fd537309af26ec463652904bb9b4af194f053f9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5fd537309af26ec463652904bb9b4af194f053f9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5fd537309af26ec463652904bb9b4af194f053f9"}]},{"sha":"f414411be9156696683ecf374478379ae1e65799","node_id":"C_kwDOF83__NoAKGY0MTQ0MTFiZTkxNTY2OTY2ODNlY2YzNzQ0NzgzNzlhZTFlNjU3OTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"d73a882c8f6f1b7f5ead65b5ec6f377810be5317","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d73a882c8f6f1b7f5ead65b5ec6f377810be5317"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f414411be9156696683ecf374478379ae1e65799","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f414411be9156696683ecf374478379ae1e65799","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5850a11ff295071daa92b2e0ae3e9351e555e22a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5850a11ff295071daa92b2e0ae3e9351e555e22a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5850a11ff295071daa92b2e0ae3e9351e555e22a"}]},{"sha":"9494846e873fba740874ec7ecadce4a6d00f2321","node_id":"C_kwDOF83__NoAKDk0OTQ4NDZlODczZmJhNzQwODc0ZWM3ZWNhZGNlNGE2ZDAwZjIzMjE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:05Z"},"message":"Dummy commit","tree":{"sha":"90f6324360eb960205133c9824ba404cadbf5207","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/90f6324360eb960205133c9824ba404cadbf5207"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9494846e873fba740874ec7ecadce4a6d00f2321","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9494846e873fba740874ec7ecadce4a6d00f2321","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f414411be9156696683ecf374478379ae1e65799","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f414411be9156696683ecf374478379ae1e65799","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f414411be9156696683ecf374478379ae1e65799"}]},{"sha":"140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","node_id":"C_kwDOF83__NoAKDE0MGMzM2VjODI0OWE0YTFlZmUyZmZjOGJjYzNlNGI1Zjg0Y2JjNWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"d912a3b26e30a7ffa5d679ac528841905c31b982","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d912a3b26e30a7ffa5d679ac528841905c31b982"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9494846e873fba740874ec7ecadce4a6d00f2321","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9494846e873fba740874ec7ecadce4a6d00f2321","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9494846e873fba740874ec7ecadce4a6d00f2321"}]},{"sha":"965c832e10ac29e3c0f1b91fbb5f06891189f011","node_id":"C_kwDOF83__NoAKDk2NWM4MzJlMTBhYzI5ZTNjMGYxYjkxZmJiNWYwNjg5MTE4OWYwMTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"055491f8f5a4f7b6dba92bca653c2fe4a36e01a1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/055491f8f5a4f7b6dba92bca653c2fe4a36e01a1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/965c832e10ac29e3c0f1b91fbb5f06891189f011","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/140c33ec8249a4a1efe2ffc8bcc3e4b5f84cbc5f"}]},{"sha":"33bab99045167f9b921bd150ec6b92a07cabbb68","node_id":"C_kwDOF83__NoAKDMzYmFiOTkwNDUxNjdmOWI5MjFiZDE1MGVjNmI5MmEwN2NhYmJiNjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"414bcaafd60db705603d60bdc727f6bd4dde4433","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/414bcaafd60db705603d60bdc727f6bd4dde4433"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/33bab99045167f9b921bd150ec6b92a07cabbb68","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"965c832e10ac29e3c0f1b91fbb5f06891189f011","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/965c832e10ac29e3c0f1b91fbb5f06891189f011","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/965c832e10ac29e3c0f1b91fbb5f06891189f011"}]},{"sha":"d53b9bd64685138bda5b058402f47aa23b2f4e1e","node_id":"C_kwDOF83__NoAKGQ1M2I5YmQ2NDY4NTEzOGJkYTViMDU4NDAyZjQ3YWEyM2IyZjRlMWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"0b3a284b618aba7b17669dc6146235846bceceec","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b3a284b618aba7b17669dc6146235846bceceec"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d53b9bd64685138bda5b058402f47aa23b2f4e1e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"33bab99045167f9b921bd150ec6b92a07cabbb68","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/33bab99045167f9b921bd150ec6b92a07cabbb68","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/33bab99045167f9b921bd150ec6b92a07cabbb68"}]}] + +https +GET +api.github.com +None +/repositories/399376380/pulls/18/commits?per_page=100&page=2 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"cc6c9a3277574fc43159e9d12084a6323e186f7d64465a34a66df5534d1ffba2"'), ('Last-Modified', 'Tue, 16 Apr 2024 13:07:28 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="prev", ; rel="next", ; rel="last", ; rel="first"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4333'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '667'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '852C:29BB20:84F50F4:85A2D28:661E79FE')] +[{"sha":"989900e5eb2a5260f308b0b1818139704e5888ae","node_id":"C_kwDOF83__NoAKDk4OTkwMGU1ZWIyYTUyNjBmMzA4YjBiMTgxODEzOTcwNGU1ODg4YWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"7038be5b17b879c1212a5487c56c4cb7cca22d5c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7038be5b17b879c1212a5487c56c4cb7cca22d5c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/989900e5eb2a5260f308b0b1818139704e5888ae","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/989900e5eb2a5260f308b0b1818139704e5888ae","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d53b9bd64685138bda5b058402f47aa23b2f4e1e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d53b9bd64685138bda5b058402f47aa23b2f4e1e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d53b9bd64685138bda5b058402f47aa23b2f4e1e"}]},{"sha":"e11e6666b3cafc148568d7e58d46bcaf9e0f2143","node_id":"C_kwDOF83__NoAKGUxMWU2NjY2YjNjYWZjMTQ4NTY4ZDdlNThkNDZiY2FmOWUwZjIxNDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"bdcab15b193a509725860b74e6172db9c9e0442d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/bdcab15b193a509725860b74e6172db9c9e0442d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"989900e5eb2a5260f308b0b1818139704e5888ae","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/989900e5eb2a5260f308b0b1818139704e5888ae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/989900e5eb2a5260f308b0b1818139704e5888ae"}]},{"sha":"f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","node_id":"C_kwDOF83__NoAKGY0YTM5Y2E2NDQyZTdkNzgzZDdkNTdkOGNkZGY5OGViZjkwY2MxNDg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"3b33e28e611043e355d0a046a9ec8f1ed60cde92","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3b33e28e611043e355d0a046a9ec8f1ed60cde92"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e11e6666b3cafc148568d7e58d46bcaf9e0f2143","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e11e6666b3cafc148568d7e58d46bcaf9e0f2143","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e11e6666b3cafc148568d7e58d46bcaf9e0f2143"}]},{"sha":"94c509c1d2433ff6733e6d5e555fd0f9af47667a","node_id":"C_kwDOF83__NoAKDk0YzUwOWMxZDI0MzNmZjY3MzNlNmQ1ZTU1NWZkMGY5YWY0NzY2N2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:06Z"},"message":"Dummy commit","tree":{"sha":"faf236dc1d98b0c0e791036ffec66bd188269494","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/faf236dc1d98b0c0e791036ffec66bd188269494"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/94c509c1d2433ff6733e6d5e555fd0f9af47667a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f4a39ca6442e7d783d7d57d8cddf98ebf90cc148"}]},{"sha":"b1da2ff5d37ce752da86c15bd721b990f72d2204","node_id":"C_kwDOF83__NoAKGIxZGEyZmY1ZDM3Y2U3NTJkYTg2YzE1YmQ3MjFiOTkwZjcyZDIyMDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"494757ef627490593e82cb4e7f6441f313cd22b1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/494757ef627490593e82cb4e7f6441f313cd22b1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1da2ff5d37ce752da86c15bd721b990f72d2204","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"94c509c1d2433ff6733e6d5e555fd0f9af47667a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/94c509c1d2433ff6733e6d5e555fd0f9af47667a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/94c509c1d2433ff6733e6d5e555fd0f9af47667a"}]},{"sha":"b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","node_id":"C_kwDOF83__NoAKGI5YTRhOTVhNzY2OWJiNjg4ZWFmOWM5OWQ3NDE2MTViZGViOWEzYmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"5d5c995d45b83a5223abbd798c13cc6eec188762","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5d5c995d45b83a5223abbd798c13cc6eec188762"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b1da2ff5d37ce752da86c15bd721b990f72d2204","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1da2ff5d37ce752da86c15bd721b990f72d2204","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1da2ff5d37ce752da86c15bd721b990f72d2204"}]},{"sha":"7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","node_id":"C_kwDOF83__NoAKDdjMDlkZDcxYTVmOWVlYTYwNjVkMWJjYTI1NjNmZDBiYTI2Y2IzMWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"ce6e200389ac6b83ec810fa348f21da113ab39ad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ce6e200389ac6b83ec810fa348f21da113ab39ad"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b9a4a95a7669bb688eaf9c99d741615bdeb9a3be"}]},{"sha":"8138ac02f7370f2b3e0ba18eb326231f3dc25767","node_id":"C_kwDOF83__NoAKDgxMzhhYzAyZjczNzBmMmIzZTBiYTE4ZWIzMjYyMzFmM2RjMjU3Njc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7b370eb3d1ba22879377f043473d4a71704097a2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7b370eb3d1ba22879377f043473d4a71704097a2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8138ac02f7370f2b3e0ba18eb326231f3dc25767","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7c09dd71a5f9eea6065d1bca2563fd0ba26cb31f"}]},{"sha":"4342dab36ead5f115ab89eb5d20d33b00afa67dc","node_id":"C_kwDOF83__NoAKDQzNDJkYWIzNmVhZDVmMTE1YWI4OWViNWQyMGQzM2IwMGFmYTY3ZGM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7173a5c3984e3511ad730752432cbdec0b21de35","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7173a5c3984e3511ad730752432cbdec0b21de35"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4342dab36ead5f115ab89eb5d20d33b00afa67dc","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8138ac02f7370f2b3e0ba18eb326231f3dc25767","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8138ac02f7370f2b3e0ba18eb326231f3dc25767","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8138ac02f7370f2b3e0ba18eb326231f3dc25767"}]},{"sha":"a3a61e5788ec64eff9d219dd89a0e9168a21941f","node_id":"C_kwDOF83__NoAKGEzYTYxZTU3ODhlYzY0ZWZmOWQyMTlkZDg5YTBlOTE2OGEyMTk0MWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"7ee0271301886bf533e5dbfe15c901528a4d669f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7ee0271301886bf533e5dbfe15c901528a4d669f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3a61e5788ec64eff9d219dd89a0e9168a21941f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4342dab36ead5f115ab89eb5d20d33b00afa67dc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4342dab36ead5f115ab89eb5d20d33b00afa67dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4342dab36ead5f115ab89eb5d20d33b00afa67dc"}]},{"sha":"e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","node_id":"C_kwDOF83__NoAKGUzYTQ1MWI3NTJmZDg0M2U2OWE5ZjJjZDFjYmIwZGNjMDYwYmE0ZDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"26f2c4a159165b78eb6ff2080811ca2115476818","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/26f2c4a159165b78eb6ff2080811ca2115476818"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3a61e5788ec64eff9d219dd89a0e9168a21941f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3a61e5788ec64eff9d219dd89a0e9168a21941f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3a61e5788ec64eff9d219dd89a0e9168a21941f"}]},{"sha":"0d5119e4905a0a36a535f2578ce96b41d687f63a","node_id":"C_kwDOF83__NoAKDBkNTExOWU0OTA1YTBhMzZhNTM1ZjI1NzhjZTk2YjQxZDY4N2Y2M2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:07Z"},"message":"Dummy commit","tree":{"sha":"aac2bebe9d2ab5fc5f7b10be48b4716cb13297a0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/aac2bebe9d2ab5fc5f7b10be48b4716cb13297a0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0d5119e4905a0a36a535f2578ce96b41d687f63a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e3a451b752fd843e69a9f2cd1cbb0dcc060ba4d0"}]},{"sha":"26d5494b0ed51567d0f58fa3362caf3de1387fb4","node_id":"C_kwDOF83__NoAKDI2ZDU0OTRiMGVkNTE1NjdkMGY1OGZhMzM2MmNhZjNkZTEzODdmYjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"49b03bdae56c36c1daeabb793840f917af28de58","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/49b03bdae56c36c1daeabb793840f917af28de58"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/26d5494b0ed51567d0f58fa3362caf3de1387fb4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0d5119e4905a0a36a535f2578ce96b41d687f63a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0d5119e4905a0a36a535f2578ce96b41d687f63a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0d5119e4905a0a36a535f2578ce96b41d687f63a"}]},{"sha":"c55f434953618d3ee909a82555a2c2e8fe31b8e4","node_id":"C_kwDOF83__NoAKGM1NWY0MzQ5NTM2MThkM2VlOTA5YTgyNTU1YTJjMmU4ZmUzMWI4ZTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"fd665bea395e2acee2d44f7a4540bab6f911f9aa","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/fd665bea395e2acee2d44f7a4540bab6f911f9aa"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c55f434953618d3ee909a82555a2c2e8fe31b8e4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"26d5494b0ed51567d0f58fa3362caf3de1387fb4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/26d5494b0ed51567d0f58fa3362caf3de1387fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/26d5494b0ed51567d0f58fa3362caf3de1387fb4"}]},{"sha":"343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","node_id":"C_kwDOF83__NoAKDM0M2U1ZTMyNDhjYjFmM2E5MjlhZDVlZmVmZmJlMDEzN2Q1ZjRmYWQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"531aef925460e634a0ddbb4bc58295960a8f18e0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/531aef925460e634a0ddbb4bc58295960a8f18e0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c55f434953618d3ee909a82555a2c2e8fe31b8e4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c55f434953618d3ee909a82555a2c2e8fe31b8e4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c55f434953618d3ee909a82555a2c2e8fe31b8e4"}]},{"sha":"93e8596aa02ca43bb0a2f4679cb998b842585b99","node_id":"C_kwDOF83__NoAKDkzZTg1OTZhYTAyY2E0M2JiMGEyZjQ2NzljYjk5OGI4NDI1ODViOTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"0d20a85ba8eed6073b9bdb2d3e4e52a1919a9bf2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0d20a85ba8eed6073b9bdb2d3e4e52a1919a9bf2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93e8596aa02ca43bb0a2f4679cb998b842585b99","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/343e5e3248cb1f3a929ad5efeffbe0137d5f4fad"}]},{"sha":"93dd83317c6f5c690ddab5f833e121a7aa7e9958","node_id":"C_kwDOF83__NoAKDkzZGQ4MzMxN2M2ZjVjNjkwZGRhYjVmODMzZTEyMWE3YWE3ZTk5NTg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"d8417612b327676d69a2018e5b36901ebf8c8177","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d8417612b327676d69a2018e5b36901ebf8c8177"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93dd83317c6f5c690ddab5f833e121a7aa7e9958","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"93e8596aa02ca43bb0a2f4679cb998b842585b99","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93e8596aa02ca43bb0a2f4679cb998b842585b99","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93e8596aa02ca43bb0a2f4679cb998b842585b99"}]},{"sha":"7dde5a4c24bfee4440e1eb74d380b3ed7f988714","node_id":"C_kwDOF83__NoAKDdkZGU1YTRjMjRiZmVlNDQ0MGUxZWI3NGQzODBiM2VkN2Y5ODg3MTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"36cb87cda2ac8ecc784e5f665a1af9df07c30623","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/36cb87cda2ac8ecc784e5f665a1af9df07c30623"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"93dd83317c6f5c690ddab5f833e121a7aa7e9958","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/93dd83317c6f5c690ddab5f833e121a7aa7e9958","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/93dd83317c6f5c690ddab5f833e121a7aa7e9958"}]},{"sha":"6b3eaceed1efbb6412cd414cf42c11b523d43b46","node_id":"C_kwDOF83__NoAKDZiM2VhY2VlZDFlZmJiNjQxMmNkNDE0Y2Y0MmMxMWI1MjNkNDNiNDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:08Z"},"message":"Dummy commit","tree":{"sha":"88ff131e4015879f9679bb45e5ac3b927e0e2071","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/88ff131e4015879f9679bb45e5ac3b927e0e2071"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b3eaceed1efbb6412cd414cf42c11b523d43b46","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7dde5a4c24bfee4440e1eb74d380b3ed7f988714","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7dde5a4c24bfee4440e1eb74d380b3ed7f988714","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7dde5a4c24bfee4440e1eb74d380b3ed7f988714"}]},{"sha":"a42445818e0e4087aeca09673ee6977864fe01ef","node_id":"C_kwDOF83__NoAKGE0MjQ0NTgxOGUwZTQwODdhZWNhMDk2NzNlZTY5Nzc4NjRmZTAxZWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"7854f0fe838743b86eaaf5d8f03836b38a18f743","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7854f0fe838743b86eaaf5d8f03836b38a18f743"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a42445818e0e4087aeca09673ee6977864fe01ef","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a42445818e0e4087aeca09673ee6977864fe01ef","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6b3eaceed1efbb6412cd414cf42c11b523d43b46","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b3eaceed1efbb6412cd414cf42c11b523d43b46","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b3eaceed1efbb6412cd414cf42c11b523d43b46"}]},{"sha":"2e92add26d5813078727a617884b9a3ae30e3de9","node_id":"C_kwDOF83__NoAKDJlOTJhZGQyNmQ1ODEzMDc4NzI3YTYxNzg4NGI5YTNhZTMwZTNkZTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"84c9d817f10cc927b04b64ea54a0534cf46d9f37","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/84c9d817f10cc927b04b64ea54a0534cf46d9f37"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2e92add26d5813078727a617884b9a3ae30e3de9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e92add26d5813078727a617884b9a3ae30e3de9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a42445818e0e4087aeca09673ee6977864fe01ef","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a42445818e0e4087aeca09673ee6977864fe01ef","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a42445818e0e4087aeca09673ee6977864fe01ef"}]},{"sha":"c3338ae6aa615c78f5507d315c046d9e82bbce0d","node_id":"C_kwDOF83__NoAKGMzMzM4YWU2YWE2MTVjNzhmNTUwN2QzMTVjMDQ2ZDllODJiYmNlMGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"8f5c543505020a19984f1b3c27803420a1ab4db4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8f5c543505020a19984f1b3c27803420a1ab4db4"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c3338ae6aa615c78f5507d315c046d9e82bbce0d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2e92add26d5813078727a617884b9a3ae30e3de9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e92add26d5813078727a617884b9a3ae30e3de9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e92add26d5813078727a617884b9a3ae30e3de9"}]},{"sha":"fda1d3579f11ce0f851c037b0ac50fb641d79f11","node_id":"C_kwDOF83__NoAKGZkYTFkMzU3OWYxMWNlMGY4NTFjMDM3YjBhYzUwZmI2NDFkNzlmMTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"aa5acbc52f19da9cc5e7c423ec8056ac0069b36b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/aa5acbc52f19da9cc5e7c423ec8056ac0069b36b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fda1d3579f11ce0f851c037b0ac50fb641d79f11","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c3338ae6aa615c78f5507d315c046d9e82bbce0d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c3338ae6aa615c78f5507d315c046d9e82bbce0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c3338ae6aa615c78f5507d315c046d9e82bbce0d"}]},{"sha":"c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","node_id":"C_kwDOF83__NoAKGM0MWQ2OWMwODAwZjdjNWFhMWM3YzVmMGZhNjAwZjk0ZjNlM2JhNDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"b0680713892d36ec0e70b81eb1983f23687d6bb6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b0680713892d36ec0e70b81eb1983f23687d6bb6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fda1d3579f11ce0f851c037b0ac50fb641d79f11","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fda1d3579f11ce0f851c037b0ac50fb641d79f11","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fda1d3579f11ce0f851c037b0ac50fb641d79f11"}]},{"sha":"5de437bf09655fb67fa7f0ddecf969f2635db32e","node_id":"C_kwDOF83__NoAKDVkZTQzN2JmMDk2NTVmYjY3ZmE3ZjBkZGVjZjk2OWYyNjM1ZGIzMmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"93b445e1aa39c94b425869cb073cd1f548f02652","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/93b445e1aa39c94b425869cb073cd1f548f02652"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5de437bf09655fb67fa7f0ddecf969f2635db32e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c41d69c0800f7c5aa1c7c5f0fa600f94f3e3ba41"}]},{"sha":"70d4a3979fca7c6983d73f89249f1a072b6939f3","node_id":"C_kwDOF83__NoAKDcwZDRhMzk3OWZjYTdjNjk4M2Q3M2Y4OTI0OWYxYTA3MmI2OTM5ZjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:09Z"},"message":"Dummy commit","tree":{"sha":"b63b69b729e943f7fb61615e2444f9d2d67a3749","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b63b69b729e943f7fb61615e2444f9d2d67a3749"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/70d4a3979fca7c6983d73f89249f1a072b6939f3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5de437bf09655fb67fa7f0ddecf969f2635db32e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5de437bf09655fb67fa7f0ddecf969f2635db32e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5de437bf09655fb67fa7f0ddecf969f2635db32e"}]},{"sha":"5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","node_id":"C_kwDOF83__NoAKDUzOTJlNjg2MzBmOGMxZjNlNGIyOTVlYTgwODMxYzZhOWNhYTRkYzI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"0c7a5093ceec2d16578988ff066d687796356fd8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0c7a5093ceec2d16578988ff066d687796356fd8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"70d4a3979fca7c6983d73f89249f1a072b6939f3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/70d4a3979fca7c6983d73f89249f1a072b6939f3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/70d4a3979fca7c6983d73f89249f1a072b6939f3"}]},{"sha":"66ead66f52fd286f124c32aa3884ae1ad36f3963","node_id":"C_kwDOF83__NoAKDY2ZWFkNjZmNTJmZDI4NmYxMjRjMzJhYTM4ODRhZTFhZDM2ZjM5NjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"cdf1aa4a83b6535a283870123b95d902ac55135d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/cdf1aa4a83b6535a283870123b95d902ac55135d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/66ead66f52fd286f124c32aa3884ae1ad36f3963","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5392e68630f8c1f3e4b295ea80831c6a9caa4dc2"}]},{"sha":"b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","node_id":"C_kwDOF83__NoAKGIxZThjOGM3ZmEyMjhkM2IzYmExZjBiNDlkNWFiZjYzNTFhYzgxM2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"372da138c6830d65620ae9f01ade021c385a8b55","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/372da138c6830d65620ae9f01ade021c385a8b55"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"66ead66f52fd286f124c32aa3884ae1ad36f3963","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/66ead66f52fd286f124c32aa3884ae1ad36f3963","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/66ead66f52fd286f124c32aa3884ae1ad36f3963"}]},{"sha":"3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","node_id":"C_kwDOF83__NoAKDNiNTE5NWFhODBhNzNmZjE3ZWJmMGE0YjUzNTUwY2VmYjcwNTZiYTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"0e63cb7730405421e952d8d865db85b8f637fabe","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0e63cb7730405421e952d8d865db85b8f637fabe"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1e8c8c7fa228d3b3ba1f0b49d5abf6351ac813a"}]},{"sha":"4d570c74cab565cd7e2b6139e5a57f92b7b886be","node_id":"C_kwDOF83__NoAKDRkNTcwYzc0Y2FiNTY1Y2Q3ZTJiNjEzOWU1YTU3ZjkyYjdiODg2YmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"ee704a8f97195f8ca95775a9223794c9a107ea79","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ee704a8f97195f8ca95775a9223794c9a107ea79"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4d570c74cab565cd7e2b6139e5a57f92b7b886be","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3b5195aa80a73ff17ebf0a4b53550cefb7056ba9"}]},{"sha":"e21f41004058e91d8dbb3caff061a097ea008911","node_id":"C_kwDOF83__NoAKGUyMWY0MTAwNDA1OGU5MWQ4ZGJiM2NhZmYwNjFhMDk3ZWEwMDg5MTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"45dd732b0501bfce418a2a17fa678bfe3f475e7d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/45dd732b0501bfce418a2a17fa678bfe3f475e7d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e21f41004058e91d8dbb3caff061a097ea008911","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e21f41004058e91d8dbb3caff061a097ea008911","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4d570c74cab565cd7e2b6139e5a57f92b7b886be","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4d570c74cab565cd7e2b6139e5a57f92b7b886be","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4d570c74cab565cd7e2b6139e5a57f92b7b886be"}]},{"sha":"1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","node_id":"C_kwDOF83__NoAKDE1NTlmZTcxMjk1Y2EzNmRjYzZmYTNlN2FiN2JiZmQ4OGE4MWQ4NmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"4cd94077797f1d89c924cce427088827d9a2c01d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/4cd94077797f1d89c924cce427088827d9a2c01d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e21f41004058e91d8dbb3caff061a097ea008911","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e21f41004058e91d8dbb3caff061a097ea008911","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e21f41004058e91d8dbb3caff061a097ea008911"}]},{"sha":"b10758b37d2f7b8054f84e716323ef01113bdc5a","node_id":"C_kwDOF83__NoAKGIxMDc1OGIzN2QyZjdiODA1NGY4NGU3MTYzMjNlZjAxMTEzYmRjNWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:10Z"},"message":"Dummy commit","tree":{"sha":"940c014b837d2d1bb87000f1f83bc939bbfccac2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/940c014b837d2d1bb87000f1f83bc939bbfccac2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b10758b37d2f7b8054f84e716323ef01113bdc5a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1559fe71295ca36dcc6fa3e7ab7bbfd88a81d86c"}]},{"sha":"ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","node_id":"C_kwDOF83__NoAKGVhNmFjYjFhMTE4OGIwMWRkMWViYmJkNjE2OWE1Yjg0NWQ1ZWNkZDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"0b36fcbd31c164b1f6c77ba79647caec104fae68","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0b36fcbd31c164b1f6c77ba79647caec104fae68"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b10758b37d2f7b8054f84e716323ef01113bdc5a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b10758b37d2f7b8054f84e716323ef01113bdc5a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b10758b37d2f7b8054f84e716323ef01113bdc5a"}]},{"sha":"0e617968795f452376ad263cbe1a5e4af8780302","node_id":"C_kwDOF83__NoAKDBlNjE3OTY4Nzk1ZjQ1MjM3NmFkMjYzY2JlMWE1ZTRhZjg3ODAzMDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"d5788b203ca5cf6d33969afdb0fb85e46d6c96ab","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d5788b203ca5cf6d33969afdb0fb85e46d6c96ab"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0e617968795f452376ad263cbe1a5e4af8780302","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e617968795f452376ad263cbe1a5e4af8780302","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea6acb1a1188b01dd1ebbbd6169a5b845d5ecdd0"}]},{"sha":"273452e7560cb359d5f856bf0020c2527af8d40f","node_id":"C_kwDOF83__NoAKDI3MzQ1MmU3NTYwY2IzNTlkNWY4NTZiZjAwMjBjMjUyN2FmOGQ0MGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"65610af9a75b6eaac4da5da637d5489f2e82bbba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/65610af9a75b6eaac4da5da637d5489f2e82bbba"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/273452e7560cb359d5f856bf0020c2527af8d40f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/273452e7560cb359d5f856bf0020c2527af8d40f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0e617968795f452376ad263cbe1a5e4af8780302","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e617968795f452376ad263cbe1a5e4af8780302","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e617968795f452376ad263cbe1a5e4af8780302"}]},{"sha":"7694958540750fe64b9271a4beb0c7d929bf7dff","node_id":"C_kwDOF83__NoAKDc2OTQ5NTg1NDA3NTBmZTY0YjkyNzFhNGJlYjBjN2Q5MjliZjdkZmY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"82d37f6bd6bebdc16b3379661bc0d902cb432ee7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/82d37f6bd6bebdc16b3379661bc0d902cb432ee7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7694958540750fe64b9271a4beb0c7d929bf7dff","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"273452e7560cb359d5f856bf0020c2527af8d40f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/273452e7560cb359d5f856bf0020c2527af8d40f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/273452e7560cb359d5f856bf0020c2527af8d40f"}]},{"sha":"b37681e6cd269af256fbc9834ad8258389ae0a3b","node_id":"C_kwDOF83__NoAKGIzNzY4MWU2Y2QyNjlhZjI1NmZiYzk4MzRhZDgyNTgzODlhZTBhM2I","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"ce22b471d5d2ed59deb1bde24fb3bd9c03272f74","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ce22b471d5d2ed59deb1bde24fb3bd9c03272f74"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b37681e6cd269af256fbc9834ad8258389ae0a3b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7694958540750fe64b9271a4beb0c7d929bf7dff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7694958540750fe64b9271a4beb0c7d929bf7dff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7694958540750fe64b9271a4beb0c7d929bf7dff"}]},{"sha":"37d7bdc1af3512d1d8752e4319c103392a133d03","node_id":"C_kwDOF83__NoAKDM3ZDdiZGMxYWYzNTEyZDFkODc1MmU0MzE5YzEwMzM5MmExMzNkMDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"135c2f826bc4c2011cf9cb123daeafef4214a0d8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/135c2f826bc4c2011cf9cb123daeafef4214a0d8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/37d7bdc1af3512d1d8752e4319c103392a133d03","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b37681e6cd269af256fbc9834ad8258389ae0a3b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b37681e6cd269af256fbc9834ad8258389ae0a3b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b37681e6cd269af256fbc9834ad8258389ae0a3b"}]},{"sha":"02440e727939b320077b2552cd1e2819122762e6","node_id":"C_kwDOF83__NoAKDAyNDQwZTcyNzkzOWIzMjAwNzdiMjU1MmNkMWUyODE5MTIyNzYyZTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"205cb3059480e23ed0cd18e76d0224c4a417f539","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/205cb3059480e23ed0cd18e76d0224c4a417f539"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/02440e727939b320077b2552cd1e2819122762e6","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/02440e727939b320077b2552cd1e2819122762e6","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"37d7bdc1af3512d1d8752e4319c103392a133d03","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/37d7bdc1af3512d1d8752e4319c103392a133d03","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/37d7bdc1af3512d1d8752e4319c103392a133d03"}]},{"sha":"cf8a20fe025a120a38033327b45213f75a30ebaf","node_id":"C_kwDOF83__NoAKGNmOGEyMGZlMDI1YTEyMGEzODAzMzMyN2I0NTIxM2Y3NWEzMGViYWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:11Z"},"message":"Dummy commit","tree":{"sha":"486c6fb99b1cc8dc4c6f5767d126eb13aad872ed","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/486c6fb99b1cc8dc4c6f5767d126eb13aad872ed"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/cf8a20fe025a120a38033327b45213f75a30ebaf","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"02440e727939b320077b2552cd1e2819122762e6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/02440e727939b320077b2552cd1e2819122762e6","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/02440e727939b320077b2552cd1e2819122762e6"}]},{"sha":"2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","node_id":"C_kwDOF83__NoAKDJlN2UzZTg5MTBiMzM0ZGM3ZWQwOTJhYzU3ZjVlYjk4YzhkMmRhMzA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"958bfe4b42cefb9a05a286b6aff678800b41cf77","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/958bfe4b42cefb9a05a286b6aff678800b41cf77"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"cf8a20fe025a120a38033327b45213f75a30ebaf","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/cf8a20fe025a120a38033327b45213f75a30ebaf","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/cf8a20fe025a120a38033327b45213f75a30ebaf"}]},{"sha":"72c450fe9fad9b732c752fda13eae5358150ac6c","node_id":"C_kwDOF83__NoAKDcyYzQ1MGZlOWZhZDliNzMyYzc1MmZkYTEzZWFlNTM1ODE1MGFjNmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"e3240da5e3d8830ec75464d54f4086055aca6818","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e3240da5e3d8830ec75464d54f4086055aca6818"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/72c450fe9fad9b732c752fda13eae5358150ac6c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2e7e3e8910b334dc7ed092ac57f5eb98c8d2da30"}]},{"sha":"4918fb6875bad67ed11a790b5c1bfe92a832fe2a","node_id":"C_kwDOF83__NoAKDQ5MThmYjY4NzViYWQ2N2VkMTFhNzkwYjVjMWJmZTkyYTgzMmZlMmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"e2e914419a2c8ebc16b720e183468948811227e5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e2e914419a2c8ebc16b720e183468948811227e5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"72c450fe9fad9b732c752fda13eae5358150ac6c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/72c450fe9fad9b732c752fda13eae5358150ac6c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/72c450fe9fad9b732c752fda13eae5358150ac6c"}]},{"sha":"4f1c4bcbe523e52af825a241984c35a846aba5f2","node_id":"C_kwDOF83__NoAKDRmMWM0YmNiZTUyM2U1MmFmODI1YTI0MTk4NGMzNWE4NDZhYmE1ZjI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"b610371ead83324bbd41bc45905e5d5ee2ea0d80","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b610371ead83324bbd41bc45905e5d5ee2ea0d80"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4f1c4bcbe523e52af825a241984c35a846aba5f2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4918fb6875bad67ed11a790b5c1bfe92a832fe2a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4918fb6875bad67ed11a790b5c1bfe92a832fe2a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4918fb6875bad67ed11a790b5c1bfe92a832fe2a"}]},{"sha":"c4d3429387987cbe0740b97c3bd9e3c3053776d2","node_id":"C_kwDOF83__NoAKGM0ZDM0MjkzODc5ODdjYmUwNzQwYjk3YzNiZDllM2MzMDUzNzc2ZDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"b690b9f5aeb55205b0df418da83842949248ec7a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b690b9f5aeb55205b0df418da83842949248ec7a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4d3429387987cbe0740b97c3bd9e3c3053776d2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4f1c4bcbe523e52af825a241984c35a846aba5f2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4f1c4bcbe523e52af825a241984c35a846aba5f2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4f1c4bcbe523e52af825a241984c35a846aba5f2"}]},{"sha":"3d0781365fb37582e3aad27b77ba897069211812","node_id":"C_kwDOF83__NoAKDNkMDc4MTM2NWZiMzc1ODJlM2FhZDI3Yjc3YmE4OTcwNjkyMTE4MTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"9e95a4cab838c91298db8ed0df971d4b5843c636","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9e95a4cab838c91298db8ed0df971d4b5843c636"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3d0781365fb37582e3aad27b77ba897069211812","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d0781365fb37582e3aad27b77ba897069211812","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c4d3429387987cbe0740b97c3bd9e3c3053776d2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4d3429387987cbe0740b97c3bd9e3c3053776d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4d3429387987cbe0740b97c3bd9e3c3053776d2"}]},{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","node_id":"C_kwDOF83__NoAKDY5NWFkN2I0MzczMDRiYjZiMGM4MWQ3YTJjNzIzNGE4NTVmMGM2OTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:12Z"},"message":"Dummy commit","tree":{"sha":"8670c2f3a9c099d66d518293f9f09e08ea3d0c96","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8670c2f3a9c099d66d518293f9f09e08ea3d0c96"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3d0781365fb37582e3aad27b77ba897069211812","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3d0781365fb37582e3aad27b77ba897069211812","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3d0781365fb37582e3aad27b77ba897069211812"}]},{"sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","node_id":"C_kwDOF83__NoAKGZkOTliZDE0NmU4N2EwMGViOTBlY2NlZjEyZjQ4N2VjYzhmNGM0OTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T10:45:13Z"},"message":"Dummy commit","tree":{"sha":"54236e4e6361e96958234eabe1a7f1bbf7059991","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/54236e4e6361e96958234eabe1a7f1bbf7059991"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fd99bd146e87a00eb90eccef12f487ecc8f4c496","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"695ad7b437304bb6b0c81d7a2c7234a855f0c693","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695ad7b437304bb6b0c81d7a2c7234a855f0c693","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695ad7b437304bb6b0c81d7a2c7234a855f0c693"}]},{"sha":"c750843423907e99c9817588a5a3f40c2b919b92","node_id":"C_kwDOF83__NoAKGM3NTA4NDM0MjM5MDdlOTljOTgxNzU4OGE1YTNmNDBjMmI5MTliOTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:10Z"},"message":"Dummy commit","tree":{"sha":"148706288f3f653e1d0f598c859a06630b56bc12","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/148706288f3f653e1d0f598c859a06630b56bc12"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c750843423907e99c9817588a5a3f40c2b919b92","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c750843423907e99c9817588a5a3f40c2b919b92","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c750843423907e99c9817588a5a3f40c2b919b92","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c750843423907e99c9817588a5a3f40c2b919b92/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fd99bd146e87a00eb90eccef12f487ecc8f4c496","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fd99bd146e87a00eb90eccef12f487ecc8f4c496","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fd99bd146e87a00eb90eccef12f487ecc8f4c496"}]},{"sha":"08dc00415b1f72e49ad63b8764e7f1958b346c15","node_id":"C_kwDOF83__NoAKDA4ZGMwMDQxNWIxZjcyZTQ5YWQ2M2I4NzY0ZTdmMTk1OGIzNDZjMTU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:10Z"},"message":"Dummy commit","tree":{"sha":"62a976ddb96819c80c044715edf75db59b9614b2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/62a976ddb96819c80c044715edf75db59b9614b2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/08dc00415b1f72e49ad63b8764e7f1958b346c15","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/08dc00415b1f72e49ad63b8764e7f1958b346c15","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/08dc00415b1f72e49ad63b8764e7f1958b346c15","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/08dc00415b1f72e49ad63b8764e7f1958b346c15/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c750843423907e99c9817588a5a3f40c2b919b92","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c750843423907e99c9817588a5a3f40c2b919b92","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c750843423907e99c9817588a5a3f40c2b919b92"}]},{"sha":"583b7457252230a6420aa79a18db406f6bdb9cfd","node_id":"C_kwDOF83__NoAKDU4M2I3NDU3MjUyMjMwYTY0MjBhYTc5YTE4ZGI0MDZmNmJkYjljZmQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"message":"Dummy commit","tree":{"sha":"00b0ece1a658d8e82624a1d104386a7a2a5013d3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/00b0ece1a658d8e82624a1d104386a7a2a5013d3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/583b7457252230a6420aa79a18db406f6bdb9cfd","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/583b7457252230a6420aa79a18db406f6bdb9cfd","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/583b7457252230a6420aa79a18db406f6bdb9cfd","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/583b7457252230a6420aa79a18db406f6bdb9cfd/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"08dc00415b1f72e49ad63b8764e7f1958b346c15","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/08dc00415b1f72e49ad63b8764e7f1958b346c15","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/08dc00415b1f72e49ad63b8764e7f1958b346c15"}]},{"sha":"fb5cada81a8004b660c8020e1876f4df90896000","node_id":"C_kwDOF83__NoAKGZiNWNhZGE4MWE4MDA0YjY2MGM4MDIwZTE4NzZmNGRmOTA4OTYwMDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"message":"Dummy commit","tree":{"sha":"d551a2dce36275d55322dd24c450c5103dc8b962","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d551a2dce36275d55322dd24c450c5103dc8b962"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fb5cada81a8004b660c8020e1876f4df90896000","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb5cada81a8004b660c8020e1876f4df90896000","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb5cada81a8004b660c8020e1876f4df90896000","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb5cada81a8004b660c8020e1876f4df90896000/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"583b7457252230a6420aa79a18db406f6bdb9cfd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/583b7457252230a6420aa79a18db406f6bdb9cfd","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/583b7457252230a6420aa79a18db406f6bdb9cfd"}]},{"sha":"4bb3a72caab6437beda7f12fc82991fd8dd19300","node_id":"C_kwDOF83__NoAKDRiYjNhNzJjYWFiNjQzN2JlZGE3ZjEyZmM4Mjk5MWZkOGRkMTkzMDA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"message":"Dummy commit","tree":{"sha":"8bd4058f4d8237acf7262700b3f57dbded0a6a88","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8bd4058f4d8237acf7262700b3f57dbded0a6a88"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4bb3a72caab6437beda7f12fc82991fd8dd19300","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4bb3a72caab6437beda7f12fc82991fd8dd19300","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4bb3a72caab6437beda7f12fc82991fd8dd19300","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4bb3a72caab6437beda7f12fc82991fd8dd19300/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fb5cada81a8004b660c8020e1876f4df90896000","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fb5cada81a8004b660c8020e1876f4df90896000","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fb5cada81a8004b660c8020e1876f4df90896000"}]},{"sha":"27ab3909635837b732938c5e8da00637b171f159","node_id":"C_kwDOF83__NoAKDI3YWIzOTA5NjM1ODM3YjczMjkzOGM1ZThkYTAwNjM3YjE3MWYxNTk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"message":"Dummy commit","tree":{"sha":"5b776b82a2567bc900c675581f4a496376a0521a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5b776b82a2567bc900c675581f4a496376a0521a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/27ab3909635837b732938c5e8da00637b171f159","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27ab3909635837b732938c5e8da00637b171f159","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27ab3909635837b732938c5e8da00637b171f159","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27ab3909635837b732938c5e8da00637b171f159/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4bb3a72caab6437beda7f12fc82991fd8dd19300","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4bb3a72caab6437beda7f12fc82991fd8dd19300","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4bb3a72caab6437beda7f12fc82991fd8dd19300"}]},{"sha":"7a1c9fe18c22fa9fdd0140200bf9dcee8ad01323","node_id":"C_kwDOF83__NoAKDdhMWM5ZmUxOGMyMmZhOWZkZDAxNDAyMDBiZjlkY2VlOGFkMDEzMjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"message":"Dummy commit","tree":{"sha":"9b35ebd32ae644ac62b5e92a73d382d2316998c6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9b35ebd32ae644ac62b5e92a73d382d2316998c6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7a1c9fe18c22fa9fdd0140200bf9dcee8ad01323","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7a1c9fe18c22fa9fdd0140200bf9dcee8ad01323","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7a1c9fe18c22fa9fdd0140200bf9dcee8ad01323","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7a1c9fe18c22fa9fdd0140200bf9dcee8ad01323/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"27ab3909635837b732938c5e8da00637b171f159","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/27ab3909635837b732938c5e8da00637b171f159","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/27ab3909635837b732938c5e8da00637b171f159"}]},{"sha":"513a6b3ce83e21a8b2ed4e5d22774ed432440e88","node_id":"C_kwDOF83__NoAKDUxM2E2YjNjZTgzZTIxYThiMmVkNGU1ZDIyNzc0ZWQ0MzI0NDBlODg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"message":"Dummy commit","tree":{"sha":"ff0a1407d8601e77bdc5ed74efb7f51d42f7f83b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ff0a1407d8601e77bdc5ed74efb7f51d42f7f83b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/513a6b3ce83e21a8b2ed4e5d22774ed432440e88","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/513a6b3ce83e21a8b2ed4e5d22774ed432440e88","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/513a6b3ce83e21a8b2ed4e5d22774ed432440e88","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/513a6b3ce83e21a8b2ed4e5d22774ed432440e88/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7a1c9fe18c22fa9fdd0140200bf9dcee8ad01323","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7a1c9fe18c22fa9fdd0140200bf9dcee8ad01323","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7a1c9fe18c22fa9fdd0140200bf9dcee8ad01323"}]},{"sha":"c4570f425fe99476a4947cc26f7f28b76ae4f2c0","node_id":"C_kwDOF83__NoAKGM0NTcwZjQyNWZlOTk0NzZhNDk0N2NjMjZmN2YyOGI3NmFlNGYyYzA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:11Z"},"message":"Dummy commit","tree":{"sha":"73d1dbb8cf8c8a52b06cbe25657bc688ef684615","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/73d1dbb8cf8c8a52b06cbe25657bc688ef684615"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c4570f425fe99476a4947cc26f7f28b76ae4f2c0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4570f425fe99476a4947cc26f7f28b76ae4f2c0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4570f425fe99476a4947cc26f7f28b76ae4f2c0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4570f425fe99476a4947cc26f7f28b76ae4f2c0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"513a6b3ce83e21a8b2ed4e5d22774ed432440e88","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/513a6b3ce83e21a8b2ed4e5d22774ed432440e88","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/513a6b3ce83e21a8b2ed4e5d22774ed432440e88"}]},{"sha":"150a489174996b16c0bee0cd4c3a5f98bf6cf724","node_id":"C_kwDOF83__NoAKDE1MGE0ODkxNzQ5OTZiMTZjMGJlZTBjZDRjM2E1Zjk4YmY2Y2Y3MjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"message":"Dummy commit","tree":{"sha":"54bacf7a44c58a81e514fde438aa8cca81f393be","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/54bacf7a44c58a81e514fde438aa8cca81f393be"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/150a489174996b16c0bee0cd4c3a5f98bf6cf724","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/150a489174996b16c0bee0cd4c3a5f98bf6cf724","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/150a489174996b16c0bee0cd4c3a5f98bf6cf724","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/150a489174996b16c0bee0cd4c3a5f98bf6cf724/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c4570f425fe99476a4947cc26f7f28b76ae4f2c0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c4570f425fe99476a4947cc26f7f28b76ae4f2c0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c4570f425fe99476a4947cc26f7f28b76ae4f2c0"}]},{"sha":"1cb20ee99b492c54dbb5cb664cbe3c5899053065","node_id":"C_kwDOF83__NoAKDFjYjIwZWU5OWI0OTJjNTRkYmI1Y2I2NjRjYmUzYzU4OTkwNTMwNjU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"message":"Dummy commit","tree":{"sha":"531a64666b19636474cae4a58f3e0ddc6b121fe2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/531a64666b19636474cae4a58f3e0ddc6b121fe2"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1cb20ee99b492c54dbb5cb664cbe3c5899053065","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1cb20ee99b492c54dbb5cb664cbe3c5899053065","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1cb20ee99b492c54dbb5cb664cbe3c5899053065","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1cb20ee99b492c54dbb5cb664cbe3c5899053065/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"150a489174996b16c0bee0cd4c3a5f98bf6cf724","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/150a489174996b16c0bee0cd4c3a5f98bf6cf724","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/150a489174996b16c0bee0cd4c3a5f98bf6cf724"}]},{"sha":"d496dbfaeb16efd32dd3038d97f710be79368695","node_id":"C_kwDOF83__NoAKGQ0OTZkYmZhZWIxNmVmZDMyZGQzMDM4ZDk3ZjcxMGJlNzkzNjg2OTU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"message":"Dummy commit","tree":{"sha":"17fdb9b7d2d79991684ed253fd598ceb377f683a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/17fdb9b7d2d79991684ed253fd598ceb377f683a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d496dbfaeb16efd32dd3038d97f710be79368695","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d496dbfaeb16efd32dd3038d97f710be79368695","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d496dbfaeb16efd32dd3038d97f710be79368695","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d496dbfaeb16efd32dd3038d97f710be79368695/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1cb20ee99b492c54dbb5cb664cbe3c5899053065","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1cb20ee99b492c54dbb5cb664cbe3c5899053065","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1cb20ee99b492c54dbb5cb664cbe3c5899053065"}]},{"sha":"25b53c4066bfe5f5cd903aeaa5f2d74fc7e9fad1","node_id":"C_kwDOF83__NoAKDI1YjUzYzQwNjZiZmU1ZjVjZDkwM2FlYWE1ZjJkNzRmYzdlOWZhZDE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"message":"Dummy commit","tree":{"sha":"40c1f40619c9e72961f3ab6e1944c93b1b9952b6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/40c1f40619c9e72961f3ab6e1944c93b1b9952b6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/25b53c4066bfe5f5cd903aeaa5f2d74fc7e9fad1","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/25b53c4066bfe5f5cd903aeaa5f2d74fc7e9fad1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/25b53c4066bfe5f5cd903aeaa5f2d74fc7e9fad1","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/25b53c4066bfe5f5cd903aeaa5f2d74fc7e9fad1/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d496dbfaeb16efd32dd3038d97f710be79368695","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d496dbfaeb16efd32dd3038d97f710be79368695","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d496dbfaeb16efd32dd3038d97f710be79368695"}]},{"sha":"b74094b84816d439852458eb9b37221704c6f577","node_id":"C_kwDOF83__NoAKGI3NDA5NGI4NDgxNmQ0Mzk4NTI0NThlYjliMzcyMjE3MDRjNmY1Nzc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"message":"Dummy commit","tree":{"sha":"d942ca5b0a1ee592cda52b645cdad81025cf99b0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d942ca5b0a1ee592cda52b645cdad81025cf99b0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b74094b84816d439852458eb9b37221704c6f577","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b74094b84816d439852458eb9b37221704c6f577","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b74094b84816d439852458eb9b37221704c6f577","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b74094b84816d439852458eb9b37221704c6f577/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"25b53c4066bfe5f5cd903aeaa5f2d74fc7e9fad1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/25b53c4066bfe5f5cd903aeaa5f2d74fc7e9fad1","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/25b53c4066bfe5f5cd903aeaa5f2d74fc7e9fad1"}]},{"sha":"9b7b44d218cbc403ee77224e9c611ec055dec016","node_id":"C_kwDOF83__NoAKDliN2I0NGQyMThjYmM0MDNlZTc3MjI0ZTljNjExZWMwNTVkZWMwMTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"message":"Dummy commit","tree":{"sha":"f17dc44630194de5d72a1c791d398b1e609ec2a3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f17dc44630194de5d72a1c791d398b1e609ec2a3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9b7b44d218cbc403ee77224e9c611ec055dec016","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9b7b44d218cbc403ee77224e9c611ec055dec016","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9b7b44d218cbc403ee77224e9c611ec055dec016","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9b7b44d218cbc403ee77224e9c611ec055dec016/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b74094b84816d439852458eb9b37221704c6f577","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b74094b84816d439852458eb9b37221704c6f577","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b74094b84816d439852458eb9b37221704c6f577"}]},{"sha":"d89e41a13e95690db977c06bf3319611b0c963c4","node_id":"C_kwDOF83__NoAKGQ4OWU0MWExM2U5NTY5MGRiOTc3YzA2YmYzMzE5NjExYjBjOTYzYzQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:12Z"},"message":"Dummy commit","tree":{"sha":"0d44daa0d34c94c14dbad741d64af9cf2c65c36a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0d44daa0d34c94c14dbad741d64af9cf2c65c36a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d89e41a13e95690db977c06bf3319611b0c963c4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d89e41a13e95690db977c06bf3319611b0c963c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d89e41a13e95690db977c06bf3319611b0c963c4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d89e41a13e95690db977c06bf3319611b0c963c4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9b7b44d218cbc403ee77224e9c611ec055dec016","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9b7b44d218cbc403ee77224e9c611ec055dec016","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9b7b44d218cbc403ee77224e9c611ec055dec016"}]},{"sha":"4aae4e70077c5ecbc5dec4dd266d1fb8530bf1a7","node_id":"C_kwDOF83__NoAKDRhYWU0ZTcwMDc3YzVlY2JjNWRlYzRkZDI2NmQxZmI4NTMwYmYxYTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"message":"Dummy commit","tree":{"sha":"5625fd853603a601905a3faa05718143c664f9f6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5625fd853603a601905a3faa05718143c664f9f6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4aae4e70077c5ecbc5dec4dd266d1fb8530bf1a7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4aae4e70077c5ecbc5dec4dd266d1fb8530bf1a7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4aae4e70077c5ecbc5dec4dd266d1fb8530bf1a7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4aae4e70077c5ecbc5dec4dd266d1fb8530bf1a7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d89e41a13e95690db977c06bf3319611b0c963c4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d89e41a13e95690db977c06bf3319611b0c963c4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d89e41a13e95690db977c06bf3319611b0c963c4"}]},{"sha":"8f5ddc31c783ce67f8dac67ba1e6ee0adc461928","node_id":"C_kwDOF83__NoAKDhmNWRkYzMxYzc4M2NlNjdmOGRhYzY3YmExZTZlZTBhZGM0NjE5Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"message":"Dummy commit","tree":{"sha":"3718802439151dd32daa7526c0f288e123e9be5c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3718802439151dd32daa7526c0f288e123e9be5c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8f5ddc31c783ce67f8dac67ba1e6ee0adc461928","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8f5ddc31c783ce67f8dac67ba1e6ee0adc461928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8f5ddc31c783ce67f8dac67ba1e6ee0adc461928","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8f5ddc31c783ce67f8dac67ba1e6ee0adc461928/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4aae4e70077c5ecbc5dec4dd266d1fb8530bf1a7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4aae4e70077c5ecbc5dec4dd266d1fb8530bf1a7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4aae4e70077c5ecbc5dec4dd266d1fb8530bf1a7"}]},{"sha":"2f8c26bea53c3e1653396d158be2b84b5ac33fb5","node_id":"C_kwDOF83__NoAKDJmOGMyNmJlYTUzYzNlMTY1MzM5NmQxNThiZTJiODRiNWFjMzNmYjU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"message":"Dummy commit","tree":{"sha":"464d56e4e0dfbe74ff02ef5901cbc1ca5f89a81c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/464d56e4e0dfbe74ff02ef5901cbc1ca5f89a81c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2f8c26bea53c3e1653396d158be2b84b5ac33fb5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2f8c26bea53c3e1653396d158be2b84b5ac33fb5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2f8c26bea53c3e1653396d158be2b84b5ac33fb5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2f8c26bea53c3e1653396d158be2b84b5ac33fb5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8f5ddc31c783ce67f8dac67ba1e6ee0adc461928","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8f5ddc31c783ce67f8dac67ba1e6ee0adc461928","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8f5ddc31c783ce67f8dac67ba1e6ee0adc461928"}]},{"sha":"fcbcdd0016321162c4ed5ab7d82da081e8ae21ab","node_id":"C_kwDOF83__NoAKGZjYmNkZDAwMTYzMjExNjJjNGVkNWFiN2Q4MmRhMDgxZThhZTIxYWI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"message":"Dummy commit","tree":{"sha":"6cf8b6773e71f00b7cb38a35d44e7ac5f799dd13","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6cf8b6773e71f00b7cb38a35d44e7ac5f799dd13"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fcbcdd0016321162c4ed5ab7d82da081e8ae21ab","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fcbcdd0016321162c4ed5ab7d82da081e8ae21ab","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fcbcdd0016321162c4ed5ab7d82da081e8ae21ab","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fcbcdd0016321162c4ed5ab7d82da081e8ae21ab/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2f8c26bea53c3e1653396d158be2b84b5ac33fb5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2f8c26bea53c3e1653396d158be2b84b5ac33fb5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2f8c26bea53c3e1653396d158be2b84b5ac33fb5"}]},{"sha":"222bf33cacb9c0b700f3041b0ec53aedacb93e15","node_id":"C_kwDOF83__NoAKDIyMmJmMzNjYWNiOWMwYjcwMGYzMDQxYjBlYzUzYWVkYWNiOTNlMTU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"message":"Dummy commit","tree":{"sha":"6756af615ecd3c29965ab8293520a854fd34a47e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6756af615ecd3c29965ab8293520a854fd34a47e"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/222bf33cacb9c0b700f3041b0ec53aedacb93e15","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/222bf33cacb9c0b700f3041b0ec53aedacb93e15","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/222bf33cacb9c0b700f3041b0ec53aedacb93e15","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/222bf33cacb9c0b700f3041b0ec53aedacb93e15/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fcbcdd0016321162c4ed5ab7d82da081e8ae21ab","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fcbcdd0016321162c4ed5ab7d82da081e8ae21ab","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fcbcdd0016321162c4ed5ab7d82da081e8ae21ab"}]},{"sha":"ba78f72531cf0ca3cc7711bb269b99438d6c3746","node_id":"C_kwDOF83__NoAKGJhNzhmNzI1MzFjZjBjYTNjYzc3MTFiYjI2OWI5OTQzOGQ2YzM3NDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"message":"Dummy commit","tree":{"sha":"565991b50dab5dabc5068c1d9cc8aa73546db7d7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/565991b50dab5dabc5068c1d9cc8aa73546db7d7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ba78f72531cf0ca3cc7711bb269b99438d6c3746","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ba78f72531cf0ca3cc7711bb269b99438d6c3746","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ba78f72531cf0ca3cc7711bb269b99438d6c3746","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ba78f72531cf0ca3cc7711bb269b99438d6c3746/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"222bf33cacb9c0b700f3041b0ec53aedacb93e15","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/222bf33cacb9c0b700f3041b0ec53aedacb93e15","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/222bf33cacb9c0b700f3041b0ec53aedacb93e15"}]},{"sha":"d40f950029188b2753d88a9c9b811762d1c7f463","node_id":"C_kwDOF83__NoAKGQ0MGY5NTAwMjkxODhiMjc1M2Q4OGE5YzliODExNzYyZDFjN2Y0NjM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"message":"Dummy commit","tree":{"sha":"d89ca0b7b85e470de6c98aa2f540ffd427612286","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d89ca0b7b85e470de6c98aa2f540ffd427612286"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d40f950029188b2753d88a9c9b811762d1c7f463","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d40f950029188b2753d88a9c9b811762d1c7f463","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d40f950029188b2753d88a9c9b811762d1c7f463","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d40f950029188b2753d88a9c9b811762d1c7f463/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ba78f72531cf0ca3cc7711bb269b99438d6c3746","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ba78f72531cf0ca3cc7711bb269b99438d6c3746","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ba78f72531cf0ca3cc7711bb269b99438d6c3746"}]},{"sha":"e084b8e202f62385f395a8798616b26a1d004b07","node_id":"C_kwDOF83__NoAKGUwODRiOGUyMDJmNjIzODVmMzk1YTg3OTg2MTZiMjZhMWQwMDRiMDc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:13Z"},"message":"Dummy commit","tree":{"sha":"c9a372051298f42504e15c3e25e4b625db39c5d6","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c9a372051298f42504e15c3e25e4b625db39c5d6"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e084b8e202f62385f395a8798616b26a1d004b07","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e084b8e202f62385f395a8798616b26a1d004b07","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e084b8e202f62385f395a8798616b26a1d004b07","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e084b8e202f62385f395a8798616b26a1d004b07/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d40f950029188b2753d88a9c9b811762d1c7f463","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d40f950029188b2753d88a9c9b811762d1c7f463","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d40f950029188b2753d88a9c9b811762d1c7f463"}]},{"sha":"58a574437251933b5177a96aec16c2bb9ef0a53b","node_id":"C_kwDOF83__NoAKDU4YTU3NDQzNzI1MTkzM2I1MTc3YTk2YWVjMTZjMmJiOWVmMGE1M2I","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"message":"Dummy commit","tree":{"sha":"a654e8a742eed90f151d735ba198e9450d882a39","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a654e8a742eed90f151d735ba198e9450d882a39"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/58a574437251933b5177a96aec16c2bb9ef0a53b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/58a574437251933b5177a96aec16c2bb9ef0a53b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/58a574437251933b5177a96aec16c2bb9ef0a53b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/58a574437251933b5177a96aec16c2bb9ef0a53b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e084b8e202f62385f395a8798616b26a1d004b07","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e084b8e202f62385f395a8798616b26a1d004b07","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e084b8e202f62385f395a8798616b26a1d004b07"}]},{"sha":"0ea892947cbff670cb7d95f1fca0ac1d664862c7","node_id":"C_kwDOF83__NoAKDBlYTg5Mjk0N2NiZmY2NzBjYjdkOTVmMWZjYTBhYzFkNjY0ODYyYzc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"message":"Dummy commit","tree":{"sha":"e32c6156c69a294f1b7405b5cf350c9ddce2a613","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e32c6156c69a294f1b7405b5cf350c9ddce2a613"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0ea892947cbff670cb7d95f1fca0ac1d664862c7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0ea892947cbff670cb7d95f1fca0ac1d664862c7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0ea892947cbff670cb7d95f1fca0ac1d664862c7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0ea892947cbff670cb7d95f1fca0ac1d664862c7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"58a574437251933b5177a96aec16c2bb9ef0a53b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/58a574437251933b5177a96aec16c2bb9ef0a53b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/58a574437251933b5177a96aec16c2bb9ef0a53b"}]},{"sha":"fc698e8cc10f2f0d111358b1a8dd8417aa593089","node_id":"C_kwDOF83__NoAKGZjNjk4ZThjYzEwZjJmMGQxMTEzNThiMWE4ZGQ4NDE3YWE1OTMwODk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"message":"Dummy commit","tree":{"sha":"f36846dc0b9e539a4cfbf2b60985c7890753e340","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f36846dc0b9e539a4cfbf2b60985c7890753e340"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/fc698e8cc10f2f0d111358b1a8dd8417aa593089","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fc698e8cc10f2f0d111358b1a8dd8417aa593089","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fc698e8cc10f2f0d111358b1a8dd8417aa593089","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fc698e8cc10f2f0d111358b1a8dd8417aa593089/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0ea892947cbff670cb7d95f1fca0ac1d664862c7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0ea892947cbff670cb7d95f1fca0ac1d664862c7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0ea892947cbff670cb7d95f1fca0ac1d664862c7"}]},{"sha":"3a0b2506432786d8c930d6509e7729f9bd522587","node_id":"C_kwDOF83__NoAKDNhMGIyNTA2NDMyNzg2ZDhjOTMwZDY1MDllNzcyOWY5YmQ1MjI1ODc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"message":"Dummy commit","tree":{"sha":"7d35238574cfa9113ffb1e8cd063749e0c85c445","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7d35238574cfa9113ffb1e8cd063749e0c85c445"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3a0b2506432786d8c930d6509e7729f9bd522587","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3a0b2506432786d8c930d6509e7729f9bd522587","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3a0b2506432786d8c930d6509e7729f9bd522587","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3a0b2506432786d8c930d6509e7729f9bd522587/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"fc698e8cc10f2f0d111358b1a8dd8417aa593089","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/fc698e8cc10f2f0d111358b1a8dd8417aa593089","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/fc698e8cc10f2f0d111358b1a8dd8417aa593089"}]},{"sha":"e0f0b263f9a9300fd82656f36c5c2e21db83ec35","node_id":"C_kwDOF83__NoAKGUwZjBiMjYzZjlhOTMwMGZkODI2NTZmMzZjNWMyZTIxZGI4M2VjMzU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"message":"Dummy commit","tree":{"sha":"cdfe8693bb2fd9175c8d0db5e001fa1e080a5db9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/cdfe8693bb2fd9175c8d0db5e001fa1e080a5db9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e0f0b263f9a9300fd82656f36c5c2e21db83ec35","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e0f0b263f9a9300fd82656f36c5c2e21db83ec35","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e0f0b263f9a9300fd82656f36c5c2e21db83ec35","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e0f0b263f9a9300fd82656f36c5c2e21db83ec35/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3a0b2506432786d8c930d6509e7729f9bd522587","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3a0b2506432786d8c930d6509e7729f9bd522587","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3a0b2506432786d8c930d6509e7729f9bd522587"}]},{"sha":"f39e2b8f09dc1d938dd6893ff8e79545027957c0","node_id":"C_kwDOF83__NoAKGYzOWUyYjhmMDlkYzFkOTM4ZGQ2ODkzZmY4ZTc5NTQ1MDI3OTU3YzA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"message":"Dummy commit","tree":{"sha":"c979ff1abee7ee692807552817cb9eeb83460dad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c979ff1abee7ee692807552817cb9eeb83460dad"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f39e2b8f09dc1d938dd6893ff8e79545027957c0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f39e2b8f09dc1d938dd6893ff8e79545027957c0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f39e2b8f09dc1d938dd6893ff8e79545027957c0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f39e2b8f09dc1d938dd6893ff8e79545027957c0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e0f0b263f9a9300fd82656f36c5c2e21db83ec35","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e0f0b263f9a9300fd82656f36c5c2e21db83ec35","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e0f0b263f9a9300fd82656f36c5c2e21db83ec35"}]},{"sha":"67c18ec4ad2db074d66dd106d01cf66c38173754","node_id":"C_kwDOF83__NoAKDY3YzE4ZWM0YWQyZGIwNzRkNjZkZDEwNmQwMWNmNjZjMzgxNzM3NTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:14Z"},"message":"Dummy commit","tree":{"sha":"e0b6b774d8aa7472def78723c6d6414cad6b65e9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e0b6b774d8aa7472def78723c6d6414cad6b65e9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/67c18ec4ad2db074d66dd106d01cf66c38173754","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67c18ec4ad2db074d66dd106d01cf66c38173754","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67c18ec4ad2db074d66dd106d01cf66c38173754","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67c18ec4ad2db074d66dd106d01cf66c38173754/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f39e2b8f09dc1d938dd6893ff8e79545027957c0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f39e2b8f09dc1d938dd6893ff8e79545027957c0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f39e2b8f09dc1d938dd6893ff8e79545027957c0"}]},{"sha":"c1b3d32e329a921a0544e3598e3d44a48a8925d7","node_id":"C_kwDOF83__NoAKGMxYjNkMzJlMzI5YTkyMWEwNTQ0ZTM1OThlM2Q0NGE0OGE4OTI1ZDc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"message":"Dummy commit","tree":{"sha":"8315c5fc67a733e3ef38dc47826e5a2a99238d98","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8315c5fc67a733e3ef38dc47826e5a2a99238d98"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c1b3d32e329a921a0544e3598e3d44a48a8925d7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c1b3d32e329a921a0544e3598e3d44a48a8925d7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c1b3d32e329a921a0544e3598e3d44a48a8925d7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c1b3d32e329a921a0544e3598e3d44a48a8925d7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"67c18ec4ad2db074d66dd106d01cf66c38173754","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/67c18ec4ad2db074d66dd106d01cf66c38173754","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/67c18ec4ad2db074d66dd106d01cf66c38173754"}]},{"sha":"0b67e885bbdb19f0c7c09ea0c073421eac2cd39c","node_id":"C_kwDOF83__NoAKDBiNjdlODg1YmJkYjE5ZjBjN2MwOWVhMGMwNzM0MjFlYWMyY2QzOWM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"message":"Dummy commit","tree":{"sha":"5f605030d8264d2cf6d4daff30e1625d73a2d7c9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f605030d8264d2cf6d4daff30e1625d73a2d7c9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0b67e885bbdb19f0c7c09ea0c073421eac2cd39c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b67e885bbdb19f0c7c09ea0c073421eac2cd39c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b67e885bbdb19f0c7c09ea0c073421eac2cd39c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b67e885bbdb19f0c7c09ea0c073421eac2cd39c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c1b3d32e329a921a0544e3598e3d44a48a8925d7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c1b3d32e329a921a0544e3598e3d44a48a8925d7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c1b3d32e329a921a0544e3598e3d44a48a8925d7"}]},{"sha":"5aec26dc31f563db40e60cab42e4bbc8293719f4","node_id":"C_kwDOF83__NoAKDVhZWMyNmRjMzFmNTYzZGI0MGU2MGNhYjQyZTRiYmM4MjkzNzE5ZjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"message":"Dummy commit","tree":{"sha":"60686f1bf5f444e7eb5462cbc419d180b0095775","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/60686f1bf5f444e7eb5462cbc419d180b0095775"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5aec26dc31f563db40e60cab42e4bbc8293719f4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5aec26dc31f563db40e60cab42e4bbc8293719f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5aec26dc31f563db40e60cab42e4bbc8293719f4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5aec26dc31f563db40e60cab42e4bbc8293719f4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0b67e885bbdb19f0c7c09ea0c073421eac2cd39c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0b67e885bbdb19f0c7c09ea0c073421eac2cd39c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0b67e885bbdb19f0c7c09ea0c073421eac2cd39c"}]},{"sha":"0872e9f97f9cb817b787eaee6c57588f98ce9e13","node_id":"C_kwDOF83__NoAKDA4NzJlOWY5N2Y5Y2I4MTdiNzg3ZWFlZTZjNTc1ODhmOThjZTllMTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"message":"Dummy commit","tree":{"sha":"b2d2398a7060e04438431feab8f81337d9a221ee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b2d2398a7060e04438431feab8f81337d9a221ee"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0872e9f97f9cb817b787eaee6c57588f98ce9e13","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0872e9f97f9cb817b787eaee6c57588f98ce9e13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0872e9f97f9cb817b787eaee6c57588f98ce9e13","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0872e9f97f9cb817b787eaee6c57588f98ce9e13/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5aec26dc31f563db40e60cab42e4bbc8293719f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5aec26dc31f563db40e60cab42e4bbc8293719f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5aec26dc31f563db40e60cab42e4bbc8293719f4"}]},{"sha":"ea89e866c91a5847feb17acdc37a7fd421e8ffd9","node_id":"C_kwDOF83__NoAKGVhODllODY2YzkxYTU4NDdmZWIxN2FjZGMzN2E3ZmQ0MjFlOGZmZDk","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"message":"Dummy commit","tree":{"sha":"ca5c3045aec78387b87058a1e3317281a5f91b89","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ca5c3045aec78387b87058a1e3317281a5f91b89"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ea89e866c91a5847feb17acdc37a7fd421e8ffd9","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea89e866c91a5847feb17acdc37a7fd421e8ffd9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea89e866c91a5847feb17acdc37a7fd421e8ffd9","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea89e866c91a5847feb17acdc37a7fd421e8ffd9/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0872e9f97f9cb817b787eaee6c57588f98ce9e13","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0872e9f97f9cb817b787eaee6c57588f98ce9e13","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0872e9f97f9cb817b787eaee6c57588f98ce9e13"}]},{"sha":"7342249edb7389392ef86cf5814db9ec3a0ba5ba","node_id":"C_kwDOF83__NoAKDczNDIyNDllZGI3Mzg5MzkyZWY4NmNmNTgxNGRiOWVjM2EwYmE1YmE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"message":"Dummy commit","tree":{"sha":"6735d358b11a38dbf4ebe527e30b20854143ed5b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6735d358b11a38dbf4ebe527e30b20854143ed5b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7342249edb7389392ef86cf5814db9ec3a0ba5ba","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7342249edb7389392ef86cf5814db9ec3a0ba5ba","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7342249edb7389392ef86cf5814db9ec3a0ba5ba","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7342249edb7389392ef86cf5814db9ec3a0ba5ba/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ea89e866c91a5847feb17acdc37a7fd421e8ffd9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ea89e866c91a5847feb17acdc37a7fd421e8ffd9","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ea89e866c91a5847feb17acdc37a7fd421e8ffd9"}]},{"sha":"8c8b8ccc91e8362721debf1f07a3a6e3104ef82e","node_id":"C_kwDOF83__NoAKDhjOGI4Y2NjOTFlODM2MjcyMWRlYmYxZjA3YTNhNmUzMTA0ZWY4MmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:15Z"},"message":"Dummy commit","tree":{"sha":"223ac133848781bc793e128fd5a2c58291c5cac3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/223ac133848781bc793e128fd5a2c58291c5cac3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8c8b8ccc91e8362721debf1f07a3a6e3104ef82e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c8b8ccc91e8362721debf1f07a3a6e3104ef82e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c8b8ccc91e8362721debf1f07a3a6e3104ef82e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c8b8ccc91e8362721debf1f07a3a6e3104ef82e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7342249edb7389392ef86cf5814db9ec3a0ba5ba","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7342249edb7389392ef86cf5814db9ec3a0ba5ba","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7342249edb7389392ef86cf5814db9ec3a0ba5ba"}]},{"sha":"3fbba24d66da3d0e3956b714ce8d85132852c513","node_id":"C_kwDOF83__NoAKDNmYmJhMjRkNjZkYTNkMGUzOTU2YjcxNGNlOGQ4NTEzMjg1MmM1MTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"message":"Dummy commit","tree":{"sha":"04972f0fd5dde7f4fdc435d20502b47f130ffef7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/04972f0fd5dde7f4fdc435d20502b47f130ffef7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3fbba24d66da3d0e3956b714ce8d85132852c513","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3fbba24d66da3d0e3956b714ce8d85132852c513","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3fbba24d66da3d0e3956b714ce8d85132852c513","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3fbba24d66da3d0e3956b714ce8d85132852c513/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8c8b8ccc91e8362721debf1f07a3a6e3104ef82e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8c8b8ccc91e8362721debf1f07a3a6e3104ef82e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8c8b8ccc91e8362721debf1f07a3a6e3104ef82e"}]},{"sha":"a1dff826ef5913caf5a65a25f4ba07fb93491b95","node_id":"C_kwDOF83__NoAKGExZGZmODI2ZWY1OTEzY2FmNWE2NWEyNWY0YmEwN2ZiOTM0OTFiOTU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"message":"Dummy commit","tree":{"sha":"2e50bf6cfc346deebf0cef3192a04c0eee29d13b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2e50bf6cfc346deebf0cef3192a04c0eee29d13b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a1dff826ef5913caf5a65a25f4ba07fb93491b95","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1dff826ef5913caf5a65a25f4ba07fb93491b95","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1dff826ef5913caf5a65a25f4ba07fb93491b95","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1dff826ef5913caf5a65a25f4ba07fb93491b95/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3fbba24d66da3d0e3956b714ce8d85132852c513","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3fbba24d66da3d0e3956b714ce8d85132852c513","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3fbba24d66da3d0e3956b714ce8d85132852c513"}]},{"sha":"abad0af52aab39c9bc71ccc14d18fa9d3feba552","node_id":"C_kwDOF83__NoAKGFiYWQwYWY1MmFhYjM5YzliYzcxY2NjMTRkMThmYTlkM2ZlYmE1NTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"message":"Dummy commit","tree":{"sha":"0a6c84ea7501b99a85318e386203626002901235","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0a6c84ea7501b99a85318e386203626002901235"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/abad0af52aab39c9bc71ccc14d18fa9d3feba552","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/abad0af52aab39c9bc71ccc14d18fa9d3feba552","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/abad0af52aab39c9bc71ccc14d18fa9d3feba552","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/abad0af52aab39c9bc71ccc14d18fa9d3feba552/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a1dff826ef5913caf5a65a25f4ba07fb93491b95","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1dff826ef5913caf5a65a25f4ba07fb93491b95","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1dff826ef5913caf5a65a25f4ba07fb93491b95"}]},{"sha":"f9512e1d00f85906d4751949313c1ee637c8dc9f","node_id":"C_kwDOF83__NoAKGY5NTEyZTFkMDBmODU5MDZkNDc1MTk0OTMxM2MxZWU2MzdjOGRjOWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"message":"Dummy commit","tree":{"sha":"2c4f4c989c0ee288f218f44a46f5011300b5548c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2c4f4c989c0ee288f218f44a46f5011300b5548c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f9512e1d00f85906d4751949313c1ee637c8dc9f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f9512e1d00f85906d4751949313c1ee637c8dc9f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f9512e1d00f85906d4751949313c1ee637c8dc9f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f9512e1d00f85906d4751949313c1ee637c8dc9f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"abad0af52aab39c9bc71ccc14d18fa9d3feba552","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/abad0af52aab39c9bc71ccc14d18fa9d3feba552","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/abad0af52aab39c9bc71ccc14d18fa9d3feba552"}]},{"sha":"7331eb4187f8485e4803f3de97d4b628727e71b4","node_id":"C_kwDOF83__NoAKDczMzFlYjQxODdmODQ4NWU0ODAzZjNkZTk3ZDRiNjI4NzI3ZTcxYjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"message":"Dummy commit","tree":{"sha":"7bc22158ab8432f09706ed3c1bd660b5101f5d4b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7bc22158ab8432f09706ed3c1bd660b5101f5d4b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7331eb4187f8485e4803f3de97d4b628727e71b4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7331eb4187f8485e4803f3de97d4b628727e71b4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7331eb4187f8485e4803f3de97d4b628727e71b4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7331eb4187f8485e4803f3de97d4b628727e71b4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f9512e1d00f85906d4751949313c1ee637c8dc9f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f9512e1d00f85906d4751949313c1ee637c8dc9f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f9512e1d00f85906d4751949313c1ee637c8dc9f"}]},{"sha":"4ad52e620631c9345297c50bb2d6f533b149b9a7","node_id":"C_kwDOF83__NoAKDRhZDUyZTYyMDYzMWM5MzQ1Mjk3YzUwYmIyZDZmNTMzYjE0OWI5YTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"message":"Dummy commit","tree":{"sha":"5fe7a66882b2a9a8f8251707e3dd0fa20da582b8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5fe7a66882b2a9a8f8251707e3dd0fa20da582b8"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4ad52e620631c9345297c50bb2d6f533b149b9a7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4ad52e620631c9345297c50bb2d6f533b149b9a7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4ad52e620631c9345297c50bb2d6f533b149b9a7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4ad52e620631c9345297c50bb2d6f533b149b9a7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7331eb4187f8485e4803f3de97d4b628727e71b4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7331eb4187f8485e4803f3de97d4b628727e71b4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7331eb4187f8485e4803f3de97d4b628727e71b4"}]},{"sha":"8d3cda00a068d04d1d3bf36d7165c23cd80c4eb0","node_id":"C_kwDOF83__NoAKDhkM2NkYTAwYTA2OGQwNGQxZDNiZjM2ZDcxNjVjMjNjZDgwYzRlYjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"message":"Dummy commit","tree":{"sha":"54c6847fa8c36f736100e928ef8e7545b6a6d11b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/54c6847fa8c36f736100e928ef8e7545b6a6d11b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8d3cda00a068d04d1d3bf36d7165c23cd80c4eb0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8d3cda00a068d04d1d3bf36d7165c23cd80c4eb0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8d3cda00a068d04d1d3bf36d7165c23cd80c4eb0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8d3cda00a068d04d1d3bf36d7165c23cd80c4eb0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4ad52e620631c9345297c50bb2d6f533b149b9a7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4ad52e620631c9345297c50bb2d6f533b149b9a7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4ad52e620631c9345297c50bb2d6f533b149b9a7"}]},{"sha":"3a3982558725e13e7f39b32b61384a1bdb619e06","node_id":"C_kwDOF83__NoAKDNhMzk4MjU1ODcyNWUxM2U3ZjM5YjMyYjYxMzg0YTFiZGI2MTllMDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:16Z"},"message":"Dummy commit","tree":{"sha":"8f7f409e38b0abdf437caf0d9ad2e3a06fa88199","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8f7f409e38b0abdf437caf0d9ad2e3a06fa88199"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3a3982558725e13e7f39b32b61384a1bdb619e06","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3a3982558725e13e7f39b32b61384a1bdb619e06","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3a3982558725e13e7f39b32b61384a1bdb619e06","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3a3982558725e13e7f39b32b61384a1bdb619e06/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8d3cda00a068d04d1d3bf36d7165c23cd80c4eb0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8d3cda00a068d04d1d3bf36d7165c23cd80c4eb0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8d3cda00a068d04d1d3bf36d7165c23cd80c4eb0"}]},{"sha":"00b5506b3b0d38509ac1ac80b98e4f5995bc81bd","node_id":"C_kwDOF83__NoAKDAwYjU1MDZiM2IwZDM4NTA5YWMxYWM4MGI5OGU0ZjU5OTViYzgxYmQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"message":"Dummy commit","tree":{"sha":"16218aba0366f020aafa1a2ef7250cd109d15902","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/16218aba0366f020aafa1a2ef7250cd109d15902"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/00b5506b3b0d38509ac1ac80b98e4f5995bc81bd","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/00b5506b3b0d38509ac1ac80b98e4f5995bc81bd","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/00b5506b3b0d38509ac1ac80b98e4f5995bc81bd","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/00b5506b3b0d38509ac1ac80b98e4f5995bc81bd/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3a3982558725e13e7f39b32b61384a1bdb619e06","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3a3982558725e13e7f39b32b61384a1bdb619e06","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3a3982558725e13e7f39b32b61384a1bdb619e06"}]},{"sha":"1f6c04c235412f167a3a38ab47936b451d463c55","node_id":"C_kwDOF83__NoAKDFmNmMwNGMyMzU0MTJmMTY3YTNhMzhhYjQ3OTM2YjQ1MWQ0NjNjNTU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"message":"Dummy commit","tree":{"sha":"8022034aea56b18b5399a5a804d0ad3765aa929f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8022034aea56b18b5399a5a804d0ad3765aa929f"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1f6c04c235412f167a3a38ab47936b451d463c55","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1f6c04c235412f167a3a38ab47936b451d463c55","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1f6c04c235412f167a3a38ab47936b451d463c55","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1f6c04c235412f167a3a38ab47936b451d463c55/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"00b5506b3b0d38509ac1ac80b98e4f5995bc81bd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/00b5506b3b0d38509ac1ac80b98e4f5995bc81bd","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/00b5506b3b0d38509ac1ac80b98e4f5995bc81bd"}]},{"sha":"913dc3ca99993887262246774b9c0c7aa6e1cd14","node_id":"C_kwDOF83__NoAKDkxM2RjM2NhOTk5OTM4ODcyNjIyNDY3NzRiOWMwYzdhYTZlMWNkMTQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"message":"Dummy commit","tree":{"sha":"992a9fcbc1f6273c38bfb5faa56b9031cc91e9ee","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/992a9fcbc1f6273c38bfb5faa56b9031cc91e9ee"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/913dc3ca99993887262246774b9c0c7aa6e1cd14","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/913dc3ca99993887262246774b9c0c7aa6e1cd14","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/913dc3ca99993887262246774b9c0c7aa6e1cd14","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/913dc3ca99993887262246774b9c0c7aa6e1cd14/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1f6c04c235412f167a3a38ab47936b451d463c55","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1f6c04c235412f167a3a38ab47936b451d463c55","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1f6c04c235412f167a3a38ab47936b451d463c55"}]},{"sha":"7e827ab05b4e9b6d6616e19e97b8c618ee5c1aa3","node_id":"C_kwDOF83__NoAKDdlODI3YWIwNWI0ZTliNmQ2NjE2ZTE5ZTk3YjhjNjE4ZWU1YzFhYTM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"message":"Dummy commit","tree":{"sha":"ded43869617627529766ca425670bd687fe8e2d5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ded43869617627529766ca425670bd687fe8e2d5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7e827ab05b4e9b6d6616e19e97b8c618ee5c1aa3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7e827ab05b4e9b6d6616e19e97b8c618ee5c1aa3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7e827ab05b4e9b6d6616e19e97b8c618ee5c1aa3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7e827ab05b4e9b6d6616e19e97b8c618ee5c1aa3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"913dc3ca99993887262246774b9c0c7aa6e1cd14","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/913dc3ca99993887262246774b9c0c7aa6e1cd14","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/913dc3ca99993887262246774b9c0c7aa6e1cd14"}]}] + +https +GET +api.github.com +None +/repositories/399376380/pulls/18/commits?per_page=100&page=3 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"9f394c6209c542607577a974e9461c018e5dd86ff3ea6dd35650616ab5bbd2d0"'), ('Last-Modified', 'Tue, 16 Apr 2024 13:07:28 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('Link', '; rel="prev", ; rel="first"'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4332'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '668'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8530:29BB20:84F5A77:85A36BE:661E79FE')] +[{"sha":"ed97a7a33bd765fd17a22da5724804d9c5ac4b9a","node_id":"C_kwDOF83__NoAKGVkOTdhN2EzM2JkNzY1ZmQxN2EyMmRhNTcyNDgwNGQ5YzVhYzRiOWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"message":"Dummy commit","tree":{"sha":"d41a02b6ef23eef82f1942d985b0028cbc1d24fb","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d41a02b6ef23eef82f1942d985b0028cbc1d24fb"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ed97a7a33bd765fd17a22da5724804d9c5ac4b9a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ed97a7a33bd765fd17a22da5724804d9c5ac4b9a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ed97a7a33bd765fd17a22da5724804d9c5ac4b9a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ed97a7a33bd765fd17a22da5724804d9c5ac4b9a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7e827ab05b4e9b6d6616e19e97b8c618ee5c1aa3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7e827ab05b4e9b6d6616e19e97b8c618ee5c1aa3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7e827ab05b4e9b6d6616e19e97b8c618ee5c1aa3"}]},{"sha":"accbfaf43382db694a867d3db5d8f07d3eade3d8","node_id":"C_kwDOF83__NoAKGFjY2JmYWY0MzM4MmRiNjk0YTg2N2QzZGI1ZDhmMDdkM2VhZGUzZDg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"message":"Dummy commit","tree":{"sha":"67a48d07a6938b59f7d485549e9bbe06cddb98a3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/67a48d07a6938b59f7d485549e9bbe06cddb98a3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/accbfaf43382db694a867d3db5d8f07d3eade3d8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/accbfaf43382db694a867d3db5d8f07d3eade3d8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/accbfaf43382db694a867d3db5d8f07d3eade3d8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/accbfaf43382db694a867d3db5d8f07d3eade3d8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ed97a7a33bd765fd17a22da5724804d9c5ac4b9a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ed97a7a33bd765fd17a22da5724804d9c5ac4b9a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ed97a7a33bd765fd17a22da5724804d9c5ac4b9a"}]},{"sha":"a24680e309732889eee61a8d9f3d43b8d30f589c","node_id":"C_kwDOF83__NoAKGEyNDY4MGUzMDk3MzI4ODllZWU2MWE4ZDlmM2Q0M2I4ZDMwZjU4OWM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:17Z"},"message":"Dummy commit","tree":{"sha":"eeaf45f1ea3c516c908cbfd7e092436cc024ba8c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/eeaf45f1ea3c516c908cbfd7e092436cc024ba8c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a24680e309732889eee61a8d9f3d43b8d30f589c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a24680e309732889eee61a8d9f3d43b8d30f589c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a24680e309732889eee61a8d9f3d43b8d30f589c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a24680e309732889eee61a8d9f3d43b8d30f589c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"accbfaf43382db694a867d3db5d8f07d3eade3d8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/accbfaf43382db694a867d3db5d8f07d3eade3d8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/accbfaf43382db694a867d3db5d8f07d3eade3d8"}]},{"sha":"629933d8edb05406b371f78547decf82124577c3","node_id":"C_kwDOF83__NoAKDYyOTkzM2Q4ZWRiMDU0MDZiMzcxZjc4NTQ3ZGVjZjgyMTI0NTc3YzM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"message":"Dummy commit","tree":{"sha":"808b015b6465dbd656e10c673fc66af11dfb01d9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/808b015b6465dbd656e10c673fc66af11dfb01d9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/629933d8edb05406b371f78547decf82124577c3","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/629933d8edb05406b371f78547decf82124577c3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/629933d8edb05406b371f78547decf82124577c3","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/629933d8edb05406b371f78547decf82124577c3/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a24680e309732889eee61a8d9f3d43b8d30f589c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a24680e309732889eee61a8d9f3d43b8d30f589c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a24680e309732889eee61a8d9f3d43b8d30f589c"}]},{"sha":"9b0f895d4974cf19ab8dc2f8cc2ccd41f953b5ad","node_id":"C_kwDOF83__NoAKDliMGY4OTVkNDk3NGNmMTlhYjhkYzJmOGNjMmNjZDQxZjk1M2I1YWQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"message":"Dummy commit","tree":{"sha":"6ee3c9c6606331e4eaeba1a31744a7f9f8e9e9d5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6ee3c9c6606331e4eaeba1a31744a7f9f8e9e9d5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9b0f895d4974cf19ab8dc2f8cc2ccd41f953b5ad","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9b0f895d4974cf19ab8dc2f8cc2ccd41f953b5ad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9b0f895d4974cf19ab8dc2f8cc2ccd41f953b5ad","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9b0f895d4974cf19ab8dc2f8cc2ccd41f953b5ad/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"629933d8edb05406b371f78547decf82124577c3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/629933d8edb05406b371f78547decf82124577c3","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/629933d8edb05406b371f78547decf82124577c3"}]},{"sha":"8d97471dcff1b3a0ff059359073fa1986838f835","node_id":"C_kwDOF83__NoAKDhkOTc0NzFkY2ZmMWIzYTBmZjA1OTM1OTA3M2ZhMTk4NjgzOGY4MzU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"message":"Dummy commit","tree":{"sha":"65127ca4e31aeb9df644ed520801209344558afc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/65127ca4e31aeb9df644ed520801209344558afc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8d97471dcff1b3a0ff059359073fa1986838f835","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8d97471dcff1b3a0ff059359073fa1986838f835","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8d97471dcff1b3a0ff059359073fa1986838f835","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8d97471dcff1b3a0ff059359073fa1986838f835/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"9b0f895d4974cf19ab8dc2f8cc2ccd41f953b5ad","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9b0f895d4974cf19ab8dc2f8cc2ccd41f953b5ad","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9b0f895d4974cf19ab8dc2f8cc2ccd41f953b5ad"}]},{"sha":"1c369c9d39e9a55343b85262f5cf4c549518852d","node_id":"C_kwDOF83__NoAKDFjMzY5YzlkMzllOWE1NTM0M2I4NTI2MmY1Y2Y0YzU0OTUxODg1MmQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"message":"Dummy commit","tree":{"sha":"642978dbb98791c21c05defe529c67ecd1051eac","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/642978dbb98791c21c05defe529c67ecd1051eac"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1c369c9d39e9a55343b85262f5cf4c549518852d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1c369c9d39e9a55343b85262f5cf4c549518852d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1c369c9d39e9a55343b85262f5cf4c549518852d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1c369c9d39e9a55343b85262f5cf4c549518852d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8d97471dcff1b3a0ff059359073fa1986838f835","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8d97471dcff1b3a0ff059359073fa1986838f835","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8d97471dcff1b3a0ff059359073fa1986838f835"}]},{"sha":"0f015651862be90014a013fa1af2b5e79b86eed5","node_id":"C_kwDOF83__NoAKDBmMDE1NjUxODYyYmU5MDAxNGEwMTNmYTFhZjJiNWU3OWI4NmVlZDU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"message":"Dummy commit","tree":{"sha":"6ce4ef3c77c165eb1fb12224bba0a686d704fa0a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/6ce4ef3c77c165eb1fb12224bba0a686d704fa0a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0f015651862be90014a013fa1af2b5e79b86eed5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0f015651862be90014a013fa1af2b5e79b86eed5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0f015651862be90014a013fa1af2b5e79b86eed5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0f015651862be90014a013fa1af2b5e79b86eed5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1c369c9d39e9a55343b85262f5cf4c549518852d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1c369c9d39e9a55343b85262f5cf4c549518852d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1c369c9d39e9a55343b85262f5cf4c549518852d"}]},{"sha":"80f31054a731e876a87ba0dd42bfb086d40fd98d","node_id":"C_kwDOF83__NoAKDgwZjMxMDU0YTczMWU4NzZhODdiYTBkZDQyYmZiMDg2ZDQwZmQ5OGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"message":"Dummy commit","tree":{"sha":"2c253807045f7cb915c41708e62c97babb51ca4d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2c253807045f7cb915c41708e62c97babb51ca4d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/80f31054a731e876a87ba0dd42bfb086d40fd98d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/80f31054a731e876a87ba0dd42bfb086d40fd98d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/80f31054a731e876a87ba0dd42bfb086d40fd98d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/80f31054a731e876a87ba0dd42bfb086d40fd98d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0f015651862be90014a013fa1af2b5e79b86eed5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0f015651862be90014a013fa1af2b5e79b86eed5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0f015651862be90014a013fa1af2b5e79b86eed5"}]},{"sha":"693672fbfdbd205fb910dbc99b2c473e1b35accc","node_id":"C_kwDOF83__NoAKDY5MzY3MmZiZmRiZDIwNWZiOTEwZGJjOTliMmM0NzNlMWIzNWFjY2M","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"message":"Dummy commit","tree":{"sha":"34722fa88fba577e91efc787eae31e3b75e90707","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/34722fa88fba577e91efc787eae31e3b75e90707"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/693672fbfdbd205fb910dbc99b2c473e1b35accc","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/693672fbfdbd205fb910dbc99b2c473e1b35accc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/693672fbfdbd205fb910dbc99b2c473e1b35accc","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/693672fbfdbd205fb910dbc99b2c473e1b35accc/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"80f31054a731e876a87ba0dd42bfb086d40fd98d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/80f31054a731e876a87ba0dd42bfb086d40fd98d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/80f31054a731e876a87ba0dd42bfb086d40fd98d"}]},{"sha":"6b13f49b13d367929562138cb2d7c6545a781b51","node_id":"C_kwDOF83__NoAKDZiMTNmNDliMTNkMzY3OTI5NTYyMTM4Y2IyZDdjNjU0NWE3ODFiNTE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:18Z"},"message":"Dummy commit","tree":{"sha":"26857a6b84125db32f2c3fd9facf7a92f4166d57","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/26857a6b84125db32f2c3fd9facf7a92f4166d57"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/6b13f49b13d367929562138cb2d7c6545a781b51","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b13f49b13d367929562138cb2d7c6545a781b51","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b13f49b13d367929562138cb2d7c6545a781b51","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b13f49b13d367929562138cb2d7c6545a781b51/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"693672fbfdbd205fb910dbc99b2c473e1b35accc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/693672fbfdbd205fb910dbc99b2c473e1b35accc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/693672fbfdbd205fb910dbc99b2c473e1b35accc"}]},{"sha":"b87eb95c94ffd4bce4baea58bbeec2dbe8eac32c","node_id":"C_kwDOF83__NoAKGI4N2ViOTVjOTRmZmQ0YmNlNGJhZWE1OGJiZWVjMmRiZThlYWMzMmM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"message":"Dummy commit","tree":{"sha":"a0980417c69d8524f00249979d8841c0c1b9ebf1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a0980417c69d8524f00249979d8841c0c1b9ebf1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b87eb95c94ffd4bce4baea58bbeec2dbe8eac32c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b87eb95c94ffd4bce4baea58bbeec2dbe8eac32c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b87eb95c94ffd4bce4baea58bbeec2dbe8eac32c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b87eb95c94ffd4bce4baea58bbeec2dbe8eac32c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"6b13f49b13d367929562138cb2d7c6545a781b51","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/6b13f49b13d367929562138cb2d7c6545a781b51","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/6b13f49b13d367929562138cb2d7c6545a781b51"}]},{"sha":"3779bbd969d64824ef28f386fc0471f4253cb1ff","node_id":"C_kwDOF83__NoAKDM3NzliYmQ5NjlkNjQ4MjRlZjI4ZjM4NmZjMDQ3MWY0MjUzY2IxZmY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"message":"Dummy commit","tree":{"sha":"10f512985144b632375d379d856e15aabc405baa","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/10f512985144b632375d379d856e15aabc405baa"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3779bbd969d64824ef28f386fc0471f4253cb1ff","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3779bbd969d64824ef28f386fc0471f4253cb1ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3779bbd969d64824ef28f386fc0471f4253cb1ff","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3779bbd969d64824ef28f386fc0471f4253cb1ff/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b87eb95c94ffd4bce4baea58bbeec2dbe8eac32c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b87eb95c94ffd4bce4baea58bbeec2dbe8eac32c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b87eb95c94ffd4bce4baea58bbeec2dbe8eac32c"}]},{"sha":"2b8a6f51ac836668d66aeaeec8fd353ff6885c45","node_id":"C_kwDOF83__NoAKDJiOGE2ZjUxYWM4MzY2NjhkNjZhZWFlZWM4ZmQzNTNmZjY4ODVjNDU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"message":"Dummy commit","tree":{"sha":"37fdaddf274ddcf9eaba486b527eeaa41ea9135c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/37fdaddf274ddcf9eaba486b527eeaa41ea9135c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2b8a6f51ac836668d66aeaeec8fd353ff6885c45","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2b8a6f51ac836668d66aeaeec8fd353ff6885c45","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2b8a6f51ac836668d66aeaeec8fd353ff6885c45","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2b8a6f51ac836668d66aeaeec8fd353ff6885c45/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3779bbd969d64824ef28f386fc0471f4253cb1ff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3779bbd969d64824ef28f386fc0471f4253cb1ff","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3779bbd969d64824ef28f386fc0471f4253cb1ff"}]},{"sha":"695075c9324912bec4dd593e4343f26f966906f4","node_id":"C_kwDOF83__NoAKDY5NTA3NWM5MzI0OTEyYmVjNGRkNTkzZTQzNDNmMjZmOTY2OTA2ZjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"message":"Dummy commit","tree":{"sha":"83a6747f7708a313437f30844ccfffcd3a191457","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/83a6747f7708a313437f30844ccfffcd3a191457"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/695075c9324912bec4dd593e4343f26f966906f4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695075c9324912bec4dd593e4343f26f966906f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695075c9324912bec4dd593e4343f26f966906f4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695075c9324912bec4dd593e4343f26f966906f4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2b8a6f51ac836668d66aeaeec8fd353ff6885c45","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2b8a6f51ac836668d66aeaeec8fd353ff6885c45","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2b8a6f51ac836668d66aeaeec8fd353ff6885c45"}]},{"sha":"104ccf0bce1424f99bd7f6b0225c835dffa2f180","node_id":"C_kwDOF83__NoAKDEwNGNjZjBiY2UxNDI0Zjk5YmQ3ZjZiMDIyNWM4MzVkZmZhMmYxODA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"message":"Dummy commit","tree":{"sha":"5b1fa64ebc79fdb25a4e04c19976f343ecf02ef5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5b1fa64ebc79fdb25a4e04c19976f343ecf02ef5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/104ccf0bce1424f99bd7f6b0225c835dffa2f180","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/104ccf0bce1424f99bd7f6b0225c835dffa2f180","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/104ccf0bce1424f99bd7f6b0225c835dffa2f180","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/104ccf0bce1424f99bd7f6b0225c835dffa2f180/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"695075c9324912bec4dd593e4343f26f966906f4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/695075c9324912bec4dd593e4343f26f966906f4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/695075c9324912bec4dd593e4343f26f966906f4"}]},{"sha":"3ffd9ecc913659104ebec4bd60d4fcd8545b1581","node_id":"C_kwDOF83__NoAKDNmZmQ5ZWNjOTEzNjU5MTA0ZWJlYzRiZDYwZDRmY2Q4NTQ1YjE1ODE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"message":"Dummy commit","tree":{"sha":"e82d233b929a54aecf0c6907374f74e53707b2fd","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e82d233b929a54aecf0c6907374f74e53707b2fd"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3ffd9ecc913659104ebec4bd60d4fcd8545b1581","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3ffd9ecc913659104ebec4bd60d4fcd8545b1581","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3ffd9ecc913659104ebec4bd60d4fcd8545b1581","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3ffd9ecc913659104ebec4bd60d4fcd8545b1581/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"104ccf0bce1424f99bd7f6b0225c835dffa2f180","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/104ccf0bce1424f99bd7f6b0225c835dffa2f180","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/104ccf0bce1424f99bd7f6b0225c835dffa2f180"}]},{"sha":"8ff44554695ca3cbf76ab995681222806798d546","node_id":"C_kwDOF83__NoAKDhmZjQ0NTU0Njk1Y2EzY2JmNzZhYjk5NTY4MTIyMjgwNjc5OGQ1NDY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:19Z"},"message":"Dummy commit","tree":{"sha":"16670f4d125f5ee6a1ceae4c0725d4f5e920dd7b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/16670f4d125f5ee6a1ceae4c0725d4f5e920dd7b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/8ff44554695ca3cbf76ab995681222806798d546","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8ff44554695ca3cbf76ab995681222806798d546","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8ff44554695ca3cbf76ab995681222806798d546","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8ff44554695ca3cbf76ab995681222806798d546/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3ffd9ecc913659104ebec4bd60d4fcd8545b1581","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3ffd9ecc913659104ebec4bd60d4fcd8545b1581","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3ffd9ecc913659104ebec4bd60d4fcd8545b1581"}]},{"sha":"edd9c398792bd6fc01cc720605d323a604fd24f5","node_id":"C_kwDOF83__NoAKGVkZDljMzk4NzkyYmQ2ZmMwMWNjNzIwNjA1ZDMyM2E2MDRmZDI0ZjU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"message":"Dummy commit","tree":{"sha":"5027d194b716b1af4fa615c06efd2c3cdc3fed81","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5027d194b716b1af4fa615c06efd2c3cdc3fed81"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/edd9c398792bd6fc01cc720605d323a604fd24f5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/edd9c398792bd6fc01cc720605d323a604fd24f5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/edd9c398792bd6fc01cc720605d323a604fd24f5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/edd9c398792bd6fc01cc720605d323a604fd24f5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"8ff44554695ca3cbf76ab995681222806798d546","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/8ff44554695ca3cbf76ab995681222806798d546","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/8ff44554695ca3cbf76ab995681222806798d546"}]},{"sha":"c67974c38eb33eda80fa2ee6f94cdb85c1dec3d4","node_id":"C_kwDOF83__NoAKGM2Nzk3NGMzOGViMzNlZGE4MGZhMmVlNmY5NGNkYjg1YzFkZWMzZDQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"message":"Dummy commit","tree":{"sha":"193a511ce088f48f75d422529b78fcda19946c3c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/193a511ce088f48f75d422529b78fcda19946c3c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c67974c38eb33eda80fa2ee6f94cdb85c1dec3d4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c67974c38eb33eda80fa2ee6f94cdb85c1dec3d4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c67974c38eb33eda80fa2ee6f94cdb85c1dec3d4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c67974c38eb33eda80fa2ee6f94cdb85c1dec3d4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"edd9c398792bd6fc01cc720605d323a604fd24f5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/edd9c398792bd6fc01cc720605d323a604fd24f5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/edd9c398792bd6fc01cc720605d323a604fd24f5"}]},{"sha":"1cf179c5658a8581d19caa49585a1b5876d1e6d2","node_id":"C_kwDOF83__NoAKDFjZjE3OWM1NjU4YTg1ODFkMTljYWE0OTU4NWExYjU4NzZkMWU2ZDI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"message":"Dummy commit","tree":{"sha":"90acb6d262dbb8b3dbeccd9c6457d00367b7793c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/90acb6d262dbb8b3dbeccd9c6457d00367b7793c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1cf179c5658a8581d19caa49585a1b5876d1e6d2","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1cf179c5658a8581d19caa49585a1b5876d1e6d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1cf179c5658a8581d19caa49585a1b5876d1e6d2","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1cf179c5658a8581d19caa49585a1b5876d1e6d2/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c67974c38eb33eda80fa2ee6f94cdb85c1dec3d4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c67974c38eb33eda80fa2ee6f94cdb85c1dec3d4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c67974c38eb33eda80fa2ee6f94cdb85c1dec3d4"}]},{"sha":"aee400b1e74f03f8809726e1e549bd3569d5755d","node_id":"C_kwDOF83__NoAKGFlZTQwMGIxZTc0ZjAzZjg4MDk3MjZlMWU1NDliZDM1NjlkNTc1NWQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"message":"Dummy commit","tree":{"sha":"d5f0f6a82fc707f35b8b63b23492f68cee0189e0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d5f0f6a82fc707f35b8b63b23492f68cee0189e0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/aee400b1e74f03f8809726e1e549bd3569d5755d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/aee400b1e74f03f8809726e1e549bd3569d5755d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/aee400b1e74f03f8809726e1e549bd3569d5755d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/aee400b1e74f03f8809726e1e549bd3569d5755d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1cf179c5658a8581d19caa49585a1b5876d1e6d2","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1cf179c5658a8581d19caa49585a1b5876d1e6d2","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1cf179c5658a8581d19caa49585a1b5876d1e6d2"}]},{"sha":"d1c2ed384dc15e92607cd072488ffdea6fc9d617","node_id":"C_kwDOF83__NoAKGQxYzJlZDM4NGRjMTVlOTI2MDdjZDA3MjQ4OGZmZGVhNmZjOWQ2MTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"message":"Dummy commit","tree":{"sha":"f63feb8101dacf01338ecc59ab77148957aa205d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/f63feb8101dacf01338ecc59ab77148957aa205d"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/d1c2ed384dc15e92607cd072488ffdea6fc9d617","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d1c2ed384dc15e92607cd072488ffdea6fc9d617","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d1c2ed384dc15e92607cd072488ffdea6fc9d617","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d1c2ed384dc15e92607cd072488ffdea6fc9d617/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"aee400b1e74f03f8809726e1e549bd3569d5755d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/aee400b1e74f03f8809726e1e549bd3569d5755d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/aee400b1e74f03f8809726e1e549bd3569d5755d"}]},{"sha":"f8a4275e29ace0702f43e2b8785642752bd7222b","node_id":"C_kwDOF83__NoAKGY4YTQyNzVlMjlhY2UwNzAyZjQzZTJiODc4NTY0Mjc1MmJkNzIyMmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"message":"Dummy commit","tree":{"sha":"7eae1013b3789ca3c5f9c399f3d6ce0e261afb81","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/7eae1013b3789ca3c5f9c399f3d6ce0e261afb81"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f8a4275e29ace0702f43e2b8785642752bd7222b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f8a4275e29ace0702f43e2b8785642752bd7222b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f8a4275e29ace0702f43e2b8785642752bd7222b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f8a4275e29ace0702f43e2b8785642752bd7222b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"d1c2ed384dc15e92607cd072488ffdea6fc9d617","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/d1c2ed384dc15e92607cd072488ffdea6fc9d617","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/d1c2ed384dc15e92607cd072488ffdea6fc9d617"}]},{"sha":"1f81a735ecb96b8b9d857157c70738423a5033f5","node_id":"C_kwDOF83__NoAKDFmODFhNzM1ZWNiOTZiOGI5ZDg1NzE1N2M3MDczODQyM2E1MDMzZjU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:20Z"},"message":"Dummy commit","tree":{"sha":"e0212d4abd9c7c75fdfed176607ad24dc2978354","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e0212d4abd9c7c75fdfed176607ad24dc2978354"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1f81a735ecb96b8b9d857157c70738423a5033f5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1f81a735ecb96b8b9d857157c70738423a5033f5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1f81a735ecb96b8b9d857157c70738423a5033f5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1f81a735ecb96b8b9d857157c70738423a5033f5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f8a4275e29ace0702f43e2b8785642752bd7222b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f8a4275e29ace0702f43e2b8785642752bd7222b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f8a4275e29ace0702f43e2b8785642752bd7222b"}]},{"sha":"424c543ee86cdce7692d99c698f64b0347e3fbb8","node_id":"C_kwDOF83__NoAKDQyNGM1NDNlZTg2Y2RjZTc2OTJkOTljNjk4ZjY0YjAzNDdlM2ZiYjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"message":"Dummy commit","tree":{"sha":"3ef538706a64d4ade2d9816773e3e54883eb826c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/3ef538706a64d4ade2d9816773e3e54883eb826c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/424c543ee86cdce7692d99c698f64b0347e3fbb8","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/424c543ee86cdce7692d99c698f64b0347e3fbb8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/424c543ee86cdce7692d99c698f64b0347e3fbb8","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/424c543ee86cdce7692d99c698f64b0347e3fbb8/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1f81a735ecb96b8b9d857157c70738423a5033f5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1f81a735ecb96b8b9d857157c70738423a5033f5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1f81a735ecb96b8b9d857157c70738423a5033f5"}]},{"sha":"5589a9b179a554ea0d35d281022586a0b117e3f5","node_id":"C_kwDOF83__NoAKDU1ODlhOWIxNzlhNTU0ZWEwZDM1ZDI4MTAyMjU4NmEwYjExN2UzZjU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"message":"Dummy commit","tree":{"sha":"e14f25a25a988544295105f59bfb160b73d94da3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e14f25a25a988544295105f59bfb160b73d94da3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/5589a9b179a554ea0d35d281022586a0b117e3f5","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5589a9b179a554ea0d35d281022586a0b117e3f5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5589a9b179a554ea0d35d281022586a0b117e3f5","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5589a9b179a554ea0d35d281022586a0b117e3f5/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"424c543ee86cdce7692d99c698f64b0347e3fbb8","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/424c543ee86cdce7692d99c698f64b0347e3fbb8","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/424c543ee86cdce7692d99c698f64b0347e3fbb8"}]},{"sha":"40557ddb576121de41cc3a58250f92f34d37fc2e","node_id":"C_kwDOF83__NoAKDQwNTU3ZGRiNTc2MTIxZGU0MWNjM2E1ODI1MGY5MmYzNGQzN2ZjMmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"message":"Dummy commit","tree":{"sha":"48b9ee85ff2790ec0da0e43769d56a045a693aea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/48b9ee85ff2790ec0da0e43769d56a045a693aea"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/40557ddb576121de41cc3a58250f92f34d37fc2e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/40557ddb576121de41cc3a58250f92f34d37fc2e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/40557ddb576121de41cc3a58250f92f34d37fc2e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/40557ddb576121de41cc3a58250f92f34d37fc2e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"5589a9b179a554ea0d35d281022586a0b117e3f5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/5589a9b179a554ea0d35d281022586a0b117e3f5","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/5589a9b179a554ea0d35d281022586a0b117e3f5"}]},{"sha":"2fb456b5ff29c32a89b39a0e23a11c7a9fde4407","node_id":"C_kwDOF83__NoAKDJmYjQ1NmI1ZmYyOWMzMmE4OWIzOWEwZTIzYTExYzdhOWZkZTQ0MDc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"message":"Dummy commit","tree":{"sha":"a7f61fd234ec2513be25904d2d0dbbd1a9f65cf1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/a7f61fd234ec2513be25904d2d0dbbd1a9f65cf1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2fb456b5ff29c32a89b39a0e23a11c7a9fde4407","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2fb456b5ff29c32a89b39a0e23a11c7a9fde4407","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2fb456b5ff29c32a89b39a0e23a11c7a9fde4407","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2fb456b5ff29c32a89b39a0e23a11c7a9fde4407/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"40557ddb576121de41cc3a58250f92f34d37fc2e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/40557ddb576121de41cc3a58250f92f34d37fc2e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/40557ddb576121de41cc3a58250f92f34d37fc2e"}]},{"sha":"b1ec87b384e6bb4bc9a59c509cdf09bcca089116","node_id":"C_kwDOF83__NoAKGIxZWM4N2IzODRlNmJiNGJjOWE1OWM1MDljZGYwOWJjY2EwODkxMTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"message":"Dummy commit","tree":{"sha":"490344693f9bff8aff1a2c61cd1036a76f7e8cb0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/490344693f9bff8aff1a2c61cd1036a76f7e8cb0"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/b1ec87b384e6bb4bc9a59c509cdf09bcca089116","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1ec87b384e6bb4bc9a59c509cdf09bcca089116","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1ec87b384e6bb4bc9a59c509cdf09bcca089116","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1ec87b384e6bb4bc9a59c509cdf09bcca089116/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2fb456b5ff29c32a89b39a0e23a11c7a9fde4407","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2fb456b5ff29c32a89b39a0e23a11c7a9fde4407","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2fb456b5ff29c32a89b39a0e23a11c7a9fde4407"}]},{"sha":"7653a1552550e3e601d4cf88985a9e6c96478fb4","node_id":"C_kwDOF83__NoAKDc2NTNhMTU1MjU1MGUzZTYwMWQ0Y2Y4ODk4NWE5ZTZjOTY0NzhmYjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"message":"Dummy commit","tree":{"sha":"9d286f8c335082766098675a9d70d1f19f15d00c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9d286f8c335082766098675a9d70d1f19f15d00c"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/7653a1552550e3e601d4cf88985a9e6c96478fb4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7653a1552550e3e601d4cf88985a9e6c96478fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7653a1552550e3e601d4cf88985a9e6c96478fb4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7653a1552550e3e601d4cf88985a9e6c96478fb4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"b1ec87b384e6bb4bc9a59c509cdf09bcca089116","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/b1ec87b384e6bb4bc9a59c509cdf09bcca089116","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/b1ec87b384e6bb4bc9a59c509cdf09bcca089116"}]},{"sha":"be284b17a51ba91f01f82782f5f26191ed6d816e","node_id":"C_kwDOF83__NoAKGJlMjg0YjE3YTUxYmE5MWYwMWY4Mjc4MmY1ZjI2MTkxZWQ2ZDgxNmU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"message":"Dummy commit","tree":{"sha":"15ae64c17df3e418dfa9092fa4ce09e36f5ea523","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/15ae64c17df3e418dfa9092fa4ce09e36f5ea523"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/be284b17a51ba91f01f82782f5f26191ed6d816e","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/be284b17a51ba91f01f82782f5f26191ed6d816e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/be284b17a51ba91f01f82782f5f26191ed6d816e","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/be284b17a51ba91f01f82782f5f26191ed6d816e/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"7653a1552550e3e601d4cf88985a9e6c96478fb4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/7653a1552550e3e601d4cf88985a9e6c96478fb4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/7653a1552550e3e601d4cf88985a9e6c96478fb4"}]},{"sha":"bc74108e799f641675daf9e6584f08786b7bc3df","node_id":"C_kwDOF83__NoAKGJjNzQxMDhlNzk5ZjY0MTY3NWRhZjllNjU4NGYwODc4NmI3YmMzZGY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:21Z"},"message":"Dummy commit","tree":{"sha":"1fb5a3ac15e60feb9e2844e1b10a5fef6f3552b5","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1fb5a3ac15e60feb9e2844e1b10a5fef6f3552b5"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/bc74108e799f641675daf9e6584f08786b7bc3df","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bc74108e799f641675daf9e6584f08786b7bc3df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bc74108e799f641675daf9e6584f08786b7bc3df","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bc74108e799f641675daf9e6584f08786b7bc3df/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"be284b17a51ba91f01f82782f5f26191ed6d816e","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/be284b17a51ba91f01f82782f5f26191ed6d816e","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/be284b17a51ba91f01f82782f5f26191ed6d816e"}]},{"sha":"ebfbc25f23786e2839044c4d76f5c0e7fbb3c99c","node_id":"C_kwDOF83__NoAKGViZmJjMjVmMjM3ODZlMjgzOTA0NGM0ZDc2ZjVjMGU3ZmJiM2M5OWM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"message":"Dummy commit","tree":{"sha":"8a0689c4e1ab021f9b8ee1b0e5bc915160225762","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/8a0689c4e1ab021f9b8ee1b0e5bc915160225762"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/ebfbc25f23786e2839044c4d76f5c0e7fbb3c99c","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ebfbc25f23786e2839044c4d76f5c0e7fbb3c99c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ebfbc25f23786e2839044c4d76f5c0e7fbb3c99c","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ebfbc25f23786e2839044c4d76f5c0e7fbb3c99c/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"bc74108e799f641675daf9e6584f08786b7bc3df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/bc74108e799f641675daf9e6584f08786b7bc3df","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/bc74108e799f641675daf9e6584f08786b7bc3df"}]},{"sha":"0e7bdcd961c7269530eff839f53d0f7099cf36ea","node_id":"C_kwDOF83__NoAKDBlN2JkY2Q5NjFjNzI2OTUzMGVmZjgzOWY1M2QwZjcwOTljZjM2ZWE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"message":"Dummy commit","tree":{"sha":"928695542ea93d21451ac4d373acdd076e202c01","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/928695542ea93d21451ac4d373acdd076e202c01"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/0e7bdcd961c7269530eff839f53d0f7099cf36ea","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e7bdcd961c7269530eff839f53d0f7099cf36ea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e7bdcd961c7269530eff839f53d0f7099cf36ea","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e7bdcd961c7269530eff839f53d0f7099cf36ea/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"ebfbc25f23786e2839044c4d76f5c0e7fbb3c99c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/ebfbc25f23786e2839044c4d76f5c0e7fbb3c99c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/ebfbc25f23786e2839044c4d76f5c0e7fbb3c99c"}]},{"sha":"36795c319632cd66f6427d687bceb61aff9420dc","node_id":"C_kwDOF83__NoAKDM2Nzk1YzMxOTYzMmNkNjZmNjQyN2Q2ODdiY2ViNjFhZmY5NDIwZGM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"message":"Dummy commit","tree":{"sha":"c730d1a19e38fcf925294ae50e91aa8cd62c7dff","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c730d1a19e38fcf925294ae50e91aa8cd62c7dff"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/36795c319632cd66f6427d687bceb61aff9420dc","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/36795c319632cd66f6427d687bceb61aff9420dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/36795c319632cd66f6427d687bceb61aff9420dc","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/36795c319632cd66f6427d687bceb61aff9420dc/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"0e7bdcd961c7269530eff839f53d0f7099cf36ea","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/0e7bdcd961c7269530eff839f53d0f7099cf36ea","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/0e7bdcd961c7269530eff839f53d0f7099cf36ea"}]},{"sha":"1719c45971553a342797bd2f6a3d075cc3084f82","node_id":"C_kwDOF83__NoAKDE3MTljNDU5NzE1NTNhMzQyNzk3YmQyZjZhM2QwNzVjYzMwODRmODI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"message":"Dummy commit","tree":{"sha":"b367730899441475aada3fe2851d2e7326f52f1a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b367730899441475aada3fe2851d2e7326f52f1a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/1719c45971553a342797bd2f6a3d075cc3084f82","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1719c45971553a342797bd2f6a3d075cc3084f82","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1719c45971553a342797bd2f6a3d075cc3084f82","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1719c45971553a342797bd2f6a3d075cc3084f82/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"36795c319632cd66f6427d687bceb61aff9420dc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/36795c319632cd66f6427d687bceb61aff9420dc","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/36795c319632cd66f6427d687bceb61aff9420dc"}]},{"sha":"f7bc5303778371ea71a5a2eccd7731fb19f7c192","node_id":"C_kwDOF83__NoAKGY3YmM1MzAzNzc4MzcxZWE3MWE1YTJlY2NkNzczMWZiMTlmN2MxOTI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"message":"Dummy commit","tree":{"sha":"688aaffddf7db4806c75df65595acb0a6cd9c041","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/688aaffddf7db4806c75df65595acb0a6cd9c041"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/f7bc5303778371ea71a5a2eccd7731fb19f7c192","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f7bc5303778371ea71a5a2eccd7731fb19f7c192","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f7bc5303778371ea71a5a2eccd7731fb19f7c192","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f7bc5303778371ea71a5a2eccd7731fb19f7c192/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"1719c45971553a342797bd2f6a3d075cc3084f82","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/1719c45971553a342797bd2f6a3d075cc3084f82","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/1719c45971553a342797bd2f6a3d075cc3084f82"}]},{"sha":"660e14648c5ad9c6a6d437ec4c77d1a1d51fc8db","node_id":"C_kwDOF83__NoAKDY2MGUxNDY0OGM1YWQ5YzZhNmQ0MzdlYzRjNzdkMWExZDUxZmM4ZGI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"message":"Dummy commit","tree":{"sha":"ccf277e03c6e70fc597152f0194697d8a271c7b9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/ccf277e03c6e70fc597152f0194697d8a271c7b9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/660e14648c5ad9c6a6d437ec4c77d1a1d51fc8db","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/660e14648c5ad9c6a6d437ec4c77d1a1d51fc8db","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/660e14648c5ad9c6a6d437ec4c77d1a1d51fc8db","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/660e14648c5ad9c6a6d437ec4c77d1a1d51fc8db/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"f7bc5303778371ea71a5a2eccd7731fb19f7c192","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/f7bc5303778371ea71a5a2eccd7731fb19f7c192","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/f7bc5303778371ea71a5a2eccd7731fb19f7c192"}]},{"sha":"a1fc1febfde222f516473bb8973cbc308f6c4a0d","node_id":"C_kwDOF83__NoAKGExZmMxZmViZmRlMjIyZjUxNjQ3M2JiODk3M2NiYzMwOGY2YzRhMGQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"message":"Dummy commit","tree":{"sha":"e817f6ed6d3535e23178e0d1558f352984ef9bb7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/e817f6ed6d3535e23178e0d1558f352984ef9bb7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/a1fc1febfde222f516473bb8973cbc308f6c4a0d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1fc1febfde222f516473bb8973cbc308f6c4a0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1fc1febfde222f516473bb8973cbc308f6c4a0d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1fc1febfde222f516473bb8973cbc308f6c4a0d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"660e14648c5ad9c6a6d437ec4c77d1a1d51fc8db","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/660e14648c5ad9c6a6d437ec4c77d1a1d51fc8db","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/660e14648c5ad9c6a6d437ec4c77d1a1d51fc8db"}]},{"sha":"13840a2017804a0cd6f29cf96dd9c87e20bad1e7","node_id":"C_kwDOF83__NoAKDEzODQwYTIwMTc4MDRhMGNkNmYyOWNmOTZkZDljODdlMjBiYWQxZTc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:22Z"},"message":"Dummy commit","tree":{"sha":"715f86eb55b5c2dab26181595b42d23b3f0056df","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/715f86eb55b5c2dab26181595b42d23b3f0056df"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/13840a2017804a0cd6f29cf96dd9c87e20bad1e7","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/13840a2017804a0cd6f29cf96dd9c87e20bad1e7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/13840a2017804a0cd6f29cf96dd9c87e20bad1e7","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/13840a2017804a0cd6f29cf96dd9c87e20bad1e7/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a1fc1febfde222f516473bb8973cbc308f6c4a0d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a1fc1febfde222f516473bb8973cbc308f6c4a0d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a1fc1febfde222f516473bb8973cbc308f6c4a0d"}]},{"sha":"924429d2c8edf07e6e4188ee3f1fb32a868fbc56","node_id":"C_kwDOF83__NoAKDkyNDQyOWQyYzhlZGYwN2U2ZTQxODhlZTNmMWZiMzJhODY4ZmJjNTY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"message":"Dummy commit","tree":{"sha":"edcdaa03472f5cc324347e2e1deb304db7687ac1","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/edcdaa03472f5cc324347e2e1deb304db7687ac1"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/924429d2c8edf07e6e4188ee3f1fb32a868fbc56","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/924429d2c8edf07e6e4188ee3f1fb32a868fbc56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/924429d2c8edf07e6e4188ee3f1fb32a868fbc56","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/924429d2c8edf07e6e4188ee3f1fb32a868fbc56/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"13840a2017804a0cd6f29cf96dd9c87e20bad1e7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/13840a2017804a0cd6f29cf96dd9c87e20bad1e7","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/13840a2017804a0cd6f29cf96dd9c87e20bad1e7"}]},{"sha":"539f5ac8017eab767653e404cd9deafe17951ab0","node_id":"C_kwDOF83__NoAKDUzOWY1YWM4MDE3ZWFiNzY3NjUzZTQwNGNkOWRlYWZlMTc5NTFhYjA","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"message":"Dummy commit","tree":{"sha":"57c63a4d63d4930a8ca9c18186c904d1a5ade4d9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/57c63a4d63d4930a8ca9c18186c904d1a5ade4d9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/539f5ac8017eab767653e404cd9deafe17951ab0","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/539f5ac8017eab767653e404cd9deafe17951ab0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/539f5ac8017eab767653e404cd9deafe17951ab0","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/539f5ac8017eab767653e404cd9deafe17951ab0/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"924429d2c8edf07e6e4188ee3f1fb32a868fbc56","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/924429d2c8edf07e6e4188ee3f1fb32a868fbc56","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/924429d2c8edf07e6e4188ee3f1fb32a868fbc56"}]},{"sha":"3e6c1e20a581fc92238b4df179276dfb9194127a","node_id":"C_kwDOF83__NoAKDNlNmMxZTIwYTU4MWZjOTIyMzhiNGRmMTc5Mjc2ZGZiOTE5NDEyN2E","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"message":"Dummy commit","tree":{"sha":"79c79e26b7d0f19602242bbac8bb8e8d7da2e647","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/79c79e26b7d0f19602242bbac8bb8e8d7da2e647"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/3e6c1e20a581fc92238b4df179276dfb9194127a","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3e6c1e20a581fc92238b4df179276dfb9194127a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3e6c1e20a581fc92238b4df179276dfb9194127a","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3e6c1e20a581fc92238b4df179276dfb9194127a/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"539f5ac8017eab767653e404cd9deafe17951ab0","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/539f5ac8017eab767653e404cd9deafe17951ab0","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/539f5ac8017eab767653e404cd9deafe17951ab0"}]},{"sha":"34772c5a066e8d523cc333cf2feca0336d99b467","node_id":"C_kwDOF83__NoAKDM0NzcyYzVhMDY2ZThkNTIzY2MzMzNjZjJmZWNhMDMzNmQ5OWI0Njc","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"message":"Dummy commit","tree":{"sha":"b3c1774d46e6930a519c97d29dd1f88c5a1dfecc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/b3c1774d46e6930a519c97d29dd1f88c5a1dfecc"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/34772c5a066e8d523cc333cf2feca0336d99b467","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/34772c5a066e8d523cc333cf2feca0336d99b467","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/34772c5a066e8d523cc333cf2feca0336d99b467","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/34772c5a066e8d523cc333cf2feca0336d99b467/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"3e6c1e20a581fc92238b4df179276dfb9194127a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/3e6c1e20a581fc92238b4df179276dfb9194127a","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/3e6c1e20a581fc92238b4df179276dfb9194127a"}]},{"sha":"4eea47bbc38392f3e3ce8b449462ee1780dc2681","node_id":"C_kwDOF83__NoAKDRlZWE0N2JiYzM4MzkyZjNlM2NlOGI0NDk0NjJlZTE3ODBkYzI2ODE","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"message":"Dummy commit","tree":{"sha":"1562e85128818600f188f8f9d54587a6a4cbed98","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1562e85128818600f188f8f9d54587a6a4cbed98"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/4eea47bbc38392f3e3ce8b449462ee1780dc2681","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4eea47bbc38392f3e3ce8b449462ee1780dc2681","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4eea47bbc38392f3e3ce8b449462ee1780dc2681","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4eea47bbc38392f3e3ce8b449462ee1780dc2681/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"34772c5a066e8d523cc333cf2feca0336d99b467","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/34772c5a066e8d523cc333cf2feca0336d99b467","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/34772c5a066e8d523cc333cf2feca0336d99b467"}]},{"sha":"186c33ca0cc732578583cd018efefa61a71dc55d","node_id":"C_kwDOF83__NoAKDE4NmMzM2NhMGNjNzMyNTc4NTgzY2QwMThlZmVmYTYxYTcxZGM1NWQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"message":"Dummy commit","tree":{"sha":"db12fffb8cbc3316c9a0a0ba0aa4ffb4a3635139","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/db12fffb8cbc3316c9a0a0ba0aa4ffb4a3635139"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/186c33ca0cc732578583cd018efefa61a71dc55d","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/186c33ca0cc732578583cd018efefa61a71dc55d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/186c33ca0cc732578583cd018efefa61a71dc55d","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/186c33ca0cc732578583cd018efefa61a71dc55d/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"4eea47bbc38392f3e3ce8b449462ee1780dc2681","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/4eea47bbc38392f3e3ce8b449462ee1780dc2681","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/4eea47bbc38392f3e3ce8b449462ee1780dc2681"}]},{"sha":"28a5f02d72fb232dfac992c473745c90937d6bae","node_id":"C_kwDOF83__NoAKDI4YTVmMDJkNzJmYjIzMmRmYWM5OTJjNDczNzQ1YzkwOTM3ZDZiYWU","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:23Z"},"message":"Dummy commit","tree":{"sha":"0fd0e7844313d0ef9fcc56512da68f97e47ea779","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/0fd0e7844313d0ef9fcc56512da68f97e47ea779"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28a5f02d72fb232dfac992c473745c90937d6bae","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28a5f02d72fb232dfac992c473745c90937d6bae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28a5f02d72fb232dfac992c473745c90937d6bae","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28a5f02d72fb232dfac992c473745c90937d6bae/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"186c33ca0cc732578583cd018efefa61a71dc55d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/186c33ca0cc732578583cd018efefa61a71dc55d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/186c33ca0cc732578583cd018efefa61a71dc55d"}]},{"sha":"c5d3ba8df85106f037a4bd8e221f0a63592dc3af","node_id":"C_kwDOF83__NoAKGM1ZDNiYThkZjg1MTA2ZjAzN2E0YmQ4ZTIyMWYwYTYzNTkyZGMzYWY","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:24Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:24Z"},"message":"Dummy commit","tree":{"sha":"9505a8e773526803025abeb20924fff6439749b7","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/9505a8e773526803025abeb20924fff6439749b7"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c5d3ba8df85106f037a4bd8e221f0a63592dc3af","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5d3ba8df85106f037a4bd8e221f0a63592dc3af","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5d3ba8df85106f037a4bd8e221f0a63592dc3af","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5d3ba8df85106f037a4bd8e221f0a63592dc3af/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"28a5f02d72fb232dfac992c473745c90937d6bae","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28a5f02d72fb232dfac992c473745c90937d6bae","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28a5f02d72fb232dfac992c473745c90937d6bae"}]},{"sha":"848c88ff0403fad82b647b13c2be704548a78df4","node_id":"C_kwDOF83__NoAKDg0OGM4OGZmMDQwM2ZhZDgyYjY0N2IxM2MyYmU3MDQ1NDhhNzhkZjQ","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:24Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:24Z"},"message":"Dummy commit","tree":{"sha":"2ad3dfea712daeec72fc889c9c59faf4047999fe","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2ad3dfea712daeec72fc889c9c59faf4047999fe"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/848c88ff0403fad82b647b13c2be704548a78df4","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/848c88ff0403fad82b647b13c2be704548a78df4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/848c88ff0403fad82b647b13c2be704548a78df4","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/848c88ff0403fad82b647b13c2be704548a78df4/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"c5d3ba8df85106f037a4bd8e221f0a63592dc3af","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/c5d3ba8df85106f037a4bd8e221f0a63592dc3af","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5d3ba8df85106f037a4bd8e221f0a63592dc3af"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/848c88ff0403fad82b647b13c2be704548a78df4/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"910451c7fa6775d78b3fffe63976ce862f46c194b6ba945aec5a25ab2538bf3f"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4331'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '669'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '853E:127A77:8A84D7A:8B32CAD:661E79FF')] +{"state":"pending","statuses":[],"sha":"848c88ff0403fad82b647b13c2be704548a78df4","total_count":0,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/848c88ff0403fad82b647b13c2be704548a78df4","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/848c88ff0403fad82b647b13c2be704548a78df4/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/848c88ff0403fad82b647b13c2be704548a78df4 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"f8726cfa1bf572a27bce592891ce1cfbb9741ff783a8ac73b146261bc028ae51"'), ('Last-Modified', 'Tue, 16 Apr 2024 13:07:24 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4330'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '670'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '854A:C1461:8DE3445:8E928CD:661E79FF')] +{"sha":"848c88ff0403fad82b647b13c2be704548a78df4","node_id":"C_kwDOF83__NoAKDg0OGM4OGZmMDQwM2ZhZDgyYjY0N2IxM2MyYmU3MDQ1NDhhNzhkZjQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/848c88ff0403fad82b647b13c2be704548a78df4","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/848c88ff0403fad82b647b13c2be704548a78df4","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:24Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-16T13:07:24Z"},"tree":{"sha":"2ad3dfea712daeec72fc889c9c59faf4047999fe","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/2ad3dfea712daeec72fc889c9c59faf4047999fe"},"message":"Dummy commit","parents":[{"sha":"c5d3ba8df85106f037a4bd8e221f0a63592dc3af","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/c5d3ba8df85106f037a4bd8e221f0a63592dc3af","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/c5d3ba8df85106f037a4bd8e221f0a63592dc3af"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/18/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Tue, 16 Apr 2024 13:15:44 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"a1daa184bea61a579069c9449df54bb30d3bc0afad0892a5d97421d9e902cc3a"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4329'), ('X-RateLimit-Reset', '1713273973'), ('X-RateLimit-Used', '671'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8556:14E79:82733C0:8322A48:661E7A00')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058815985","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18#issuecomment-2058815985","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","id":2058815985,"node_id":"IC_kwDOF83__M56twnx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-16T10:59:15Z","updated_at":"2024-04-16T10:59:15Z","author_association":"MEMBER","body":"This PR contains many commits (151 >= 150) and will not be processed. Please ensure you have selected the correct target branch and consider squashing unnecessary commits.\nDr15Jones, iarspider, makortel, smuzaffar, to re-enable processing of this PR, you can write `+commit-count` in a comment. Thanks.","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058815985/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058816831","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18#issuecomment-2058816831","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","id":2058816831,"node_id":"IC_kwDOF83__M56tw0_","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-16T10:59:44Z","updated_at":"2024-04-16T10:59:44Z","author_association":"MEMBER","body":"+commit-count","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058816831/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058998037","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/18#issuecomment-2058998037","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/18","id":2058998037,"node_id":"IC_kwDOF83__M56udEV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-16T12:40:44Z","updated_at":"2024-04-16T12:40:44Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2058998037/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_unassign.txt b/tests/ReplayData/TestProcessPr.test_unassign.txt new file mode 100644 index 000000000000..9672c342f81e --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_unassign.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:06:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e1df18831e9e10cd96cad5a308e73a1fb869e91c72d2c166c92246777b46e453"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4924'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '76'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '86FE:64B49:15E5D1D9:1600583B:661D263C')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:06:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e4c1c99ef83cf5940a6a68a13b108e08b228c15ec2a92594987ec326c9f8e060"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:03:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4923'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '77'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '870A:2934F8:15F71232:16119301:661D263C')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600591,"node_id":"LA_kwDOF83__M8AAAABbzNODw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/db-pending","name":"db-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":15,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T13:03:25Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:06:05 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4923'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '77'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8718:289E16:3C7AB009:3CC1695D:661D263D')] +{"resources":{"core":{"limit":5000,"used":77,"remaining":4923,"reset":1713189498},"search":{"limit":30,"used":0,"remaining":30,"reset":1713186425},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713189965},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713189965},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713186425},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713189965},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713189965},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713189965},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713186425},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713189965},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713186425}},"rate":{"limit":5000,"used":77,"remaining":4923,"reset":1713189498}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:06:05 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6e9ba6af68289726e1cf34f46e3d811dfd26c44955900385066f5bcffff530d6"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:03:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4922'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '78'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8728:21114:15007805:151B1EB5:661D263D')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T13:03:25Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600591,"node_id":"LA_kwDOF83__M8AAAABbzNODw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/db-pending","name":"db-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":15,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:06:05 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:03:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4921'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '79'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '872E:2934F8:15F71E72:16119F50:661D263D')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:06:06 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 13:03:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4920'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '80'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8738:279377:156E064D:1588825E:661D263D')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:06:06 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2654b8ababd96fa78d178ebd10c95104f7edc0220a4e1ccfd3c2d3dc0556a476"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4919'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '81'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '873A:226B00:35714B4E:35B0F0C2:661D263E')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592326842,"node_id":"SC_kwDOF83__M8AAAAGqDxIug","state":"success","description":"Tests requested by iarspider at 2024-04-15 12:28:44 UTC.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","context":"bot/17/jenkins","created_at":"2024-04-15T12:29:57Z","updated_at":"2024-04-15T12:29:57Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592991571,"node_id":"SC_kwDOF83__M8AAAAGqEZtUw","state":"success","description":"Comment by iarspider at 2024-04-15 12:59:28 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","context":"bot/17/ack","created_at":"2024-04-15T13:01:24Z","updated_at":"2024-04-15T13:01:24Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":16,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:06:06 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4918'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '82'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '873E:3D52BC:3E88DA1A:3ED35530:661D263E')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 13:06:06 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"606e4392b90123370a716e4eac712753b20c4c83c916fe3670e039622f0c19c6"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4917'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '83'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '8742:1B4F11:1EEC94D:1F0A140:661D263E')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T13:01:24Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_unhold.txt b/tests/ReplayData/TestProcessPr.test_unhold.txt new file mode 100644 index 000000000000..cd3aec70697e --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_unhold.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:58:32 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e1df18831e9e10cd96cad5a308e73a1fb869e91c72d2c166c92246777b46e453"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4991'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '9'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9BCE:64B49:15CEF10D:15E96443:661D2478')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":898,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":898,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:58:33 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"8990160af73704e103dbdcdad573428e2233dd93a443ab09a586c884266098cd"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:31:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4990'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '10'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9BD2:2AF02B:2B9528B:2BBF9AA:661D2478')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599127,"node_id":"LA_kwDOF83__M8AAAABbzNIVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/hold","name":"hold","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"comments":12,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T12:31:05Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":null,"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:58:33 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4990'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '10'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9BDC:122DEA:15544194:156ED310:661D2479')] +{"resources":{"core":{"limit":5000,"used":10,"remaining":4990,"reset":1713189498},"search":{"limit":30,"used":0,"remaining":30,"reset":1713185973},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713189513},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713189513},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713185973},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713189513},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713189513},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713189513},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713185973},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713189513},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713185973}},"rate":{"limit":5000,"used":10,"remaining":4990,"reset":1713189498}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:58:33 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"bf9837ba03d85dd8c8383c48134755f4708e309685485ca953c21a78d6639511"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:31:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4989'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '11'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9BE4:29E823:8C3F347:8CF2F91:661D2479')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T12:31:05Z","closed_at":null,"merged_at":null,"merge_commit_sha":"eecd70c261be8f07912bc9612141d528353e200e","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599127,"node_id":"LA_kwDOF83__M8AAAABbzNIVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/hold","name":"hold","color":"ff8000","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600074,"node_id":"LA_kwDOF83__M8AAAABbzNMCg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-approved","name":"tests-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-09T13:18:52Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":12,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:58:33 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:31:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4988'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '12'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9BEE:226B00:355A9458:359A26C0:661D2479')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:58:34 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 12:31:05 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4987'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '13'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9BFA:21114:14EA9C87:15052FCD:661D247A')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:58:34 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"7e460b581c1e0c1afba6e8ae01ea71cc1458ec71f56cd0eb1e1cada6164f41c9"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4986'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '14'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9C00:2C0410:11C730EC:11DE5AA1:661D247A')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592326842,"node_id":"SC_kwDOF83__M8AAAAGqDxIug","state":"success","description":"Tests requested by iarspider at 2024-04-15 12:28:44 UTC.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","context":"bot/17/jenkins","created_at":"2024-04-15T12:29:57Z","updated_at":"2024-04-15T12:29:57Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28592345457,"node_id":"SC_kwDOF83__M8AAAAGqDyRcQ","state":"success","description":"Comment by iarspider at 2024-04-15 12:30:19 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","context":"bot/17/ack","created_at":"2024-04-15T12:30:49Z","updated_at":"2024-04-15T12:30:49Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":16,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:58:34 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4985'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '15'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9C0E:3D52BC:3E72A7F6:3EBD0FDF:661D247A')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 12:58:34 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2c6cd473a62487debac8607425e71e328dc15f536ab1cd0e9b62672508a89555"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4984'), ('X-RateLimit-Reset', '1713189498'), ('X-RateLimit-Used', '16'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '9C1C:279377:15578250:1571EB84:661D247A')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T12:30:49Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/ReplayData/TestProcessPr.test_valid_type.txt b/tests/ReplayData/TestProcessPr.test_valid_type.txt new file mode 100644 index 000000000000..52edde1f52d1 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_valid_type.txt @@ -0,0 +1,99 @@ +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:15:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"5f8064ebaf701adbdb654b2eecdd65d4898049f3ad24f824dff657bad77e1ee1"'), ('Last-Modified', 'Thu, 02 Nov 2023 12:14:49 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4864'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '136'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '848E:3D52BC:3F58AF44:3FA3DA48:661D3675')] +{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master","permissions":{"admin":true,"maintain":true,"push":true,"triage":true,"pull":true},"temp_clone_token":"","allow_squash_merge":true,"allow_merge_commit":true,"allow_rebase_merge":true,"allow_auto_merge":false,"delete_branch_on_merge":false,"allow_update_branch":false,"use_squash_pr_title_as_default":false,"squash_merge_commit_message":"COMMIT_MESSAGES","squash_merge_commit_title":"COMMIT_OR_PR_TITLE","merge_commit_message":"PR_TITLE","merge_commit_title":"MERGE_MESSAGE","custom_properties":{},"organization":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"parent":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"source":{"id":10969551,"node_id":"MDEwOlJlcG9zaXRvcnkxMDk2OTU1MQ==","name":"cmssw","full_name":"cms-sw/cmssw","private":false,"owner":{"login":"cms-sw","id":3863500,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4NjM1MDA=","avatar_url":"https://avatars.githubusercontent.com/u/3863500?v=4","gravatar_id":"","url":"https://api.github.com/users/cms-sw","html_url":"https://github.com/cms-sw","followers_url":"https://api.github.com/users/cms-sw/followers","following_url":"https://api.github.com/users/cms-sw/following{/other_user}","gists_url":"https://api.github.com/users/cms-sw/gists{/gist_id}","starred_url":"https://api.github.com/users/cms-sw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cms-sw/subscriptions","organizations_url":"https://api.github.com/users/cms-sw/orgs","repos_url":"https://api.github.com/users/cms-sw/repos","events_url":"https://api.github.com/users/cms-sw/events{/privacy}","received_events_url":"https://api.github.com/users/cms-sw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cms-sw/cmssw","description":"CMS Offline Software","fork":false,"url":"https://api.github.com/repos/cms-sw/cmssw","forks_url":"https://api.github.com/repos/cms-sw/cmssw/forks","keys_url":"https://api.github.com/repos/cms-sw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cms-sw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cms-sw/cmssw/teams","hooks_url":"https://api.github.com/repos/cms-sw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/cms-sw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/cms-sw/cmssw/events","assignees_url":"https://api.github.com/repos/cms-sw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/cms-sw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/cms-sw/cmssw/tags","blobs_url":"https://api.github.com/repos/cms-sw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cms-sw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cms-sw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/cms-sw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cms-sw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/cms-sw/cmssw/languages","stargazers_url":"https://api.github.com/repos/cms-sw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/cms-sw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/cms-sw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/cms-sw/cmssw/subscription","commits_url":"https://api.github.com/repos/cms-sw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/cms-sw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/cms-sw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/cms-sw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/cms-sw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/cms-sw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cms-sw/cmssw/merges","archive_url":"https://api.github.com/repos/cms-sw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cms-sw/cmssw/downloads","issues_url":"https://api.github.com/repos/cms-sw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/cms-sw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/cms-sw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/cms-sw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cms-sw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/cms-sw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/cms-sw/cmssw/deployments","created_at":"2013-06-26T14:09:07Z","updated_at":"2024-04-14T22:22:37Z","pushed_at":"2024-04-15T11:45:52Z","git_url":"git://github.com/cms-sw/cmssw.git","ssh_url":"git@github.com:cms-sw/cmssw.git","clone_url":"https://github.com/cms-sw/cmssw.git","svn_url":"https://github.com/cms-sw/cmssw","homepage":"http://cms-sw.github.io/","size":1373390,"stargazers_count":1045,"watchers_count":1045,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4185,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":896,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["c-plus-plus","cern","cms-experiment","hep"],"visibility":"public","forks":4185,"open_issues":896,"watchers":1045,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4185,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:15:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"0f204f21725c825efc10c0a38c9b34824c70870746b04607a1b0826c81f41fa1"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:14:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4863'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '137'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '849C:1066E:143A66BD:1453E791:661D3675')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","id":2210660853,"node_id":"PR_kwDOF83__M5q67uN","number":17,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"comments":22,"created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T14:14:25Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","merged_at":null},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","closed_by":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/timeline","performed_via_github_app":null,"state_reason":null} + +https +GET +api.github.com +None +/rate_limit +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:15:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'no-cache'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4863'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '137'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '84AA:122DEA:163D687B:1658BF9B:661D3675')] +{"resources":{"core":{"limit":5000,"used":137,"remaining":4863,"reset":1713193106},"search":{"limit":30,"used":0,"remaining":30,"reset":1713190577},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1713194117},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1713194117},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1713190577},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1713194117},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1713194117},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1713194117},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1713190577},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1713194117},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1713190577}},"rate":{"limit":5000,"used":137,"remaining":4863,"reset":1713193106}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:15:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6ef1adabe633adf35c38fdcbc62fa3bc4a180e0c7e202a0beeb68da30fe569bd"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:14:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4862'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '138'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '84BA:3A1EFF:169A4C43:16B5A244:661D3676')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17","id":1793833869,"node_id":"PR_kwDOF83__M5q67uN","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/17.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","number":17,"state":"open","locked":false,"title":"test5 [do-not-merge] Just for generating bot tests","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"body":"\r\n#### PR description:\r\n\r\n\r\n\r\n#### PR validation:\r\n\r\n\r\n\r\n#### If this PR is a backport please specify the original PR and why you need to backport that PR. If this PR will be backported please specify to which release cycle the backport is meant for:\r\n\r\n\r\n\r\nBefore submitting your pull requests, make sure you followed this checklist:\r\n- verify that the PR is really intended for the chosen branch\r\n- verify that changes follow [CMS Naming, Coding, And Style Rules](http://cms-sw.github.io/cms_coding_rules.html)\r\n- verify that the PR passes the basic test procedure suggested in the [CMSSW PR instructions](https://cms-sw.github.io/PRWorkflow.html)\r\n\r\n\r\n","created_at":"2024-03-27T12:22:45Z","updated_at":"2024-04-15T14:14:25Z","closed_at":null,"merged_at":null,"merge_commit_sha":"b6845203ee1d8d89320de71c5b77164a7b67d8ad","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":6160598842,"node_id":"LA_kwDOF83__M8AAAABbzNHOg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/pending-signatures","name":"pending-signatures","color":"ff8000","default":false,"description":null},{"id":6160599186,"node_id":"LA_kwDOF83__M8AAAABbzNIkg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/requires-external","name":"requires-external","color":"0000ff","default":false,"description":null},{"id":6160599976,"node_id":"LA_kwDOF83__M8AAAABbzNLqA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/orp-pending","name":"orp-pending","color":"fbca04","default":false,"description":null},{"id":6160600064,"node_id":"LA_kwDOF83__M8AAAABbzNMAA","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/tests-pending","name":"tests-pending","color":"fbca04","default":false,"description":null},{"id":6160600165,"node_id":"LA_kwDOF83__M8AAAABbzNMZQ","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/code-checks-approved","name":"code-checks-approved","color":"2cbe4e","default":false,"description":null},{"id":6160600474,"node_id":"LA_kwDOF83__M8AAAABbzNNmg","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/core-pending","name":"core-pending","color":"fbca04","default":false,"description":null},{"id":6160600663,"node_id":"LA_kwDOF83__M8AAAABbzNOVw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/dqm-pending","name":"dqm-pending","color":"fbca04","default":false,"description":null}],"milestone":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4","html_url":"https://github.com/iarspider-cmssw/cmssw/milestone/4","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones/4/labels","id":10609566,"node_id":"MI_kwDOF83__M4AoeOe","number":4,"title":"CMSSW_14_1_X","description":null,"creator":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"open_issues":2,"closed_issues":3,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-04-15T14:02:44Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments","review_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","head":{"label":"iarspider-cmssw:bot-test-6","ref":"bot-test-6","sha":"dae848e38b8e387d7283a3e35818121487d9d76b","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"base":{"label":"iarspider-cmssw:master","ref":"master","sha":"a3adc2d589298214012d49f4afc4356baf30956c","user":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"repo":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments","created_at":"2021-08-24T07:36:01Z","updated_at":"2023-11-02T12:14:49Z","pushed_at":"2024-04-11T11:54:15Z","git_url":"git://github.com/iarspider-cmssw/cmssw.git","ssh_url":"git@github.com:iarspider-cmssw/cmssw.git","clone_url":"https://github.com/iarspider-cmssw/cmssw.git","svn_url":"https://github.com/iarspider-cmssw/cmssw","homepage":"http://cms-sw.github.io/","size":1207742,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":3,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":3,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/17"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":22,"review_comments":0,"maintainer_can_modify":false,"commits":4,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:15:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"77412ca643c8c8119164a933c82f81f4ae0129768718995815b12ea17256293a"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:14:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4861'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '139'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '84BC:226B00:36465EBE:3686B425:661D3676')] +[{"sha":"b7c92bc217e16ec20cba26fbb2f2c5308e3f7f93","filename":"Utilities/ReleaseScripts/test/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/dae848e38b8e387d7283a3e35818121487d9d76b/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/Utilities%2FReleaseScripts%2Ftest%2FBuildFile.xml?ref=dae848e38b8e387d7283a3e35818121487d9d76b","patch":"@@ -4,6 +4,8 @@\n \n \n \n+\n+\n \n \n "}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/17/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:15:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"c551bf730a3510d465de7307c5dcdb1470764d7f94efa319c7bdc4e9c1dcf246"'), ('Last-Modified', 'Mon, 15 Apr 2024 14:14:25 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4860'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '140'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '84C4:1065FA:171AB102:17360519:661D3676')] +[{"sha":"2a9454e30606b17e52000110972998326ce9e428","node_id":"C_kwDOF83__NoAKDJhOTQ1NGUzMDYwNmIxN2U1MjAwMDExMDk3Mjk5ODMyNmNlOWU0Mjg","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-02-27T10:25:45Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-27T12:21:07Z"},"message":"[do-not-merge] Just for generating bot tests","tree":{"sha":"25df9af04437a6cbb14106597ca89b3a1d3dd979","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/25df9af04437a6cbb14106597ca89b3a1d3dd979"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/2a9454e30606b17e52000110972998326ce9e428","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"a3adc2d589298214012d49f4afc4356baf30956c","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/a3adc2d589298214012d49f4afc4356baf30956c","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/a3adc2d589298214012d49f4afc4356baf30956c"}]},{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","node_id":"C_kwDOF83__NoAKGU0ZDA2OWI3NmM0NjQyNzRiZjZlN2Q3Y2Y5YmFjMjE1M2VkOWE5MDM","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-03-01T14:53:51Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T09:04:49Z"},"message":"test commit for dqm category","tree":{"sha":"d38f49e344e23c774acb951979441567185b771b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/d38f49e344e23c774acb951979441567185b771b"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"2a9454e30606b17e52000110972998326ce9e428","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/2a9454e30606b17e52000110972998326ce9e428","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/2a9454e30606b17e52000110972998326ce9e428"}]},{"sha":"79752f053efecad55dde17732259737e621a1f3f","node_id":"C_kwDOF83__NoAKDc5NzUyZjA1M2VmZWNhZDU1ZGRlMTc3MzIyNTk3MzdlNjIxYTFmM2Y","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:37:19Z"},"message":"Test: reset core","tree":{"sha":"5f58879c988e00862f0e844c65509d643792e731","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/5f58879c988e00862f0e844c65509d643792e731"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"e4d069b76c464274bf6e7d7cf9bac2153ed9a903","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/e4d069b76c464274bf6e7d7cf9bac2153ed9a903","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/e4d069b76c464274bf6e7d7cf9bac2153ed9a903"}]},{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","commit":{"author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"message":"test revert dqm","tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"committer":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:15:19 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"719e4ecdbfb436e0de814864c5c02070dd6e24f765f12aab234285b18957f736"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', 'repo, repo:status'), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4859'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '141'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '84C6:2E61E0:3FFEF82A:404A1D54:661D3676')] +{"state":"failure","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28539484632,"node_id":"SC_kwDOF83__M8AAAAGpRX52A","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","context":"cms/17/code-checks","created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448627,"node_id":"SC_kwDOF83__M8AAAAGqC7iMw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448709,"node_id":"SC_kwDOF83__M8AAAAGqC7ihQ","state":"success","description":"Finished","target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/required","created_at":"2024-04-15T11:42:43Z","updated_at":"2024-04-15T11:42:43Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448766,"node_id":"SC_kwDOF83__M8AAAAGqC7ivg","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/","context":"cms/17/el8_amd64_gcc12/unittest","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448856,"node_id":"SC_kwDOF83__M8AAAAGqC7jGA","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/","context":"cms/17/el8_amd64_gcc12/addon","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591448929,"node_id":"SC_kwDOF83__M8AAAAGqC7jYQ","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/","context":"cms/17/el8_amd64_gcc12/relvals","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449003,"node_id":"SC_kwDOF83__M8AAAAGqC7jqw","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/","context":"cms/17/el8_amd64_gcc12/relvals/input","created_at":"2024-04-15T11:42:44Z","updated_at":"2024-04-15T11:42:44Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28591449083,"node_id":"SC_kwDOF83__M8AAAAGqC7j-w","state":"success","description":null,"target_url":"https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/","context":"cms/17/el8_amd64_gcc12/comparision","created_at":"2024-04-15T11:42:45Z","updated_at":"2024-04-15T11:42:45Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28593241550,"node_id":"SC_kwDOF83__M8AAAAGqEo9zg","state":"success","description":"2056820593:{\"PULL_REQUESTS\": \"cms-sw/cms-bot#2134\", \"SKIP_TESTS\": \"header,static\"}","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","context":"bot/17/test_parameters","created_at":"2024-04-15T13:12:09Z","updated_at":"2024-04-15T13:12:09Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594424899,"node_id":"SC_kwDOF83__M8AAAAGqFxMQw","state":"pending","description":"Aborted, waiting for authorized user to issue the test command.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","context":"bot/17/jenkins","created_at":"2024-04-15T13:58:55Z","updated_at":"2024-04-15T13:58:55Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/dae848e38b8e387d7283a3e35818121487d9d76b","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":28594837627,"node_id":"SC_kwDOF83__M8AAAAGqGKYew","state":"success","description":"Comment by iarspider at 2024-04-15 14:05:24 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056946596","context":"bot/17/ack","created_at":"2024-04-15T14:14:13Z","updated_at":"2024-04-15T14:14:13Z"}],"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","total_count":17,"repository":{"id":399376380,"node_id":"MDEwOlJlcG9zaXRvcnkzOTkzNzYzODA=","name":"cmssw","full_name":"iarspider-cmssw/cmssw","private":false,"owner":{"login":"iarspider-cmssw","id":143407406,"node_id":"O_kgDOCIw5Lg","avatar_url":"https://avatars.githubusercontent.com/u/143407406?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider-cmssw","html_url":"https://github.com/iarspider-cmssw","followers_url":"https://api.github.com/users/iarspider-cmssw/followers","following_url":"https://api.github.com/users/iarspider-cmssw/following{/other_user}","gists_url":"https://api.github.com/users/iarspider-cmssw/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider-cmssw/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider-cmssw/subscriptions","organizations_url":"https://api.github.com/users/iarspider-cmssw/orgs","repos_url":"https://api.github.com/users/iarspider-cmssw/repos","events_url":"https://api.github.com/users/iarspider-cmssw/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider-cmssw/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/iarspider-cmssw/cmssw","description":"CMS Offline Software","fork":true,"url":"https://api.github.com/repos/iarspider-cmssw/cmssw","forks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/forks","keys_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/keys{/key_id}","collaborators_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/teams","hooks_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/hooks","issue_events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/events{/number}","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/events","assignees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/assignees{/user}","branches_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/branches{/branch}","tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/tags","blobs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/refs{/sha}","trees_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees{/sha}","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/{sha}","languages_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/languages","stargazers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/stargazers","contributors_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contributors","subscribers_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscribers","subscription_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/subscription","commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits{/sha}","git_commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits{/sha}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/comments{/number}","issue_comment_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments{/number}","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/{+path}","compare_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/compare/{base}...{head}","merges_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/merges","archive_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/downloads","issues_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues{/number}","pulls_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls{/number}","milestones_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/milestones{/number}","notifications_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels{/name}","releases_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/releases{/id}","deployments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/deployments"},"commit_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/dae848e38b8e387d7283a3e35818121487d9d76b/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:15:19 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"53807d8a9a072f450f9ee1232deee3ac41b9ce2e78983268ba3643fc975b855e"'), ('Last-Modified', 'Thu, 11 Apr 2024 11:54:10 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4858'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '142'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '84C8:282288:16533791:166E68D5:661D3677')] +{"sha":"dae848e38b8e387d7283a3e35818121487d9d76b","node_id":"C_kwDOF83__NoAKGRhZTg0OGUzOGI4ZTM4N2Q3MjgzYTNlMzU4MTgxMjE0ODdkOWQ3NmI","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/dae848e38b8e387d7283a3e35818121487d9d76b","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/dae848e38b8e387d7283a3e35818121487d9d76b","author":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"committer":{"name":"Ivan Razumov","email":"iarspider@gmail.com","date":"2024-04-11T11:54:10Z"},"tree":{"sha":"941e19965634c7aa374c88d38f2eb49b97a6370a","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/941e19965634c7aa374c88d38f2eb49b97a6370a"},"message":"test revert dqm","parents":[{"sha":"79752f053efecad55dde17732259737e621a1f3f","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/79752f053efecad55dde17732259737e621a1f3f","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/79752f053efecad55dde17732259737e621a1f3f"}],"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/17/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Server', 'GitHub.com'), ('Date', 'Mon, 15 Apr 2024 14:15:19 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Transfer-Encoding', 'chunked'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6e6247cf8e2b37c0b122e8d14814aff931f70d69d16a61005611499cdeddef27"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4857'), ('X-RateLimit-Reset', '1713193106'), ('X-RateLimit-Used', '143'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('X-GitHub-Request-Id', '84D2:122DEA:163D7E1D:1658D545:661D3677')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045163329","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045163329,"node_id":"IC_kwDOF83__M555rdB","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:18:56Z","updated_at":"2024-04-15T14:14:12Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045163329/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045177271","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045177271,"node_id":"IC_kwDOF83__M555u23","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:25:57Z","updated_at":"2024-04-09T13:25:57Z","author_association":"MEMBER","body":"+code-checks\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045177271/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2045204802","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2045204802,"node_id":"IC_kwDOF83__M5551lC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-09T13:39:29Z","updated_at":"2024-04-09T13:39:29Z","author_association":"MEMBER","body":"A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- Utilities/ReleaseScripts (**core**)\n\n\n@Dr15Jones, @iarspider, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@wddgit this is something you requested to watch as well.\n@iarspider you are the release manager for this.\n\ncms-bot commands are listed here\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2045204802/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049242908","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049242908,"node_id":"IC_kwDOF83__M56JPcc","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:00:53Z","updated_at":"2024-04-11T09:00:53Z","author_association":"MEMBER","body":"+core","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049242908/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049247192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049247192,"node_id":"IC_kwDOF83__M56JQfY","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T09:03:19Z","updated_at":"2024-04-11T09:03:19Z","author_association":"MEMBER","body":"This pull request is fully signed and it will be integrated in one of the next master IBs after it passes the integration tests. This pull request will now be reviewed by the release team before it's merged. @iarspider (and backports should be raised in the release meeting by the corresponding L2)","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049247192/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536405","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536405,"node_id":"IC_kwDOF83__M56KXGV","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:16Z","updated_at":"2024-04-11T11:58:16Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536405/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049536626","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049536626,"node_id":"IC_kwDOF83__M56KXJy","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:58:24Z","updated_at":"2024-04-11T11:58:24Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049536626/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2049538377","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2049538377,"node_id":"IC_kwDOF83__M56KXlJ","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-11T11:59:32Z","updated_at":"2024-04-11T11:59:32Z","author_association":"MEMBER","body":"Pull request #17 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again.\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2049538377/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056736344","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056736344,"node_id":"IC_kwDOF83__M56l05Y","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:28:44Z","updated_at":"2024-04-15T12:28:44Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056736344/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056739513","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056739513,"node_id":"IC_kwDOF83__M56l1q5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:19Z","updated_at":"2024-04-15T12:30:19Z","author_association":"MEMBER","body":"hold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056739513/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740419","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740419,"node_id":"IC_kwDOF83__M56l15D","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:30:48Z","updated_at":"2024-04-15T12:30:48Z","author_association":"MEMBER","body":"Pull request has been put on hold by iarspider\nThey need to issue an `unhold` command to remove the `hold` state or L1 can `unhold` it for all","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740419/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056740892","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056740892,"node_id":"IC_kwDOF83__M56l2Ac","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:31:04Z","updated_at":"2024-04-15T12:31:04Z","author_association":"MEMBER","body":"unhold","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056740892/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056796593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056796593,"node_id":"IC_kwDOF83__M56mDmx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T12:59:28Z","updated_at":"2024-04-15T12:59:28Z","author_association":"MEMBER","body":"assign dqm,db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056796593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056800450","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056800450,"node_id":"IC_kwDOF83__M56mEjC","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:22Z","updated_at":"2024-04-15T13:01:22Z","author_association":"MEMBER","body":"New categories assigned: dqm,db\n\nrvenditti,syuvivida,tjavaid,nothingface0,antoniovagnerini,francescobrivio,saumyaphor4252,perrotta,consuegs you have been requested to review this Pull request/Issue and eventually sign? Thanks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056800450/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056801055","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056801055,"node_id":"IC_kwDOF83__M56mEsf","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:01:40Z","updated_at":"2024-04-15T13:03:25Z","author_association":"MEMBER","body":"unassign db","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056801055/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056820593","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056820593,"node_id":"IC_kwDOF83__M56mJdx","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:11:06Z","updated_at":"2024-04-15T13:11:06Z","author_association":"MEMBER","body":"test parameters:\r\n- skip_tests = header,static\r\n- pull_request = https://github.com/cms-sw/cms-bot/pull/2134\r\n\r\n","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056820593/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056903278","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056903278,"node_id":"IC_kwDOF83__M56mdpu","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:46:04Z","updated_at":"2024-04-15T13:46:04Z","author_association":"MEMBER","body":"please test for CMSSW_14_1_CPP20_X","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056903278/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056930228","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056930228,"node_id":"IC_kwDOF83__M56mkO0","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T13:58:14Z","updated_at":"2024-04-15T13:58:14Z","author_association":"MEMBER","body":"please abort","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056930228/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056934192","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056934192,"node_id":"IC_kwDOF83__M56mlMw","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:05Z","updated_at":"2024-04-15T14:00:05Z","author_association":"MEMBER","body":"please close","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056934192/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056935714","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056935714,"node_id":"IC_kwDOF83__M56mlki","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:00:44Z","updated_at":"2024-04-15T14:01:29Z","author_association":"MEMBER","body":"please reopen","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056935714/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056946596","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056946596,"node_id":"IC_kwDOF83__M56moOk","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:05:24Z","updated_at":"2024-04-15T14:05:24Z","author_association":"MEMBER","body":"type invalid","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056946596/reactions","total_count":1,"+1":0,"-1":1,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056966759","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/17#issuecomment-2056966759","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/17","id":2056966759,"node_id":"IC_kwDOF83__M56mtJn","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","site_admin":false},"created_at":"2024-04-15T14:14:24Z","updated_at":"2024-04-15T14:14:24Z","author_association":"MEMBER","body":"type root","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2056966759/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}] + diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 000000000000..4d6e5c53ce28 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,40 @@ +############################ Copyrights and license ############################ +# # +# Copyright 2020 Steve Kowalik # +# # +# This file is part of PyGithub. # +# http://pygithub.readthedocs.io/ # +# # +# PyGithub is free software: you can redistribute it and/or modify it under # +# the terms of the GNU Lesser General Public License as published by the Free # +# Software Foundation, either version 3 of the License, or (at your option) # +# any later version. # +# # +# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY # +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more # +# details. # +# # +# You should have received a copy of the GNU Lesser General Public License # +# along with PyGithub. If not, see . # +# # +################################################################################ + +from . import Framework + +collect_ignore = ["condor/tests"] + + +def pytest_addoption(parser): + parser.addoption("--record", action="store_true", help="record mode") + parser.addoption("--auth_with_token", action="store_true", help="auth using a token") + parser.addoption("--auth_with_jwt", action="store_true", help="auth using JWT") + + +def pytest_configure(config): + if config.getoption("record"): + Framework.activateRecordMode() + if config.getoption("auth_with_token"): + Framework.activateTokenAuthMode() + if config.getoption("auth_with_jwt"): + Framework.activateJWTAuthMode() diff --git a/tests/test-requirements.txt b/tests/test-requirements.txt new file mode 100644 index 000000000000..f87e113a4fa1 --- /dev/null +++ b/tests/test-requirements.txt @@ -0,0 +1,4 @@ +cryptography +httpretty>=1.0.3 +pytest>=5.3 +pytest-cov>=2.8 diff --git a/tests/test_process_pr.py b/tests/test_process_pr.py new file mode 100644 index 000000000000..e8645d115b91 --- /dev/null +++ b/tests/test_process_pr.py @@ -0,0 +1,269 @@ +import importlib +import json +import os +import sys +import traceback + +import pytest + +from . import Framework +from .Framework import readLine + +from github.PaginatedList import PaginatedList + + +class TestProcessPr(Framework.TestCase): + @staticmethod + def compareActions(res_, expected_): + res = {json.dumps(x, sort_keys=True) for x in res_} + expected = {json.dumps(x, sort_keys=True) for x in expected_} + + if res.symmetric_difference(expected): + for itm in res - expected: + print("New action", itm) + + for itm in expected - res: + print("Missing action", itm) + + pytest.fail("Actions mismatch") + + def __openEventFile(self, mode): + fileName = "" + for _, _, functionName, _ in traceback.extract_stack(): + if ( + functionName.startswith("test") + # or functionName == "setUp" + # or functionName == "tearDown" + ): + if ( + functionName != "test" + ): # because in class Hook(Framework.TestCase), method testTest calls Hook.test + fileName = os.path.join( + os.path.dirname(__file__), + self.actionDataFolder, + f"{self.__class__.__name__}.{functionName}.json", + ) + if not fileName: + raise RuntimeError("Could not determine event file name!") + + if fileName != self.__eventFileName: + self.__closeEventReplayFileIfNeeded() + self.__eventFileName = fileName + self.__eventFile = open(self.__eventFileName, mode, encoding="utf-8") + return self.__eventFile + + def __closeEventReplayFileIfNeeded(self): + if self.__eventFile is not None: + if ( + not self.recordMode + ): # pragma no branch (Branch useful only when recording new tests, not used during automated tests) + self.assertEqual(readLine(self.__eventFile), "") + self.__eventFile.close() + + def setUp(self): + super().setUp() + + self.__eventFileName = "" + self.__eventFile = None + + self.actionDataFolder = "PRActionData" + if not os.path.exists(self.actionDataFolder): + os.mkdir(self.actionDataFolder) + + repo_config_dir = os.path.abspath( + os.path.join(os.path.dirname(__file__), "..", "repos", "iarspider_cmssw", "cmssw") + ) + assert os.path.exists(repo_config_dir) + assert os.path.exists(os.path.join(repo_config_dir, "repo_config.py")) + sys.path.insert(0, repo_config_dir) + + if "repo_config" in sys.modules: + importlib.reload(sys.modules["repo_config"]) + importlib.reload(sys.modules["milestones"]) + importlib.reload(sys.modules["releases"]) + importlib.reload(sys.modules["categories"]) + else: + importlib.import_module("repo_config") + + self.repo_config = sys.modules["repo_config"] + assert "iarspider_cmssw" in self.repo_config.__file__ + + self.process_pr = importlib.import_module("process_pr").process_pr + + def runTest(self, prId=17): + repo = self.g.get_repo("iarspider-cmssw/cmssw") + issue = repo.get_issue(prId) + + if self.recordMode: + self.__openEventFile("w") + self.replayData = None + else: + f = self.__openEventFile("r") + self.replayData = json.load(f) + + self.processPrData = self.process_pr( + self.repo_config, + self.g, + repo, + issue, + True, + self.repo_config.CMSBUILD_USER, + ) + self.checkOrSaveTest() + self.__closeEventReplayFileIfNeeded() + + def checkOrSaveTest(self): + if self.recordMode: + json.dump(self.processPrData, self.__eventFile, indent=4) + else: + TestProcessPr.compareActions(self.processPrData, self.replayData) + + def mark_tests( + self, + dryRun, + arch="el8_amd64_gcc12", + queue="_X", + required=True, + unittest=True, + addon=True, + relvals=True, + input_=True, + comparision=True, + ): + repo = self.g.get_repo("iarspider-cmssw/cmssw") + pr = repo.get_pull(prId) + commit = pr.get_commits().reversed[0] + prefix = "cms/" + str(prId) + "/" + if queue.endswith("_X"): + queue = queue.rstrip("_X") + prefix += (queue + "/" if queue else "") + arch + if not dryRun: + commit.create_status( + "success" if all((unittest, addon, relvals, input_, comparision)) else "error", + "https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/", + context="{0}".format(prefix, "required" if required else "optional"), + ) + commit.create_status( + "success", + "https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/", + context="{0}/{1}".format(prefix, "required" if required else "optional"), + description="Finished", + ) + commit.create_status( + "success" if unittest else "error", + "https://cmssdt.cern.ch/jenkins/job/ib-run-pr-tests/38669/", + context="{0}/unittest".format(prefix), + ) + commit.create_status( + "success" if addon else "error", + "https://cmssdt.cern.ch/jenkins/job/ib-run-pr-addon/22833/", + context="{0}/addon".format(prefix), + ) + commit.create_status( + "success" if relvals else "error", + "https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43002/", + context="{0}/relvals".format(prefix), + ) + commit.create_status( + "success" if input_ else "error", + "https://cmssdt.cern.ch/jenkins/job/ib-run-pr-relvals/43000/", + context="{0}/relvals/input".format(prefix), + ) + commit.create_status( + "success" if comparision else "error", + "https://cmssdt.cern.ch/jenkins/job/compare-root-files-short-matrix/62168/", + context="{0}/comparision".format(prefix), + ) + + def test_new_pr(self): + self.runTest() + + def test_code_check_approved(self): + self.runTest() + + def test_sign_core(self): + self.runTest() + + def test_partial_reset(self): + self.runTest() + + def test_reset_signature(self): + self.runTest() + + def test_revert(self): + self.runTest() + + def test_start_tests(self): + self.runTest() + + # # Dummy test + # def test_mark_rejected(self): + # self.mark_tests(False, unittest=False) + # + # def test_mark_passed(self): + # self.mark_tests(False) + + def test_tests_rejected(self): + self.runTest() + + def test_tests_passed(self): + self.runTest() + + def test_hold(self): + self.runTest() + + def test_unhold(self): + self.runTest() + + def test_assign(self): + self.runTest() + + def test_unassign(self): + self.runTest() + + def test_test_params(self): + self.runTest() + + def test_run_test_params(self): + self.runTest() + + def test_abort(self): + self.runTest() + + def test_close(self): + self.runTest() + + def test_reopen(self): + self.runTest() + + def test_invalid_type(self): + self.runTest() + + def test_valid_type(self): + self.runTest() + + def test_clean_squash(self): + self.runTest() + + def test_dirty_squash(self): + self.runTest() + + def test_sign_reject(self): + self.runTest() + + def test_many_commits_warn(self): + self.runTest(18) + + def test_many_commits_ok(self): + self.runTest(18) + + def test_too_many_commits(self): + self.runTest(18) + + # Not yet implemented + # def test_future_commit(self): + # self.runTest() + + # Not yet implemented + # def test_backdated_commit(self): + # self.runTest() diff --git a/tests/test_watchers.py b/tests/test_watchers.py index 3bcb87f2927c..ba7dcd2bdfc7 100755 --- a/tests/test_watchers.py +++ b/tests/test_watchers.py @@ -1,12 +1,9 @@ #!/usr/bin/env python from __future__ import print_function + import os import sys -sys.path.append(os.path.join(os.path.dirname(__file__), "../")) - -from releases import * -from categories import * import yaml try: @@ -14,47 +11,59 @@ except ImportError: from yaml import Loader, Dumper -import re # Validate the schema of watchers. -KEY_RE = "^[^@]+" -VALUE_RE = "[A-Za-z0-0.*+]" - -w = yaml.load(open("watchers.yaml", "r"), Loader=Loader) -assert type(w) == dict -for key, value in w.items(): - assert type(key) == str - assert re.match(KEY_RE, key) - assert type(value) == list - for x in value: - assert type(x) == str - assert re.match(VALUE_RE, x) - - -assert CMSSW_CATEGORIES -assert type(CMSSW_CATEGORIES) == dict - -PACKAGE_RE = "^([A-Z][0-9A-Za-z]*(/[a-zA-Z][0-9A-Za-z]*|)|.gitignore|pull_request_template.md|.clang-[^/]+)$" - -for key, value in CMSSW_CATEGORIES.items(): - assert type(key) == str - assert type(value) == list - if len(value) == 0: - continue - if key == "externals": - assert len(value) > 0 - continue - for p in value: - print("checking", p) - assert type(p) == str - assert re.match(PACKAGE_RE, p) - -if os.path.exists("super-users.yaml"): - w = yaml.load(open("super-users.yaml", "r"), Loader=Loader) - assert type(w) == list - for p in w: - assert type(p) == str - assert re.match(KEY_RE, p) - -print("Finished with success") + +def main(): + KEY_RE = "^[^@]+" + VALUE_RE = "[A-Za-z0-0.*+]" + + watchers_file = os.path.dirname(os.path.dirname(__file__)) + "/watchers.yaml" + + w = yaml.load(open(watchers_file, "r"), Loader=Loader) + assert type(w) == dict + for key, value in w.items(): + assert type(key) == str + assert re.match(KEY_RE, key) + assert type(value) == list + for x in value: + assert type(x) == str + assert re.match(VALUE_RE, x) + + assert CMSSW_CATEGORIES + assert type(CMSSW_CATEGORIES) == dict + + PACKAGE_RE = "^([A-Z][0-9A-Za-z]*(/[a-zA-Z][0-9A-Za-z]*|)|.gitignore|pull_request_template.md|.clang-[^/]+)$" + + for key, value in CMSSW_CATEGORIES.items(): + assert type(key) == str + assert type(value) == list + if len(value) == 0: + continue + if key == "externals": + assert len(value) > 0 + continue + for p in value: + print("checking", p) + assert type(p) == str + assert re.match(PACKAGE_RE, p) + + if os.path.exists("super-users.yaml"): + w = yaml.load(open("super-users.yaml", "r"), Loader=Loader) + assert type(w) == list + for p in w: + assert type(p) == str + assert re.match(KEY_RE, p) + + print("Finished with success") + + +if __name__ == "__main__": + # + sys.path.append(os.path.join(os.path.dirname(__file__), "../")) + + from releases import * + from categories import * + + main()