From 08d6522f21e67dc863bf582d4cad091d8ea7ad9a Mon Sep 17 00:00:00 2001 From: Ivan Razumov Date: Thu, 5 Dec 2024 17:31:51 +0100 Subject: [PATCH] Implement special handling for draft PRs --- .gitignore | 6 +- process_pr.py | 42 +++++-- .../TestProcessPr.test_assign.json | 2 +- .../TestProcessPr.test_close.json | 8 +- .../TestProcessPr.test_draft_pr_assign.json | 57 +++++++++ .../TestProcessPr.test_draft_pr_opened.json | 61 ++++++++++ .../TestProcessPr.test_draft_pr_ready.json | 104 +++++++++++++++++ ...estProcessPr.test_draft_pr_start_test.json | 100 ++++++++++++++++ .../TestProcessPr.test_draft_pr_updated.json | 82 +++++++++++++ .../TestProcessPr.test_reopen.json | 8 +- tests/README.md | 16 ++- .../TestProcessPr.test_draft_pr_assign.txt | 99 ++++++++++++++++ .../TestProcessPr.test_draft_pr_opened.txt | 99 ++++++++++++++++ .../TestProcessPr.test_draft_pr_ready.txt | 99 ++++++++++++++++ ...TestProcessPr.test_draft_pr_start_test.txt | 99 ++++++++++++++++ .../TestProcessPr.test_draft_pr_updated.txt | 110 ++++++++++++++++++ tests/run_pr_tests.sh | 1 + tests/test_process_pr.py | 19 ++- 18 files changed, 984 insertions(+), 28 deletions(-) create mode 100644 tests/PRActionData/TestProcessPr.test_draft_pr_assign.json create mode 100644 tests/PRActionData/TestProcessPr.test_draft_pr_opened.json create mode 100644 tests/PRActionData/TestProcessPr.test_draft_pr_ready.json create mode 100644 tests/PRActionData/TestProcessPr.test_draft_pr_start_test.json create mode 100644 tests/PRActionData/TestProcessPr.test_draft_pr_updated.json create mode 100644 tests/ReplayData/TestProcessPr.test_draft_pr_assign.txt create mode 100644 tests/ReplayData/TestProcessPr.test_draft_pr_opened.txt create mode 100644 tests/ReplayData/TestProcessPr.test_draft_pr_ready.txt create mode 100644 tests/ReplayData/TestProcessPr.test_draft_pr_start_test.txt create mode 100644 tests/ReplayData/TestProcessPr.test_draft_pr_updated.txt diff --git a/.gitignore b/.gitignore index b32d8aa7acca..9a7e1c937c73 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ *.pyc -.idea \ No newline at end of file +.idea +*.properties +tests/Framework.py +venv +GithubCredentials.py diff --git a/process_pr.py b/process_pr.py index fcbe49e2857a..85ce4bfc36b1 100644 --- a/process_pr.py +++ b/process_pr.py @@ -881,8 +881,10 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F return gh_user_char = "@" + if not notify_user(issue): gh_user_char = "" + api_rate_limits(gh) prId = issue.number repository = repo.full_name @@ -961,12 +963,17 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F warned_too_many_commits = False ok_too_many_files = False warned_too_many_files = False + is_draft_pr = False if issue.pull_request: pr = repo.get_pull(prId) if pr.changed_files == 0: print("Ignoring: PR with no files changed") return + if pr.draft: + print("Draft PR, mentions turned off") + is_draft_pr = True + gh_user_char = "" if cmssw_repo and cms_repo and (pr.base.ref == CMSSW_DEVEL_BRANCH): if pr.state != "closed": print("This pull request must go in to master branch") @@ -1109,7 +1116,8 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F ] print("PR Statuses:", commit_statuses) print(len(commit_statuses)) - last_commit_date = last_commit.committer.date + last_commit_date = last_commit.committer.date.replace(tzinfo=None) + print( "Latest commit by ", last_commit.committer.name.encode("ascii", "ignore").decode(), @@ -1664,6 +1672,13 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F print("Processing commits") + if not pull_request_updated: + _bot_cache_shas = set(bot_cache["commits"].keys()) + diff = all_commit_shas.difference(_bot_cache_shas) + if diff: + print("Setting pull-request-update to True:", len(diff), "new commit(s)") + pull_request_updated = True + # Make sure to mark squashed=False if a cached/squashed commit is added back for commit_sha in [ sha @@ -2193,6 +2208,9 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F new_categories.add(nc_lab) if new_assign_cats: + tmp_gh_user_char = gh_user_char + if notify_user(issue): + gh_user_char = "@" new_l2s = [ gh_user_char + name for name, l2_categories in list(CMSSW_L2.items()) @@ -2208,6 +2226,7 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F + ",".join(new_l2s) + " you have been requested to review this Pull request/Issue and eventually sign? Thanks" ) + gh_user_char = tmp_gh_user_char # update blocker massge if new_blocker: @@ -2491,11 +2510,15 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F ) messageUpdatedPR = format( - "Pull request #%(pr)s was updated." - " %(signers)s can you please check and sign again.\n", + "Pull request #%(pr)s was updated.", pr=pr.number, - signers=", ".join(missing_notifications), ) + + if not is_draft_pr: + messageUpdatedPR += format( + " %(signers)s can you please check and sign again.\n", + signers=", ".join(missing_notifications), + ) else: messageNewPR = format( "%(msgPrefix)s %(gh_user_char)s%(user)s" @@ -2528,11 +2551,10 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F print("Status: Not see= %s, Updated: %s" % (already_seen, pull_request_updated)) if is_closed_branch(pr.base.ref) and (pr.state != "closed"): commentMsg = messageBranchClosed - elif (not already_seen) or pull_request_updated: - if not already_seen: - commentMsg = messageNewPR - else: - commentMsg = messageUpdatedPR + elif (already_seen or is_draft_pr) and pull_request_updated: + commentMsg = messageUpdatedPR + elif not already_seen and not is_draft_pr: + commentMsg = messageNewPR elif new_categories: commentMsg = messageUpdatedPR elif not missingApprovals: @@ -2542,7 +2564,7 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F if commentMsg and dryRun: print("The following comment will be made:") try: - print(commentMsg.decode("ascii", "replace")) + print(commentMsg.encode("ascii", "replace").decode("ascii", "replace")) except: pass for pre_check in pre_checks + extra_pre_checks: diff --git a/tests/PRActionData/TestProcessPr.test_assign.json b/tests/PRActionData/TestProcessPr.test_assign.json index 18535f999efa..4ba33c6fed47 100644 --- a/tests/PRActionData/TestProcessPr.test_assign.json +++ b/tests/PRActionData/TestProcessPr.test_assign.json @@ -107,4 +107,4 @@ "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 index 30a05265dbae..3b99c6ff4a42 100644 --- a/tests/PRActionData/TestProcessPr.test_close.json +++ b/tests/PRActionData/TestProcessPr.test_close.json @@ -91,6 +91,10 @@ true ] }, + { + "type": "close", + "data": null + }, { "type": "emoji", "data": [ @@ -107,10 +111,6 @@ "type": "remove-label", "data": [] }, - { - "type": "close", - "data": null - }, { "type": "edit-comment", "data": "cms-bot internal usage" diff --git a/tests/PRActionData/TestProcessPr.test_draft_pr_assign.json b/tests/PRActionData/TestProcessPr.test_draft_pr_assign.json new file mode 100644 index 000000000000..0193599fae40 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_draft_pr_assign.json @@ -0,0 +1,57 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "9138474754099798ff50cb07287e7caa4786f247": { + "files": [ + "FWCore/Utilities/BuildFile.xml" + ], + "squashed": false, + "time": 1733482192 + } + }, + "emoji": { + "2523442237": "+1" + }, + "last_seen_sha": "9138474754099798ff50cb07287e7caa4786f247", + "signatures": {} + } + }, + { + "type": "emoji", + "data": [ + 2523442237, + "+1", + true + ] + }, + { + "type": "create-comment", + "data": "New categories assigned: l1\n\n@aloeliger,@epalencia you have been requested to review this Pull request/Issue and eventually sign? Thanks" + }, + { + "type": "add-label", + "data": [ + "l1-pending" + ] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "9138474754099798ff50cb07287e7caa4786f247", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523442237", + "description": "Comment by iarspider at 2024-12-06 15:01:51 UTC processed.", + "context": "bot/21/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_draft_pr_opened.json b/tests/PRActionData/TestProcessPr.test_draft_pr_opened.json new file mode 100644 index 000000000000..3d2069a4ede1 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_draft_pr_opened.json @@ -0,0 +1,61 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "9138474754099798ff50cb07287e7caa4786f247": { + "files": [ + "FWCore/Utilities/BuildFile.xml" + ], + "squashed": false, + "time": 1733482192 + } + }, + "emoji": {}, + "last_seen_sha": "9138474754099798ff50cb07287e7caa4786f247", + "signatures": {} + } + }, + { + "type": "status", + "data": { + "commit": "9138474754099798ff50cb07287e7caa4786f247", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/21/jenkins" + } + }, + { + "type": "add-label", + "data": [ + "code-checks-approved" + ] + }, + { + "type": "remove-label", + "data": [ + "code-checks-pending" + ] + }, + { + "type": "status", + "data": { + "commit": "9138474754099798ff50cb07287e7caa4786f247", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523440118", + "description": "Check details", + "context": "cms/21/code-checks" + } + }, + { + "type": "status", + "data": { + "commit": "9138474754099798ff50cb07287e7caa4786f247", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523440118", + "description": "Comment by iarspider at 2024-12-06 15:00:50 UTC processed.", + "context": "bot/21/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_draft_pr_ready.json b/tests/PRActionData/TestProcessPr.test_draft_pr_ready.json new file mode 100644 index 000000000000..d67a0f460bc1 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_draft_pr_ready.json @@ -0,0 +1,104 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "28ce3f5888b5433dcae409ee336b2ad422595246": { + "files": [ + "FWCore/Utilities/BuildFile.xml" + ], + "squashed": false, + "time": 1733495641 + }, + "9138474754099798ff50cb07287e7caa4786f247": { + "files": [ + "FWCore/Utilities/BuildFile.xml" + ], + "squashed": false, + "time": 1733482192 + } + }, + "emoji": { + "2523442237": "+1", + "2532358732": "+1" + }, + "last_seen_sha": "28ce3f5888b5433dcae409ee336b2ad422595246", + "signatures": {} + } + }, + { + "type": "emoji", + "data": [ + 2523442237, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "28ce3f5888b5433dcae409ee336b2ad422595246", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2532358732", + "description": "Tests requested by iarspider at 2024-12-10 17:30:16 UTC.", + "context": "bot/21/jenkins" + } + }, + { + "type": "emoji", + "data": [ + 2532358732, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [ + "tests-started" + ] + }, + { + "type": "remove-label", + "data": [ + "tests-pending" + ] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-tests-iarspider-cmssw-cmssw-21.properties", + "data": { + "PULL_REQUESTS": "iarspider-cmssw/cmssw#21", + "EXTRA_RELVALS_TESTS": "THREADING GPU HIGH_STATS NANO", + "CONTEXT_PREFIX": "cms/21" + } + } + }, + { + "type": "emoji", + "data": [ + 2532358732, + "+1", + true + ] + }, + { + "type": "create-comment", + "data": "A new Pull Request was created by @iarspider for master.\n\nIt involves the following packages:\n\n- FWCore/Utilities (**core**)\n\n\n@Dr15Jones, @aloeliger, @epalencia, @makortel, @smuzaffar can you please review it and eventually sign? Thanks.\n@felicepantaleo, @makortel, @missirol, @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" + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "28ce3f5888b5433dcae409ee336b2ad422595246", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2532358732", + "description": "Comment by iarspider at 2024-12-10 17:30:16 UTC processed.", + "context": "bot/21/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_draft_pr_start_test.json b/tests/PRActionData/TestProcessPr.test_draft_pr_start_test.json new file mode 100644 index 000000000000..3ca01ee22741 --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_draft_pr_start_test.json @@ -0,0 +1,100 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "28ce3f5888b5433dcae409ee336b2ad422595246": { + "files": [ + "FWCore/Utilities/BuildFile.xml" + ], + "squashed": false, + "time": 1733495641 + }, + "9138474754099798ff50cb07287e7caa4786f247": { + "files": [ + "FWCore/Utilities/BuildFile.xml" + ], + "squashed": false, + "time": 1733482192 + } + }, + "emoji": { + "2523442237": "+1", + "2532358732": "+1" + }, + "last_seen_sha": "28ce3f5888b5433dcae409ee336b2ad422595246", + "signatures": {} + } + }, + { + "type": "emoji", + "data": [ + 2523442237, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "28ce3f5888b5433dcae409ee336b2ad422595246", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2532358732", + "description": "Tests requested by iarspider at 2024-12-10 17:30:16 UTC.", + "context": "bot/21/jenkins" + } + }, + { + "type": "emoji", + "data": [ + 2532358732, + "+1", + true + ] + }, + { + "type": "add-label", + "data": [ + "tests-started" + ] + }, + { + "type": "remove-label", + "data": [ + "tests-pending" + ] + }, + { + "type": "create-property-file", + "data": { + "filename": "trigger-tests-iarspider-cmssw-cmssw-21.properties", + "data": { + "PULL_REQUESTS": "iarspider-cmssw/cmssw#21", + "EXTRA_RELVALS_TESTS": "THREADING GPU HIGH_STATS NANO", + "CONTEXT_PREFIX": "cms/21" + } + } + }, + { + "type": "emoji", + "data": [ + 2532358732, + "+1", + true + ] + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "28ce3f5888b5433dcae409ee336b2ad422595246", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2532358732", + "description": "Comment by iarspider at 2024-12-10 17:30:16 UTC processed.", + "context": "bot/21/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_draft_pr_updated.json b/tests/PRActionData/TestProcessPr.test_draft_pr_updated.json new file mode 100644 index 000000000000..95d3dd883a5d --- /dev/null +++ b/tests/PRActionData/TestProcessPr.test_draft_pr_updated.json @@ -0,0 +1,82 @@ +[ + { + "type": "load-bot-cache", + "data": { + "commits": { + "9138474754099798ff50cb07287e7caa4786f247": { + "files": [ + "FWCore/Utilities/BuildFile.xml" + ], + "squashed": false, + "time": 1733482192 + }, + "28ce3f5888b5433dcae409ee336b2ad422595246": { + "time": 1733495641, + "squashed": false, + "files": [ + "FWCore/Utilities/BuildFile.xml" + ] + } + }, + "emoji": { + "2523442237": "+1" + }, + "last_seen_sha": "28ce3f5888b5433dcae409ee336b2ad422595246", + "signatures": {} + } + }, + { + "type": "emoji", + "data": [ + 2523442237, + "+1", + true + ] + }, + { + "type": "status", + "data": { + "commit": "28ce3f5888b5433dcae409ee336b2ad422595246", + "state": "pending", + "target_url": null, + "description": "Waiting for authorized user to issue the test command.", + "context": "bot/21/jenkins" + } + }, + { + "type": "add-label", + "data": [] + }, + { + "type": "remove-label", + "data": [] + }, + { + "type": "status", + "data": { + "commit": "28ce3f5888b5433dcae409ee336b2ad422595246", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523514208", + "description": "Check details", + "context": "cms/21/code-checks" + } + }, + { + "type": "create-comment", + "data": "Pull request #21 was updated." + }, + { + "type": "edit-comment", + "data": "cms-bot internal usage" + }, + { + "type": "status", + "data": { + "commit": "28ce3f5888b5433dcae409ee336b2ad422595246", + "state": "success", + "target_url": "https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523514208", + "description": "Comment by iarspider at 2024-12-06 15:36:43 UTC processed.", + "context": "bot/21/ack" + } + } +] \ No newline at end of file diff --git a/tests/PRActionData/TestProcessPr.test_reopen.json b/tests/PRActionData/TestProcessPr.test_reopen.json index 430c32382e78..7cea3e6ad936 100644 --- a/tests/PRActionData/TestProcessPr.test_reopen.json +++ b/tests/PRActionData/TestProcessPr.test_reopen.json @@ -100,6 +100,10 @@ true ] }, + { + "type": "open", + "data": null + }, { "type": "emoji", "data": [ @@ -116,10 +120,6 @@ "type": "remove-label", "data": [] }, - { - "type": "open", - "data": null - }, { "type": "edit-comment", "data": "cms-bot internal usage" diff --git a/tests/README.md b/tests/README.md index b4fe9e739f0a..6db21f3fe45f 100644 --- a/tests/README.md +++ b/tests/README.md @@ -4,7 +4,10 @@ * Run `./run_pr_tests.sh [test_name]`, will run all tests if `test_name` is not given ## To record a new test: -* Create `GithubCredentials.py` in top-level directory with contents: + +### Setup +* Run tests in replay mode at least once to create venv +* Create `GithubCredentials.py` in top-level directory (**not** in `tests/`) with contents: ```py login = "" @@ -15,4 +18,13 @@ app_id = "" app_private_key = "" ``` -* Run `./run_pr_tests.sh --record test_name` +* Also write oauth token in `~/.github-token` + +### Recording tests + +* Prepare (or update) a (cmssw) PR with desired state +* Implement a new test in `test_process_pr.py`. For most tests, only a call to `self.runTest(prId=...)` is needed. +* Run `./process-pull-request.py -n -r ` to check bot behaviour +* Run `pytest --auth_with_token --record -k test_draft_pr_opened test_process_pr.py` to record PR state and bot actions +* Check recorded actions (`PRActionData/TestProcessPr..json`) +* Make bot actually perform actions: `./process-pull-request.py -r ` \ No newline at end of file diff --git a/tests/ReplayData/TestProcessPr.test_draft_pr_assign.txt b/tests/ReplayData/TestProcessPr.test_draft_pr_assign.txt new file mode 100644 index 000000000000..b48dbc01c7f7 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_draft_pr_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 +[('Date', 'Fri, 06 Dec 2024 15:26:27 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b4f88d5d80a2eae0468232279cb538d7526f79c9710ac99fff4923d8e7d9301c"'), ('Last-Modified', 'Wed, 20 Nov 2024 14:49:54 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', '4963'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '8052:D25ED:C9A607:CCDC7E:675317A3')] +{"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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T11:49:52Z","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":1257958,"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","user_view_type":"public","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","user_view_type":"public","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-12-06T12:55:33Z","pushed_at":"2024-12-06T12:56: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":1414095,"stargazers_count":1092,"watchers_count":1092,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4331,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":970,"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":4331,"open_issues":970,"watchers":1092,"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","user_view_type":"public","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-12-06T12:55:33Z","pushed_at":"2024-12-06T12:56: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":1414095,"stargazers_count":1092,"watchers_count":1092,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4331,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":970,"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":4331,"open_issues":970,"watchers":1092,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_non_provider_patterns":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4331,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:26:27 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"872046766a615e819bb453d48e8b0f98c228344d4087071e6fa3151be5741b2a"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:26: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', '4962'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '8054:D2131:C954C9:CC8BCE:675317A3')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","id":2722911860,"node_id":"PR_kwDOF83__M6EUb63","number":21,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"comments":3,"created_at":"2024-12-06T12:09:46Z","updated_at":"2024-12-06T15:26:14Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":true,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.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/21/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/21/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 +[('Date', 'Fri, 06 Dec 2024 15:26:28 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('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', '4962'), ('X-RateLimit-Reset', '1733500816'), ('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'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '8062:B03E9:D6AC0F:D9E2DA:675317A3')] +{"resources":{"core":{"limit":5000,"used":38,"remaining":4962,"reset":1733500816},"search":{"limit":30,"used":0,"remaining":30,"reset":1733498848},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1733502388},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1733502388},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1733498848},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1733502388},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1733502388},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1733502388},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1733498848},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1733502388},"audit_log_streaming":{"limit":15,"used":0,"remaining":15,"reset":1733502388},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1733498848}},"rate":{"limit":5000,"used":38,"remaining":4962,"reset":1733500816}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:26:28 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"d91a9ab16631d9e20aa3c106cca7a21facf3e043aad9f522643edbe6083b5da8"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:26: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', '4961'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '8068:AFA18:C3B6CB:C6EEAE:675317A4')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","id":2219949751,"node_id":"PR_kwDOF83__M6EUb63","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","number":21,"state":"open","locked":false,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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-12-06T12:09:46Z","updated_at":"2024-12-06T15:26:14Z","closed_at":null,"merged_at":null,"merge_commit_sha":"444dce9386d7e981b99344f382873e4923a23d69","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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"draft":true,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/9138474754099798ff50cb07287e7caa4786f247","head":{"label":"iarspider-cmssw:iarspider-patch-1","ref":"iarspider-patch-1","sha":"9138474754099798ff50cb07287e7caa4786f247","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T11:49:52Z","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":1257958,"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":"48600daa76c0dd3925eb34d216bc756ed556016d","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T11:49:52Z","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":1257958,"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/21"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/21"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/9138474754099798ff50cb07287e7caa4786f247"}},"author_association":"MEMBER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":3,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":1,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:26:29 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ec719fce61d6b6665cab300a566fe9bc408b80380153141dc38c301c2b0ab8a8"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:26: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', '4960'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '8078:D25ED:C9ADC4:CCE475:675317A4')] +[{"sha":"279eb03c0cbce1d387c1678a1f4bda0b3e8034ad","filename":"FWCore/Utilities/BuildFile.xml","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/9138474754099798ff50cb07287e7caa4786f247/FWCore%2FUtilities%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/9138474754099798ff50cb07287e7caa4786f247/FWCore%2FUtilities%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/FWCore%2FUtilities%2FBuildFile.xml?ref=9138474754099798ff50cb07287e7caa4786f247","patch":"@@ -7,3 +7,4 @@\n \n \n \n+"}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:26:29 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"8d1c6891f7b0eb453d6ace566fe1d7c7a9210f2d89d66523262fba372275e18c"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:26: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', '4959'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '8080:AF691:C2A2F4:C5D941:675317A5')] +[{"sha":"9138474754099798ff50cb07287e7caa4786f247","node_id":"C_kwDOF83__NoAKDkxMzg0NzQ3NTQwOTk3OThmZjUwY2IwNzI4N2U3Y2FhNDc4NmYyNDc","commit":{"author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T11:49:52Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T11:49:52Z"},"message":"Update BuildFile.xml","tree":{"sha":"1bc56658193566edd98c58a10f5b8450503349b3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bc56658193566edd98c58a10f5b8450503349b3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUuTgCRC1aQ7uu5UhlAAAXEgQAA849OOQ7CddTtap7gjrqzwC\nD1iTWFoY1C/ulXWq/fSFENU+51j/S0ped3UOb52IVAuvCGS7UTx+ESpP4wo+DaS1\nyXyi+nlKEtbutj9hkCFQPTJLNy1tbjdxpYxaNghvBe6s2FExzGQG1hmOnZw0WpYe\nP3M48F6e2qWggLwG5MLODkVA6O2oRLZWcp5Ew1Qu6SGpKmnunhxNbRLTLTraoKt7\nYK23YGyVKuUIxUrefddg5NH6xeUdw39HB8p/3FZ8bPal3KIN6J+mn1+GrIY/ZTS1\nzX1olMgojRvNeevAALj5ZvETLsYIiPxldjAGnKwKbHrC+LZ5mTq2K4/nbqQ1kccW\nqs22MCiCSCwkud3viLtwk4VxOQrVV/trf62JijAUSH6jFYQX1nN5ci1E++wtqcbI\neNJOCUoy+O6T0HMhjTPqE/+YMSWooUR7ekY8qngKv5sP+iolPWsIbwppSQNd0Cit\nh/lqkYZBfno/peWzoPu8WPI798ONOJsW5JK8KMVc2Folxbq0SyPMgNVHGrs1HNiw\ne0C/MnkXfYetHb+vHV5cg3GuNYmGhwG9W9CPzIsENQiwuA+mftgv7D/reZOSLwLt\nNnrmSPnzEnHYOm8RfCAHyprBW8gLnY2mZKie2hiZ+TdjqGro1+R+Fg4IuF6QZkeU\ncWQzYRgBKFj16WodDqYe\n=ngqr\n-----END PGP SIGNATURE-----\n","payload":"tree 1bc56658193566edd98c58a10f5b8450503349b3\nparent 48600daa76c0dd3925eb34d216bc756ed556016d\nauthor iarspider 1733485792 -0800\ncommitter GitHub 1733485792 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T11:49:53Z"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"parents":[{"sha":"48600daa76c0dd3925eb34d216bc756ed556016d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48600daa76c0dd3925eb34d216bc756ed556016d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48600daa76c0dd3925eb34d216bc756ed556016d"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:26:29 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"47d6dfd720af89a0650e78ad5adefd20a908f27eeca9e785a93112b765bd0db7"'), ('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', '4958'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '8090:B1E9B:BCE8E2:C011BE:675317A5')] +{"state":"pending","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/9138474754099798ff50cb07287e7caa4786f247","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33021541573,"node_id":"SC_kwDOF83__M8AAAAHsDy8xQ","state":"pending","description":"Waiting for authorized user to issue the test command.","target_url":null,"context":"bot/21/jenkins","created_at":"2024-12-06T15:01:37Z","updated_at":"2024-12-06T15:01:37Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/9138474754099798ff50cb07287e7caa4786f247","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33021542027,"node_id":"SC_kwDOF83__M8AAAAHsDy-iw","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523440118","context":"cms/21/code-checks","created_at":"2024-12-06T15:01:38Z","updated_at":"2024-12-06T15:01:38Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/9138474754099798ff50cb07287e7caa4786f247","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33021542178,"node_id":"SC_kwDOF83__M8AAAAHsDy_Ig","state":"success","description":"Comment by iarspider at 2024-12-06 15:00:50 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523440118","context":"bot/21/ack","created_at":"2024-12-06T15:01:39Z","updated_at":"2024-12-06T15:01:39Z"}],"sha":"9138474754099798ff50cb07287e7caa4786f247","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","user_view_type":"public","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/9138474754099798ff50cb07287e7caa4786f247","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:26:30 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1da477af7dbd08d1fa89279392a4a1347fc44a66ea955a5ba2cc0a1445d9ec0a"'), ('Last-Modified', 'Fri, 06 Dec 2024 11:49:52 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '809C:B0A59:CBB067:CEE73D:675317A5')] +{"sha":"9138474754099798ff50cb07287e7caa4786f247","node_id":"C_kwDOF83__NoAKDkxMzg0NzQ3NTQwOTk3OThmZjUwY2IwNzI4N2U3Y2FhNDc4NmYyNDc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247","author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T11:49:52Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T11:49:52Z"},"tree":{"sha":"1bc56658193566edd98c58a10f5b8450503349b3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bc56658193566edd98c58a10f5b8450503349b3"},"message":"Update BuildFile.xml","parents":[{"sha":"48600daa76c0dd3925eb34d216bc756ed556016d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/48600daa76c0dd3925eb34d216bc756ed556016d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48600daa76c0dd3925eb34d216bc756ed556016d"}],"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUuTgCRC1aQ7uu5UhlAAAXEgQAA849OOQ7CddTtap7gjrqzwC\nD1iTWFoY1C/ulXWq/fSFENU+51j/S0ped3UOb52IVAuvCGS7UTx+ESpP4wo+DaS1\nyXyi+nlKEtbutj9hkCFQPTJLNy1tbjdxpYxaNghvBe6s2FExzGQG1hmOnZw0WpYe\nP3M48F6e2qWggLwG5MLODkVA6O2oRLZWcp5Ew1Qu6SGpKmnunhxNbRLTLTraoKt7\nYK23YGyVKuUIxUrefddg5NH6xeUdw39HB8p/3FZ8bPal3KIN6J+mn1+GrIY/ZTS1\nzX1olMgojRvNeevAALj5ZvETLsYIiPxldjAGnKwKbHrC+LZ5mTq2K4/nbqQ1kccW\nqs22MCiCSCwkud3viLtwk4VxOQrVV/trf62JijAUSH6jFYQX1nN5ci1E++wtqcbI\neNJOCUoy+O6T0HMhjTPqE/+YMSWooUR7ekY8qngKv5sP+iolPWsIbwppSQNd0Cit\nh/lqkYZBfno/peWzoPu8WPI798ONOJsW5JK8KMVc2Folxbq0SyPMgNVHGrs1HNiw\ne0C/MnkXfYetHb+vHV5cg3GuNYmGhwG9W9CPzIsENQiwuA+mftgv7D/reZOSLwLt\nNnrmSPnzEnHYOm8RfCAHyprBW8gLnY2mZKie2hiZ+TdjqGro1+R+Fg4IuF6QZkeU\ncWQzYRgBKFj16WodDqYe\n=ngqr\n-----END PGP SIGNATURE-----\n","payload":"tree 1bc56658193566edd98c58a10f5b8450503349b3\nparent 48600daa76c0dd3925eb34d216bc756ed556016d\nauthor iarspider 1733485792 -0800\ncommitter GitHub 1733485792 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T11:49:53Z"}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:26:30 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ca15451786a279a77cfce4031adf5c3d2f9af57a3340dc4a396dee4c1854149e"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '809E:B03E9:D6B52B:D9EC2B:675317A6')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523322081","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523322081,"node_id":"IC_kwDOF83__M6WZtbh","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T14:04:19Z","updated_at":"2024-12-06T14:04:19Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081/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/2523440118","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523440118","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523440118,"node_id":"IC_kwDOF83__M6WaKP2","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:00:50Z","updated_at":"2024-12-06T15:00:50Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523440118/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/2523442237","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523442237","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523442237,"node_id":"IC_kwDOF83__M6WaKw9","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:01:51Z","updated_at":"2024-12-06T15:01:51Z","author_association":"MEMBER","body":"assign l1","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523442237/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_draft_pr_opened.txt b/tests/ReplayData/TestProcessPr.test_draft_pr_opened.txt new file mode 100644 index 000000000000..9a1717e4b1f6 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_draft_pr_opened.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 +[('Date', 'Fri, 06 Dec 2024 15:01:01 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b4f88d5d80a2eae0468232279cb538d7526f79c9710ac99fff4923d8e7d9301c"'), ('Last-Modified', 'Wed, 20 Nov 2024 14:49:54 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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'A37C:E971C:97048:99B9B:675311AD')] +{"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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T11:49:52Z","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":1257958,"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","user_view_type":"public","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","user_view_type":"public","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-12-06T12:55:33Z","pushed_at":"2024-12-06T12:56: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":1414095,"stargazers_count":1092,"watchers_count":1092,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4331,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":970,"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":4331,"open_issues":970,"watchers":1092,"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","user_view_type":"public","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-12-06T12:55:33Z","pushed_at":"2024-12-06T12:56: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":1414095,"stargazers_count":1092,"watchers_count":1092,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4331,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":970,"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":4331,"open_issues":970,"watchers":1092,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_non_provider_patterns":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4331,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:01:01 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"987bab9901c9291507d797cab55eb06f1800a99c9936172a60464a2ad28f2981"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:00:51 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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'A37E:B1AE3:A50A32:A7D3D3:675311AD')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","id":2722911860,"node_id":"PR_kwDOF83__M6EUb63","number":21,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2024-12-06T12:09:46Z","updated_at":"2024-12-06T15:00:51Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":true,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.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/21/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/21/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 +[('Date', 'Fri, 06 Dec 2024 15:01:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'A38E:AF98A:A5DE43:A8A6F1:675311AD')] +{"resources":{"core":{"limit":5000,"used":10,"remaining":4990,"reset":1733500816},"search":{"limit":30,"used":0,"remaining":30,"reset":1733497322},"graphql":{"limit":5000,"used":0,"remaining":5000,"reset":1733500862},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1733500862},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1733497322},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1733500862},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1733500862},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1733500862},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1733497322},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1733500862},"audit_log_streaming":{"limit":15,"used":0,"remaining":15,"reset":1733500862},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1733497322}},"rate":{"limit":5000,"used":10,"remaining":4990,"reset":1733500816}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:01:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"de22cdff9b05c1e4d447544cedd8f9c7aa7085b6b0cae3607326c6b45e3f8a02"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:00:51 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'A392:AF691:A8B3DC:AB7D8D:675311AE')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","id":2219949751,"node_id":"PR_kwDOF83__M6EUb63","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","number":21,"state":"open","locked":false,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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-12-06T12:09:46Z","updated_at":"2024-12-06T15:00:51Z","closed_at":null,"merged_at":null,"merge_commit_sha":"444dce9386d7e981b99344f382873e4923a23d69","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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"draft":true,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/9138474754099798ff50cb07287e7caa4786f247","head":{"label":"iarspider-cmssw:iarspider-patch-1","ref":"iarspider-patch-1","sha":"9138474754099798ff50cb07287e7caa4786f247","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T11:49:52Z","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":1257958,"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":"48600daa76c0dd3925eb34d216bc756ed556016d","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T11:49:52Z","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":1257958,"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/21"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/21"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/9138474754099798ff50cb07287e7caa4786f247"}},"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":1,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:01:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ec719fce61d6b6665cab300a566fe9bc408b80380153141dc38c301c2b0ab8a8"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:00:51 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'A39A:B0A59:B05BCF:B325C5:675311AE')] +[{"sha":"279eb03c0cbce1d387c1678a1f4bda0b3e8034ad","filename":"FWCore/Utilities/BuildFile.xml","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/9138474754099798ff50cb07287e7caa4786f247/FWCore%2FUtilities%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/9138474754099798ff50cb07287e7caa4786f247/FWCore%2FUtilities%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/FWCore%2FUtilities%2FBuildFile.xml?ref=9138474754099798ff50cb07287e7caa4786f247","patch":"@@ -7,3 +7,4 @@\n \n \n \n+"}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:01:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"8d1c6891f7b0eb453d6ace566fe1d7c7a9210f2d89d66523262fba372275e18c"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:00:51 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'A39E:D1B84:A8DFC1:ABA972:675311AF')] +[{"sha":"9138474754099798ff50cb07287e7caa4786f247","node_id":"C_kwDOF83__NoAKDkxMzg0NzQ3NTQwOTk3OThmZjUwY2IwNzI4N2U3Y2FhNDc4NmYyNDc","commit":{"author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T11:49:52Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T11:49:52Z"},"message":"Update BuildFile.xml","tree":{"sha":"1bc56658193566edd98c58a10f5b8450503349b3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bc56658193566edd98c58a10f5b8450503349b3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUuTgCRC1aQ7uu5UhlAAAXEgQAA849OOQ7CddTtap7gjrqzwC\nD1iTWFoY1C/ulXWq/fSFENU+51j/S0ped3UOb52IVAuvCGS7UTx+ESpP4wo+DaS1\nyXyi+nlKEtbutj9hkCFQPTJLNy1tbjdxpYxaNghvBe6s2FExzGQG1hmOnZw0WpYe\nP3M48F6e2qWggLwG5MLODkVA6O2oRLZWcp5Ew1Qu6SGpKmnunhxNbRLTLTraoKt7\nYK23YGyVKuUIxUrefddg5NH6xeUdw39HB8p/3FZ8bPal3KIN6J+mn1+GrIY/ZTS1\nzX1olMgojRvNeevAALj5ZvETLsYIiPxldjAGnKwKbHrC+LZ5mTq2K4/nbqQ1kccW\nqs22MCiCSCwkud3viLtwk4VxOQrVV/trf62JijAUSH6jFYQX1nN5ci1E++wtqcbI\neNJOCUoy+O6T0HMhjTPqE/+YMSWooUR7ekY8qngKv5sP+iolPWsIbwppSQNd0Cit\nh/lqkYZBfno/peWzoPu8WPI798ONOJsW5JK8KMVc2Folxbq0SyPMgNVHGrs1HNiw\ne0C/MnkXfYetHb+vHV5cg3GuNYmGhwG9W9CPzIsENQiwuA+mftgv7D/reZOSLwLt\nNnrmSPnzEnHYOm8RfCAHyprBW8gLnY2mZKie2hiZ+TdjqGro1+R+Fg4IuF6QZkeU\ncWQzYRgBKFj16WodDqYe\n=ngqr\n-----END PGP SIGNATURE-----\n","payload":"tree 1bc56658193566edd98c58a10f5b8450503349b3\nparent 48600daa76c0dd3925eb34d216bc756ed556016d\nauthor iarspider 1733485792 -0800\ncommitter GitHub 1733485792 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T11:49:53Z"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"parents":[{"sha":"48600daa76c0dd3925eb34d216bc756ed556016d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48600daa76c0dd3925eb34d216bc756ed556016d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48600daa76c0dd3925eb34d216bc756ed556016d"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:01:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"3aaafce463c8f8d317f11ec6baa6b5e484d3662e86964d65e8670fe96c5e71f4"'), ('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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'A3A6:B03E9:BA510B:BD1B1B:675311AF')] +{"state":"pending","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/9138474754099798ff50cb07287e7caa4786f247","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33020242930,"node_id":"SC_kwDOF83__M8AAAAHsCjr8g","state":"pending","description":"code-checks requested","target_url":null,"context":"cms/21/code-checks","created_at":"2024-12-06T14:04:19Z","updated_at":"2024-12-06T14:04:19Z"}],"sha":"9138474754099798ff50cb07287e7caa4786f247","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","user_view_type":"public","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/9138474754099798ff50cb07287e7caa4786f247","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:01:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1da477af7dbd08d1fa89279392a4a1347fc44a66ea955a5ba2cc0a1445d9ec0a"'), ('Last-Modified', 'Fri, 06 Dec 2024 11:49:52 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'A3B4:AFA18:A909F7:ABD4D6:675311AF')] +{"sha":"9138474754099798ff50cb07287e7caa4786f247","node_id":"C_kwDOF83__NoAKDkxMzg0NzQ3NTQwOTk3OThmZjUwY2IwNzI4N2U3Y2FhNDc4NmYyNDc","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247","author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T11:49:52Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T11:49:52Z"},"tree":{"sha":"1bc56658193566edd98c58a10f5b8450503349b3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bc56658193566edd98c58a10f5b8450503349b3"},"message":"Update BuildFile.xml","parents":[{"sha":"48600daa76c0dd3925eb34d216bc756ed556016d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/48600daa76c0dd3925eb34d216bc756ed556016d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48600daa76c0dd3925eb34d216bc756ed556016d"}],"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUuTgCRC1aQ7uu5UhlAAAXEgQAA849OOQ7CddTtap7gjrqzwC\nD1iTWFoY1C/ulXWq/fSFENU+51j/S0ped3UOb52IVAuvCGS7UTx+ESpP4wo+DaS1\nyXyi+nlKEtbutj9hkCFQPTJLNy1tbjdxpYxaNghvBe6s2FExzGQG1hmOnZw0WpYe\nP3M48F6e2qWggLwG5MLODkVA6O2oRLZWcp5Ew1Qu6SGpKmnunhxNbRLTLTraoKt7\nYK23YGyVKuUIxUrefddg5NH6xeUdw39HB8p/3FZ8bPal3KIN6J+mn1+GrIY/ZTS1\nzX1olMgojRvNeevAALj5ZvETLsYIiPxldjAGnKwKbHrC+LZ5mTq2K4/nbqQ1kccW\nqs22MCiCSCwkud3viLtwk4VxOQrVV/trf62JijAUSH6jFYQX1nN5ci1E++wtqcbI\neNJOCUoy+O6T0HMhjTPqE/+YMSWooUR7ekY8qngKv5sP+iolPWsIbwppSQNd0Cit\nh/lqkYZBfno/peWzoPu8WPI798ONOJsW5JK8KMVc2Folxbq0SyPMgNVHGrs1HNiw\ne0C/MnkXfYetHb+vHV5cg3GuNYmGhwG9W9CPzIsENQiwuA+mftgv7D/reZOSLwLt\nNnrmSPnzEnHYOm8RfCAHyprBW8gLnY2mZKie2hiZ+TdjqGro1+R+Fg4IuF6QZkeU\ncWQzYRgBKFj16WodDqYe\n=ngqr\n-----END PGP SIGNATURE-----\n","payload":"tree 1bc56658193566edd98c58a10f5b8450503349b3\nparent 48600daa76c0dd3925eb34d216bc756ed556016d\nauthor iarspider 1733485792 -0800\ncommitter GitHub 1733485792 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T11:49:53Z"}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:01:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"18b4a4634fcb4e0820550e9f0b46b37d1e5f5b5532ded20c149137924bda0f74"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C6FA:B0C33:A7AC70:AA7499:675311AF')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523322081","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523322081,"node_id":"IC_kwDOF83__M6WZtbh","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T14:04:19Z","updated_at":"2024-12-06T14:04:19Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081/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/2523440118","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523440118","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523440118,"node_id":"IC_kwDOF83__M6WaKP2","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:00:50Z","updated_at":"2024-12-06T15:00:50Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523440118/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_draft_pr_ready.txt b/tests/ReplayData/TestProcessPr.test_draft_pr_ready.txt new file mode 100644 index 000000000000..5a599a2b0ff6 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_draft_pr_ready.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 +[('Date', 'Wed, 11 Dec 2024 11:00:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"50f04c56d11aab16c00c131c0a0b8f5252fadb3790dac37270ed9d2121eeab35"'), ('Last-Modified', 'Wed, 20 Nov 2024 14:49:54 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', '4982'), ('X-RateLimit-Reset', '1733915310'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '9ECA:3E945C:4F7CF9:50CEF0:675970B1')] +{"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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T15:34:03Z","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":1257958,"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","user_view_type":"public","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","user_view_type":"public","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-12-11T09:32:34Z","pushed_at":"2024-12-11T10:06:35Z","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":1414342,"stargazers_count":1093,"watchers_count":1093,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4333,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":969,"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":4333,"open_issues":969,"watchers":1093,"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","user_view_type":"public","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-12-11T09:32:34Z","pushed_at":"2024-12-11T10:06:35Z","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":1414342,"stargazers_count":1093,"watchers_count":1093,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4333,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":969,"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":4333,"open_issues":969,"watchers":1093,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_non_provider_patterns":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4333,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Wed, 11 Dec 2024 11:00:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4e21ab8e4a365b84448edffc4dafa1fac517e812282ff7323d032948bbea9d3c"'), ('Last-Modified', 'Wed, 11 Dec 2024 10:59:56 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', '4981'), ('X-RateLimit-Reset', '1733915310'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '9ED6:3F21FB:4E9FAA:4FF1FF:675970B2')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","id":2722911860,"node_id":"PR_kwDOF83__M6EUb63","number":21,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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},{"id":6160601371,"node_id":"LA_kwDOF83__M8AAAABbzNRGw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/l1-pending","name":"l1-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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"comments":7,"created_at":"2024-12-06T12:09:46Z","updated_at":"2024-12-11T10:59:56Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.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/21/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/21/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 +[('Date', 'Wed, 11 Dec 2024 11:00:02 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('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', '4981'), ('X-RateLimit-Reset', '1733915310'), ('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'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '9EDE:3EC0A5:525C74:53AEC2:675970B2')] +{"resources":{"core":{"limit":5000,"used":19,"remaining":4981,"reset":1733915310},"search":{"limit":30,"used":0,"remaining":30,"reset":1733914862},"graphql":{"limit":5000,"used":1,"remaining":4999,"reset":1733915309},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1733918402},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1733914862},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1733918402},"code_scanning_autofix":{"limit":10,"used":0,"remaining":10,"reset":1733914862},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1733918402},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1733918402},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1733914862},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1733918402},"audit_log_streaming":{"limit":15,"used":0,"remaining":15,"reset":1733918402},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1733914862}},"rate":{"limit":5000,"used":19,"remaining":4981,"reset":1733915310}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Wed, 11 Dec 2024 11:00:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"df2fbe644bfffaccec19690706ddb1238e74f33e2381a9b5a158300668ba9b2b"'), ('Last-Modified', 'Wed, 11 Dec 2024 10:59: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', '4980'), ('X-RateLimit-Reset', '1733915310'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '9EE0:137EF:4CF540:4E4793:675970B2')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","id":2219949751,"node_id":"PR_kwDOF83__M6EUb63","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","number":21,"state":"open","locked":false,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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-12-06T12:09:46Z","updated_at":"2024-12-11T10:59:56Z","closed_at":null,"merged_at":null,"merge_commit_sha":"337c68d3c3e9c43e3bb2787a089e9af75814bd7c","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},{"id":6160601371,"node_id":"LA_kwDOF83__M8AAAABbzNRGw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/l1-pending","name":"l1-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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"draft":false,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246","head":{"label":"iarspider-cmssw:iarspider-patch-1","ref":"iarspider-patch-1","sha":"28ce3f5888b5433dcae409ee336b2ad422595246","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T15:34:03Z","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":1257958,"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":"48600daa76c0dd3925eb34d216bc756ed556016d","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T15:34:03Z","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":1257958,"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/21"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/21"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246"}},"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":2,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Wed, 11 Dec 2024 11:00:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6a11058401011092b44905b418a1f98657d77344c8d77dc954f76ede0d708120"'), ('Last-Modified', 'Wed, 11 Dec 2024 10:59: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', '4979'), ('X-RateLimit-Reset', '1733915310'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '9EEE:3F0DE7:52768A:53C93F:675970B3')] +[{"sha":"f0e710781cfb2d7f7d531a72bb1097d31fc8850d","filename":"FWCore/Utilities/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/28ce3f5888b5433dcae409ee336b2ad422595246/FWCore%2FUtilities%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/28ce3f5888b5433dcae409ee336b2ad422595246/FWCore%2FUtilities%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/FWCore%2FUtilities%2FBuildFile.xml?ref=28ce3f5888b5433dcae409ee336b2ad422595246","patch":"@@ -7,3 +7,5 @@\n \n \n \n+\n+"}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Wed, 11 Dec 2024 11:00:03 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4c85acd544d72eaa582bb5c58b3c0b935fcbbb95ad944dd62b34894c1f8f0f22"'), ('Last-Modified', 'Wed, 11 Dec 2024 10:59: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', '4978'), ('X-RateLimit-Reset', '1733915310'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '9EFE:3E945C:4F875F:50D959:675970B3')] +[{"sha":"9138474754099798ff50cb07287e7caa4786f247","node_id":"C_kwDOF83__NoAKDkxMzg0NzQ3NTQwOTk3OThmZjUwY2IwNzI4N2U3Y2FhNDc4NmYyNDc","commit":{"author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T11:49:52Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T11:49:52Z"},"message":"Update BuildFile.xml","tree":{"sha":"1bc56658193566edd98c58a10f5b8450503349b3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bc56658193566edd98c58a10f5b8450503349b3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUuTgCRC1aQ7uu5UhlAAAXEgQAA849OOQ7CddTtap7gjrqzwC\nD1iTWFoY1C/ulXWq/fSFENU+51j/S0ped3UOb52IVAuvCGS7UTx+ESpP4wo+DaS1\nyXyi+nlKEtbutj9hkCFQPTJLNy1tbjdxpYxaNghvBe6s2FExzGQG1hmOnZw0WpYe\nP3M48F6e2qWggLwG5MLODkVA6O2oRLZWcp5Ew1Qu6SGpKmnunhxNbRLTLTraoKt7\nYK23YGyVKuUIxUrefddg5NH6xeUdw39HB8p/3FZ8bPal3KIN6J+mn1+GrIY/ZTS1\nzX1olMgojRvNeevAALj5ZvETLsYIiPxldjAGnKwKbHrC+LZ5mTq2K4/nbqQ1kccW\nqs22MCiCSCwkud3viLtwk4VxOQrVV/trf62JijAUSH6jFYQX1nN5ci1E++wtqcbI\neNJOCUoy+O6T0HMhjTPqE/+YMSWooUR7ekY8qngKv5sP+iolPWsIbwppSQNd0Cit\nh/lqkYZBfno/peWzoPu8WPI798ONOJsW5JK8KMVc2Folxbq0SyPMgNVHGrs1HNiw\ne0C/MnkXfYetHb+vHV5cg3GuNYmGhwG9W9CPzIsENQiwuA+mftgv7D/reZOSLwLt\nNnrmSPnzEnHYOm8RfCAHyprBW8gLnY2mZKie2hiZ+TdjqGro1+R+Fg4IuF6QZkeU\ncWQzYRgBKFj16WodDqYe\n=ngqr\n-----END PGP SIGNATURE-----\n","payload":"tree 1bc56658193566edd98c58a10f5b8450503349b3\nparent 48600daa76c0dd3925eb34d216bc756ed556016d\nauthor iarspider 1733485792 -0800\ncommitter GitHub 1733485792 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T11:49:53Z"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"parents":[{"sha":"48600daa76c0dd3925eb34d216bc756ed556016d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48600daa76c0dd3925eb34d216bc756ed556016d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48600daa76c0dd3925eb34d216bc756ed556016d"}]},{"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","node_id":"C_kwDOF83__NoAKDI4Y2UzZjU4ODhiNTQzM2RjYWU0MDllZTMzNmIyYWQ0MjI1OTUyNDY","commit":{"author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T15:34:01Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T15:34:01Z"},"message":"Update BuildFile.xml","tree":{"sha":"c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUxlqCRC1aQ7uu5UhlAAAPY8QABFO0pySgJzhfpKtBofuy3yL\n1VU5Qrr7jCjgeV/VEFuv5PmzQ5UpY65p2tFq9LizB7ROp3sSihACoBNOYDg8lV4I\nSatTr8ICeWWFKt3liceRABbb9iLjJuuh669uqT9uWcvE1RigMGPs/9ZXFUPw6oz4\nAqPjiSmMEZRZ/jJwSukxlBCEJEDxZmvdh1sHHCsSIpOUE0kpUZv67nhrHNfH/u5h\ncwHY2JXWf6qm72Cl/6ox7cEUlRPDQjRt1fuS9oEPRTA3F8V1yyVfgNKsbjMJ7Kld\nEmQ/WgCKhmxyjI3CzrwUG/84Tkort/Sg/vR1yDANheWE0FbUx5RxV2jmv907k97y\n7iJUYkjh/dC9cDCjNBE3oc3/bdaY5eXYQQrVg570hStzclgyYjw9Iu+BiSo9vQuH\n7F6EAbKxHUqdv9jQQR8M0HmLzqs8hm7whTUBV7SWeWNmPGo23tqT/yiq/+vNnn4i\nU3VmyiIFDFuVDt+R5oEwprywBS3rSGyML8S1cBfCN3OdZMvAn4tSjxtwIfUvr8lJ\nZn91lCvu0DZcrW9PlpIT6hQ3pinubTZmu/i2RclXqJAqONF0vhg3Bx3F8RZhJ1y2\nZaDhR3+bkgQQBPYVPYDIWM8X0gIPZseFZ1axogBPt+yEkprf//D0jZjonlUpbaUI\nDsgTfdYkySaR5XHmgav5\n=JyWz\n-----END PGP SIGNATURE-----\n","payload":"tree c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9\nparent 9138474754099798ff50cb07287e7caa4786f247\nauthor iarspider 1733499241 -0800\ncommitter GitHub 1733499241 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T15:34:37Z"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28ce3f5888b5433dcae409ee336b2ad422595246","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"parents":[{"sha":"9138474754099798ff50cb07287e7caa4786f247","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Wed, 11 Dec 2024 11:00:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e02746b345d9ca4be6e4d7ef86c1da320256fd7a59ae495d19bd251bbdcc956e"'), ('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', '4977'), ('X-RateLimit-Reset', '1733915310'), ('X-RateLimit-Used', '23'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '9F04:3E6666:4FB22E:51052B:675970B4')] +{"state":"pending","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33088122262,"node_id":"SC_kwDOF83__M8AAAAHtDStlg","state":"pending","description":"Waiting for authorized user to issue the test command.","target_url":null,"context":"bot/21/jenkins","created_at":"2024-12-10T17:12:19Z","updated_at":"2024-12-10T17:12:19Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33088122388,"node_id":"SC_kwDOF83__M8AAAAHtDSuFA","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523514208","context":"cms/21/code-checks","created_at":"2024-12-10T17:12:19Z","updated_at":"2024-12-10T17:12:19Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33088123173,"node_id":"SC_kwDOF83__M8AAAAHtDSxJQ","state":"success","description":"Comment by iarspider at 2024-12-06 15:36:43 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523514208","context":"bot/21/ack","created_at":"2024-12-10T17:12:21Z","updated_at":"2024-12-10T17:12:21Z"}],"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","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","user_view_type":"public","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/28ce3f5888b5433dcae409ee336b2ad422595246","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Wed, 11 Dec 2024 11:00:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b9a480249ace91856a15236ba98619992438fc0873e78872171f06b2ea4d507b"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:34: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', '4976'), ('X-RateLimit-Reset', '1733915310'), ('X-RateLimit-Used', '24'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '9F10:1F97E:4BB7A2:4D09E1:675970B4')] +{"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","node_id":"C_kwDOF83__NoAKDI4Y2UzZjU4ODhiNTQzM2RjYWU0MDllZTMzNmIyYWQ0MjI1OTUyNDY","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28ce3f5888b5433dcae409ee336b2ad422595246","author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T15:34:01Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T15:34:01Z"},"tree":{"sha":"c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9"},"message":"Update BuildFile.xml","parents":[{"sha":"9138474754099798ff50cb07287e7caa4786f247","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247"}],"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUxlqCRC1aQ7uu5UhlAAAPY8QABFO0pySgJzhfpKtBofuy3yL\n1VU5Qrr7jCjgeV/VEFuv5PmzQ5UpY65p2tFq9LizB7ROp3sSihACoBNOYDg8lV4I\nSatTr8ICeWWFKt3liceRABbb9iLjJuuh669uqT9uWcvE1RigMGPs/9ZXFUPw6oz4\nAqPjiSmMEZRZ/jJwSukxlBCEJEDxZmvdh1sHHCsSIpOUE0kpUZv67nhrHNfH/u5h\ncwHY2JXWf6qm72Cl/6ox7cEUlRPDQjRt1fuS9oEPRTA3F8V1yyVfgNKsbjMJ7Kld\nEmQ/WgCKhmxyjI3CzrwUG/84Tkort/Sg/vR1yDANheWE0FbUx5RxV2jmv907k97y\n7iJUYkjh/dC9cDCjNBE3oc3/bdaY5eXYQQrVg570hStzclgyYjw9Iu+BiSo9vQuH\n7F6EAbKxHUqdv9jQQR8M0HmLzqs8hm7whTUBV7SWeWNmPGo23tqT/yiq/+vNnn4i\nU3VmyiIFDFuVDt+R5oEwprywBS3rSGyML8S1cBfCN3OdZMvAn4tSjxtwIfUvr8lJ\nZn91lCvu0DZcrW9PlpIT6hQ3pinubTZmu/i2RclXqJAqONF0vhg3Bx3F8RZhJ1y2\nZaDhR3+bkgQQBPYVPYDIWM8X0gIPZseFZ1axogBPt+yEkprf//D0jZjonlUpbaUI\nDsgTfdYkySaR5XHmgav5\n=JyWz\n-----END PGP SIGNATURE-----\n","payload":"tree c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9\nparent 9138474754099798ff50cb07287e7caa4786f247\nauthor iarspider 1733499241 -0800\ncommitter GitHub 1733499241 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T15:34:37Z"}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Wed, 11 Dec 2024 11:00:04 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1765d0b187dd7253463f1cf44550b4faafa3740d956036aa603f4a4e67a81c00"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4975'), ('X-RateLimit-Reset', '1733915310'), ('X-RateLimit-Used', '25'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', '9F1A:1655E:50F60B:5248D4:675970B4')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523322081","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523322081,"node_id":"IC_kwDOF83__M6WZtbh","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T14:04:19Z","updated_at":"2024-12-10T17:12:20Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081/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/2523440118","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523440118","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523440118,"node_id":"IC_kwDOF83__M6WaKP2","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:00:50Z","updated_at":"2024-12-06T15:00:50Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523440118/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/2523442237","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523442237","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523442237,"node_id":"IC_kwDOF83__M6WaKw9","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:01:51Z","updated_at":"2024-12-06T15:01:51Z","author_association":"MEMBER","body":"assign l1","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523442237/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/2523498037","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523498037","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523498037,"node_id":"IC_kwDOF83__M6WaYY1","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:29:13Z","updated_at":"2024-12-06T15:29:13Z","author_association":"MEMBER","body":"New categories assigned: l1\n\naloeliger,epalencia 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/2523498037/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/2523514208","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523514208","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523514208,"node_id":"IC_kwDOF83__M6WacVg","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:36:43Z","updated_at":"2024-12-06T15:36:43Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523514208/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/2532320313","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2532320313","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2532320313,"node_id":"IC_kwDOF83__M6W8CQ5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-10T17:12:20Z","updated_at":"2024-12-10T17:12:20Z","author_association":"MEMBER","body":"Pull request #21 was updated.","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2532320313/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/2532358732","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2532358732","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2532358732,"node_id":"IC_kwDOF83__M6W8LpM","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-10T17:30:16Z","updated_at":"2024-12-10T17:30:16Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2532358732/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_draft_pr_start_test.txt b/tests/ReplayData/TestProcessPr.test_draft_pr_start_test.txt new file mode 100644 index 000000000000..af0e5ae484e6 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_draft_pr_start_test.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 +[('Date', 'Tue, 10 Dec 2024 17:36:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"73afc4e1d140ce514be20c40417a93f3b54dd2d63048e10954bdd07054134b1f"'), ('Last-Modified', 'Wed, 20 Nov 2024 14:49:54 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', '4999'), ('X-RateLimit-Reset', '1733855776'), ('X-RateLimit-Used', '1'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C3EC:3A72A4:2B6356:2C3BBA:67587C10')] +{"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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T15:34:03Z","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":1257958,"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","user_view_type":"public","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","user_view_type":"public","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-12-10T16:59:31Z","pushed_at":"2024-12-10T17:00:50Z","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":1414240,"stargazers_count":1093,"watchers_count":1093,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4333,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":970,"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":4333,"open_issues":970,"watchers":1093,"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","user_view_type":"public","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-12-10T16:59:31Z","pushed_at":"2024-12-10T17:00:50Z","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":1414240,"stargazers_count":1093,"watchers_count":1093,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4333,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":970,"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":4333,"open_issues":970,"watchers":1093,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_non_provider_patterns":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4333,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Tue, 10 Dec 2024 17:36:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4f2430dab245b595f5f857c40802e3bc7f159f5134885869281c14c0152426a9"'), ('Last-Modified', 'Tue, 10 Dec 2024 17:30:17 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', '4998'), ('X-RateLimit-Reset', '1733855776'), ('X-RateLimit-Used', '2'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C3FC:37A3F2:28D3FE:29AC2E:67587C10')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","id":2722911860,"node_id":"PR_kwDOF83__M6EUb63","number":21,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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},{"id":6160601371,"node_id":"LA_kwDOF83__M8AAAABbzNRGw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/l1-pending","name":"l1-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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"comments":7,"created_at":"2024-12-06T12:09:46Z","updated_at":"2024-12-10T17:30:17Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":true,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.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/21/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/21/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 +[('Date', 'Tue, 10 Dec 2024 17:36:16 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('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', '4998'), ('X-RateLimit-Reset', '1733855776'), ('X-RateLimit-Used', '2'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C408:3A8B7A:2D7875:2E50FF:67587C10')] +{"resources":{"core":{"limit":5000,"used":2,"remaining":4998,"reset":1733855776},"search":{"limit":30,"used":0,"remaining":30,"reset":1733852236},"graphql":{"limit":5000,"used":22,"remaining":4978,"reset":1733853130},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1733855776},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1733852236},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1733855776},"code_scanning_autofix":{"limit":10,"used":0,"remaining":10,"reset":1733852236},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1733855776},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1733855776},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1733852236},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1733855776},"audit_log_streaming":{"limit":15,"used":0,"remaining":15,"reset":1733855776},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1733852236}},"rate":{"limit":5000,"used":2,"remaining":4998,"reset":1733855776}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Tue, 10 Dec 2024 17:36:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"bd73c6cb73d108aad1fba615d7c301a428bd619f58cdda8acf039b497acf2af1"'), ('Last-Modified', 'Tue, 10 Dec 2024 17:30:17 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4997'), ('X-RateLimit-Reset', '1733855776'), ('X-RateLimit-Used', '3'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C414:383665:2870AD:2948F8:67587C10')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","id":2219949751,"node_id":"PR_kwDOF83__M6EUb63","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","number":21,"state":"open","locked":false,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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-12-06T12:09:46Z","updated_at":"2024-12-10T17:30:17Z","closed_at":null,"merged_at":null,"merge_commit_sha":"337c68d3c3e9c43e3bb2787a089e9af75814bd7c","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},{"id":6160601371,"node_id":"LA_kwDOF83__M8AAAABbzNRGw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/l1-pending","name":"l1-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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"draft":true,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246","head":{"label":"iarspider-cmssw:iarspider-patch-1","ref":"iarspider-patch-1","sha":"28ce3f5888b5433dcae409ee336b2ad422595246","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T15:34:03Z","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":1257958,"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":"48600daa76c0dd3925eb34d216bc756ed556016d","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T15:34:03Z","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":1257958,"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/21"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/21"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246"}},"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":2,"additions":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Tue, 10 Dec 2024 17:36:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"6a11058401011092b44905b418a1f98657d77344c8d77dc954f76ede0d708120"'), ('Last-Modified', 'Tue, 10 Dec 2024 17:30:17 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4996'), ('X-RateLimit-Reset', '1733855776'), ('X-RateLimit-Used', '4'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C416:3A72A4:2B6946:2C41B8:67587C11')] +[{"sha":"f0e710781cfb2d7f7d531a72bb1097d31fc8850d","filename":"FWCore/Utilities/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/28ce3f5888b5433dcae409ee336b2ad422595246/FWCore%2FUtilities%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/28ce3f5888b5433dcae409ee336b2ad422595246/FWCore%2FUtilities%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/FWCore%2FUtilities%2FBuildFile.xml?ref=28ce3f5888b5433dcae409ee336b2ad422595246","patch":"@@ -7,3 +7,5 @@\n \n \n \n+\n+"}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Tue, 10 Dec 2024 17:36:17 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"4c85acd544d72eaa582bb5c58b3c0b935fcbbb95ad944dd62b34894c1f8f0f22"'), ('Last-Modified', 'Tue, 10 Dec 2024 17:30:17 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4995'), ('X-RateLimit-Reset', '1733855776'), ('X-RateLimit-Used', '5'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C422:37A6CB:2B9931:2C71C3:67587C11')] +[{"sha":"9138474754099798ff50cb07287e7caa4786f247","node_id":"C_kwDOF83__NoAKDkxMzg0NzQ3NTQwOTk3OThmZjUwY2IwNzI4N2U3Y2FhNDc4NmYyNDc","commit":{"author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T11:49:52Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T11:49:52Z"},"message":"Update BuildFile.xml","tree":{"sha":"1bc56658193566edd98c58a10f5b8450503349b3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bc56658193566edd98c58a10f5b8450503349b3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUuTgCRC1aQ7uu5UhlAAAXEgQAA849OOQ7CddTtap7gjrqzwC\nD1iTWFoY1C/ulXWq/fSFENU+51j/S0ped3UOb52IVAuvCGS7UTx+ESpP4wo+DaS1\nyXyi+nlKEtbutj9hkCFQPTJLNy1tbjdxpYxaNghvBe6s2FExzGQG1hmOnZw0WpYe\nP3M48F6e2qWggLwG5MLODkVA6O2oRLZWcp5Ew1Qu6SGpKmnunhxNbRLTLTraoKt7\nYK23YGyVKuUIxUrefddg5NH6xeUdw39HB8p/3FZ8bPal3KIN6J+mn1+GrIY/ZTS1\nzX1olMgojRvNeevAALj5ZvETLsYIiPxldjAGnKwKbHrC+LZ5mTq2K4/nbqQ1kccW\nqs22MCiCSCwkud3viLtwk4VxOQrVV/trf62JijAUSH6jFYQX1nN5ci1E++wtqcbI\neNJOCUoy+O6T0HMhjTPqE/+YMSWooUR7ekY8qngKv5sP+iolPWsIbwppSQNd0Cit\nh/lqkYZBfno/peWzoPu8WPI798ONOJsW5JK8KMVc2Folxbq0SyPMgNVHGrs1HNiw\ne0C/MnkXfYetHb+vHV5cg3GuNYmGhwG9W9CPzIsENQiwuA+mftgv7D/reZOSLwLt\nNnrmSPnzEnHYOm8RfCAHyprBW8gLnY2mZKie2hiZ+TdjqGro1+R+Fg4IuF6QZkeU\ncWQzYRgBKFj16WodDqYe\n=ngqr\n-----END PGP SIGNATURE-----\n","payload":"tree 1bc56658193566edd98c58a10f5b8450503349b3\nparent 48600daa76c0dd3925eb34d216bc756ed556016d\nauthor iarspider 1733485792 -0800\ncommitter GitHub 1733485792 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T11:49:53Z"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"parents":[{"sha":"48600daa76c0dd3925eb34d216bc756ed556016d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48600daa76c0dd3925eb34d216bc756ed556016d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48600daa76c0dd3925eb34d216bc756ed556016d"}]},{"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","node_id":"C_kwDOF83__NoAKDI4Y2UzZjU4ODhiNTQzM2RjYWU0MDllZTMzNmIyYWQ0MjI1OTUyNDY","commit":{"author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T15:34:01Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T15:34:01Z"},"message":"Update BuildFile.xml","tree":{"sha":"c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUxlqCRC1aQ7uu5UhlAAAPY8QABFO0pySgJzhfpKtBofuy3yL\n1VU5Qrr7jCjgeV/VEFuv5PmzQ5UpY65p2tFq9LizB7ROp3sSihACoBNOYDg8lV4I\nSatTr8ICeWWFKt3liceRABbb9iLjJuuh669uqT9uWcvE1RigMGPs/9ZXFUPw6oz4\nAqPjiSmMEZRZ/jJwSukxlBCEJEDxZmvdh1sHHCsSIpOUE0kpUZv67nhrHNfH/u5h\ncwHY2JXWf6qm72Cl/6ox7cEUlRPDQjRt1fuS9oEPRTA3F8V1yyVfgNKsbjMJ7Kld\nEmQ/WgCKhmxyjI3CzrwUG/84Tkort/Sg/vR1yDANheWE0FbUx5RxV2jmv907k97y\n7iJUYkjh/dC9cDCjNBE3oc3/bdaY5eXYQQrVg570hStzclgyYjw9Iu+BiSo9vQuH\n7F6EAbKxHUqdv9jQQR8M0HmLzqs8hm7whTUBV7SWeWNmPGo23tqT/yiq/+vNnn4i\nU3VmyiIFDFuVDt+R5oEwprywBS3rSGyML8S1cBfCN3OdZMvAn4tSjxtwIfUvr8lJ\nZn91lCvu0DZcrW9PlpIT6hQ3pinubTZmu/i2RclXqJAqONF0vhg3Bx3F8RZhJ1y2\nZaDhR3+bkgQQBPYVPYDIWM8X0gIPZseFZ1axogBPt+yEkprf//D0jZjonlUpbaUI\nDsgTfdYkySaR5XHmgav5\n=JyWz\n-----END PGP SIGNATURE-----\n","payload":"tree c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9\nparent 9138474754099798ff50cb07287e7caa4786f247\nauthor iarspider 1733499241 -0800\ncommitter GitHub 1733499241 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T15:34:37Z"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28ce3f5888b5433dcae409ee336b2ad422595246","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"parents":[{"sha":"9138474754099798ff50cb07287e7caa4786f247","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Tue, 10 Dec 2024 17:36:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"e02746b345d9ca4be6e4d7ef86c1da320256fd7a59ae495d19bd251bbdcc956e"'), ('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', '4994'), ('X-RateLimit-Reset', '1733855776'), ('X-RateLimit-Used', '6'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C430:37A6CB:2B9AC8:2C736F:67587C12')] +{"state":"pending","statuses":[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33088122262,"node_id":"SC_kwDOF83__M8AAAAHtDStlg","state":"pending","description":"Waiting for authorized user to issue the test command.","target_url":null,"context":"bot/21/jenkins","created_at":"2024-12-10T17:12:19Z","updated_at":"2024-12-10T17:12:19Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33088122388,"node_id":"SC_kwDOF83__M8AAAAHtDSuFA","state":"success","description":"Check details","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523514208","context":"cms/21/code-checks","created_at":"2024-12-10T17:12:19Z","updated_at":"2024-12-10T17:12:19Z"},{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","id":33088123173,"node_id":"SC_kwDOF83__M8AAAAHtDSxJQ","state":"success","description":"Comment by iarspider at 2024-12-06 15:36:43 UTC processed.","target_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523514208","context":"bot/21/ack","created_at":"2024-12-10T17:12:21Z","updated_at":"2024-12-10T17:12:21Z"}],"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","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","user_view_type":"public","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/28ce3f5888b5433dcae409ee336b2ad422595246","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Tue, 10 Dec 2024 17:36:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"b9a480249ace91856a15236ba98619992438fc0873e78872171f06b2ea4d507b"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:34: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', '4993'), ('X-RateLimit-Reset', '1733855776'), ('X-RateLimit-Used', '7'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C43A:3A0E6A:2CE3BE:2DBC7C:67587C12')] +{"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","node_id":"C_kwDOF83__NoAKDI4Y2UzZjU4ODhiNTQzM2RjYWU0MDllZTMzNmIyYWQ0MjI1OTUyNDY","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28ce3f5888b5433dcae409ee336b2ad422595246","author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T15:34:01Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T15:34:01Z"},"tree":{"sha":"c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9"},"message":"Update BuildFile.xml","parents":[{"sha":"9138474754099798ff50cb07287e7caa4786f247","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247"}],"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUxlqCRC1aQ7uu5UhlAAAPY8QABFO0pySgJzhfpKtBofuy3yL\n1VU5Qrr7jCjgeV/VEFuv5PmzQ5UpY65p2tFq9LizB7ROp3sSihACoBNOYDg8lV4I\nSatTr8ICeWWFKt3liceRABbb9iLjJuuh669uqT9uWcvE1RigMGPs/9ZXFUPw6oz4\nAqPjiSmMEZRZ/jJwSukxlBCEJEDxZmvdh1sHHCsSIpOUE0kpUZv67nhrHNfH/u5h\ncwHY2JXWf6qm72Cl/6ox7cEUlRPDQjRt1fuS9oEPRTA3F8V1yyVfgNKsbjMJ7Kld\nEmQ/WgCKhmxyjI3CzrwUG/84Tkort/Sg/vR1yDANheWE0FbUx5RxV2jmv907k97y\n7iJUYkjh/dC9cDCjNBE3oc3/bdaY5eXYQQrVg570hStzclgyYjw9Iu+BiSo9vQuH\n7F6EAbKxHUqdv9jQQR8M0HmLzqs8hm7whTUBV7SWeWNmPGo23tqT/yiq/+vNnn4i\nU3VmyiIFDFuVDt+R5oEwprywBS3rSGyML8S1cBfCN3OdZMvAn4tSjxtwIfUvr8lJ\nZn91lCvu0DZcrW9PlpIT6hQ3pinubTZmu/i2RclXqJAqONF0vhg3Bx3F8RZhJ1y2\nZaDhR3+bkgQQBPYVPYDIWM8X0gIPZseFZ1axogBPt+yEkprf//D0jZjonlUpbaUI\nDsgTfdYkySaR5XHmgav5\n=JyWz\n-----END PGP SIGNATURE-----\n","payload":"tree c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9\nparent 9138474754099798ff50cb07287e7caa4786f247\nauthor iarspider 1733499241 -0800\ncommitter GitHub 1733499241 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T15:34:37Z"}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Tue, 10 Dec 2024 17:36:18 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"1765d0b187dd7253463f1cf44550b4faafa3740d956036aa603f4a4e67a81c00"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-Scopes', ''), ('X-GitHub-Media-Type', 'github.v3; format=json'), ('x-github-api-version-selected', '2022-11-28'), ('X-RateLimit-Limit', '5000'), ('X-RateLimit-Remaining', '4992'), ('X-RateLimit-Reset', '1733855776'), ('X-RateLimit-Used', '8'), ('X-RateLimit-Resource', 'core'), ('Access-Control-Expose-Headers', 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset'), ('Access-Control-Allow-Origin', '*'), ('Strict-Transport-Security', 'max-age=31536000; includeSubdomains; preload'), ('X-Frame-Options', 'deny'), ('X-Content-Type-Options', 'nosniff'), ('X-XSS-Protection', '0'), ('Referrer-Policy', 'origin-when-cross-origin, strict-origin-when-cross-origin'), ('Content-Security-Policy', "default-src 'none'"), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'C43E:37EEDD:283D7E:291583:67587C12')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523322081","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523322081,"node_id":"IC_kwDOF83__M6WZtbh","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T14:04:19Z","updated_at":"2024-12-10T17:12:20Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081/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/2523440118","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523440118","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523440118,"node_id":"IC_kwDOF83__M6WaKP2","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:00:50Z","updated_at":"2024-12-06T15:00:50Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523440118/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/2523442237","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523442237","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523442237,"node_id":"IC_kwDOF83__M6WaKw9","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:01:51Z","updated_at":"2024-12-06T15:01:51Z","author_association":"MEMBER","body":"assign l1","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523442237/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/2523498037","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523498037","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523498037,"node_id":"IC_kwDOF83__M6WaYY1","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:29:13Z","updated_at":"2024-12-06T15:29:13Z","author_association":"MEMBER","body":"New categories assigned: l1\n\naloeliger,epalencia 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/2523498037/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/2523514208","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523514208","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523514208,"node_id":"IC_kwDOF83__M6WacVg","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:36:43Z","updated_at":"2024-12-06T15:36:43Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523514208/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/2532320313","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2532320313","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2532320313,"node_id":"IC_kwDOF83__M6W8CQ5","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-10T17:12:20Z","updated_at":"2024-12-10T17:12:20Z","author_association":"MEMBER","body":"Pull request #21 was updated.","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2532320313/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/2532358732","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2532358732","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2532358732,"node_id":"IC_kwDOF83__M6W8LpM","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-10T17:30:16Z","updated_at":"2024-12-10T17:30:16Z","author_association":"MEMBER","body":"please test","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2532358732/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_draft_pr_updated.txt b/tests/ReplayData/TestProcessPr.test_draft_pr_updated.txt new file mode 100644 index 000000000000..e94fe36361f0 --- /dev/null +++ b/tests/ReplayData/TestProcessPr.test_draft_pr_updated.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 +[('Date', 'Fri, 06 Dec 2024 15:37:39 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2e005b7d2f58791bea1b4f2e31b9e8aa5763e419d0977dffe3820b13d0296135"'), ('Last-Modified', 'Wed, 20 Nov 2024 14:49:54 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', '4931'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4A0:DD2AF:C8622D:CBDE74:67531A43')] +{"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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T15:34:03Z","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":1257958,"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","user_view_type":"public","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","user_view_type":"public","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-12-06T12:55:33Z","pushed_at":"2024-12-06T12:56: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":1414095,"stargazers_count":1092,"watchers_count":1092,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4331,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":970,"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":4331,"open_issues":970,"watchers":1092,"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","user_view_type":"public","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-12-06T12:55:33Z","pushed_at":"2024-12-06T12:56: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":1414095,"stargazers_count":1092,"watchers_count":1092,"language":"C++","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":4331,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":970,"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":4331,"open_issues":970,"watchers":1092,"default_branch":"master"},"security_and_analysis":{"secret_scanning":{"status":"disabled"},"secret_scanning_push_protection":{"status":"disabled"},"dependabot_security_updates":{"status":"disabled"},"secret_scanning_non_provider_patterns":{"status":"disabled"},"secret_scanning_validity_checks":{"status":"disabled"}},"network_count":4331,"subscribers_count":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:37:40 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"0f18c3acc15f8384107bd29f20eae641fa52e537500bc6c8cca3c1064d352617"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:36: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', '4930'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4AE:CAFC0:C6BE94:CA3890:67531A43')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","repository_url":"https://api.github.com/repos/iarspider-cmssw/cmssw","labels_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/labels{/name}","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments","events_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/events","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","id":2722911860,"node_id":"PR_kwDOF83__M6EUb63","number":21,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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},{"id":6160601371,"node_id":"LA_kwDOF83__M8AAAABbzNRGw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/l1-pending","name":"l1-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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"comments":5,"created_at":"2024-12-06T12:09:46Z","updated_at":"2024-12-06T15:36:44Z","closed_at":null,"author_association":"MEMBER","active_lock_reason":null,"draft":true,"pull_request":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.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/21/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/21/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 +[('Date', 'Fri, 06 Dec 2024 15:37:40 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('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', '4930'), ('X-RateLimit-Reset', '1733500816'), ('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'"), ('Vary', 'Accept-Encoding, Accept, X-Requested-With'), ('Content-Encoding', 'gzip'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4B6:B20C5:CB0E29:CE8AF3:67531A44')] +{"resources":{"core":{"limit":5000,"used":70,"remaining":4930,"reset":1733500816},"search":{"limit":30,"used":0,"remaining":30,"reset":1733499520},"graphql":{"limit":5000,"used":1,"remaining":4999,"reset":1733502590},"integration_manifest":{"limit":5000,"used":0,"remaining":5000,"reset":1733503060},"source_import":{"limit":100,"used":0,"remaining":100,"reset":1733499520},"code_scanning_upload":{"limit":1000,"used":0,"remaining":1000,"reset":1733503060},"actions_runner_registration":{"limit":10000,"used":0,"remaining":10000,"reset":1733503060},"scim":{"limit":15000,"used":0,"remaining":15000,"reset":1733503060},"dependency_snapshots":{"limit":100,"used":0,"remaining":100,"reset":1733499520},"audit_log":{"limit":1750,"used":0,"remaining":1750,"reset":1733503060},"audit_log_streaming":{"limit":15,"used":0,"remaining":15,"reset":1733503060},"code_search":{"limit":10,"used":0,"remaining":10,"reset":1733499520}},"rate":{"limit":5000,"used":70,"remaining":4930,"reset":1733500816}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:37:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"3d7d9e739386fc97f79f814180355ef206480d0afe8d0686f3efdb4499a2a36d"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:36:44 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4C2:DD2AF:C86657:CBE2CD:67531A44')] +{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21","id":2219949751,"node_id":"PR_kwDOF83__M6EUb63","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21","diff_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.diff","patch_url":"https://github.com/iarspider-cmssw/cmssw/pull/21.patch","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","number":21,"state":"open","locked":false,"title":"Record test for draft PR","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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-12-06T12:09:46Z","updated_at":"2024-12-06T15:36:44Z","closed_at":null,"merged_at":null,"merge_commit_sha":"337c68d3c3e9c43e3bb2787a089e9af75814bd7c","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},{"id":6160601371,"node_id":"LA_kwDOF83__M8AAAABbzNRGw","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/labels/l1-pending","name":"l1-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","user_view_type":"public","site_admin":false},"open_issues":2,"closed_issues":6,"state":"open","created_at":"2024-02-27T10:38:11Z","updated_at":"2024-12-06T14:04:15Z","due_on":null,"closed_at":null},"draft":true,"commits_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/commits","review_comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/comments","statuses_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246","head":{"label":"iarspider-cmssw:iarspider-patch-1","ref":"iarspider-patch-1","sha":"28ce3f5888b5433dcae409ee336b2ad422595246","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T15:34:03Z","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":1257958,"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":"48600daa76c0dd3925eb34d216bc756ed556016d","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","user_view_type":"public","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","user_view_type":"public","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":"2024-11-20T14:49:54Z","pushed_at":"2024-12-06T15:34:03Z","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":1257958,"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/21"},"html":{"href":"https://github.com/iarspider-cmssw/cmssw/pull/21"},"issue":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21"},"comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/pulls/21/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/21/commits"},"statuses":{"href":"https://api.github.com/repos/iarspider-cmssw/cmssw/statuses/28ce3f5888b5433dcae409ee336b2ad422595246"}},"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":2,"deletions":0,"changed_files":1} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/files?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:37:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"58a4916a4ea598459c57fb3133ed4c768cf4b1cc9a0d4b6e2dca559eedf15aa7"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:36:44 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4CC:D6A53:D78510:DB0200:67531A45')] +[{"sha":"f0e710781cfb2d7f7d531a72bb1097d31fc8850d","filename":"FWCore/Utilities/BuildFile.xml","status":"modified","additions":2,"deletions":0,"changes":2,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/28ce3f5888b5433dcae409ee336b2ad422595246/FWCore%2FUtilities%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/28ce3f5888b5433dcae409ee336b2ad422595246/FWCore%2FUtilities%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/FWCore%2FUtilities%2FBuildFile.xml?ref=28ce3f5888b5433dcae409ee336b2ad422595246","patch":"@@ -7,3 +7,5 @@\n \n \n \n+\n+"}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/pulls/21/commits?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:37:41 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"04e0f07f79cefafad2d6742f90610feec174546faf2ad7d15319340255748ff1"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:36:44 GMT'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4D4:D6A53:D786A2:DB03A4:67531A45')] +[{"sha":"9138474754099798ff50cb07287e7caa4786f247","node_id":"C_kwDOF83__NoAKDkxMzg0NzQ3NTQwOTk3OThmZjUwY2IwNzI4N2U3Y2FhNDc4NmYyNDc","commit":{"author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T11:49:52Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T11:49:52Z"},"message":"Update BuildFile.xml","tree":{"sha":"1bc56658193566edd98c58a10f5b8450503349b3","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/1bc56658193566edd98c58a10f5b8450503349b3"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUuTgCRC1aQ7uu5UhlAAAXEgQAA849OOQ7CddTtap7gjrqzwC\nD1iTWFoY1C/ulXWq/fSFENU+51j/S0ped3UOb52IVAuvCGS7UTx+ESpP4wo+DaS1\nyXyi+nlKEtbutj9hkCFQPTJLNy1tbjdxpYxaNghvBe6s2FExzGQG1hmOnZw0WpYe\nP3M48F6e2qWggLwG5MLODkVA6O2oRLZWcp5Ew1Qu6SGpKmnunhxNbRLTLTraoKt7\nYK23YGyVKuUIxUrefddg5NH6xeUdw39HB8p/3FZ8bPal3KIN6J+mn1+GrIY/ZTS1\nzX1olMgojRvNeevAALj5ZvETLsYIiPxldjAGnKwKbHrC+LZ5mTq2K4/nbqQ1kccW\nqs22MCiCSCwkud3viLtwk4VxOQrVV/trf62JijAUSH6jFYQX1nN5ci1E++wtqcbI\neNJOCUoy+O6T0HMhjTPqE/+YMSWooUR7ekY8qngKv5sP+iolPWsIbwppSQNd0Cit\nh/lqkYZBfno/peWzoPu8WPI798ONOJsW5JK8KMVc2Folxbq0SyPMgNVHGrs1HNiw\ne0C/MnkXfYetHb+vHV5cg3GuNYmGhwG9W9CPzIsENQiwuA+mftgv7D/reZOSLwLt\nNnrmSPnzEnHYOm8RfCAHyprBW8gLnY2mZKie2hiZ+TdjqGro1+R+Fg4IuF6QZkeU\ncWQzYRgBKFj16WodDqYe\n=ngqr\n-----END PGP SIGNATURE-----\n","payload":"tree 1bc56658193566edd98c58a10f5b8450503349b3\nparent 48600daa76c0dd3925eb34d216bc756ed556016d\nauthor iarspider 1733485792 -0800\ncommitter GitHub 1733485792 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T11:49:53Z"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"parents":[{"sha":"48600daa76c0dd3925eb34d216bc756ed556016d","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/48600daa76c0dd3925eb34d216bc756ed556016d","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/48600daa76c0dd3925eb34d216bc756ed556016d"}]},{"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","node_id":"C_kwDOF83__NoAKDI4Y2UzZjU4ODhiNTQzM2RjYWU0MDllZTMzNmIyYWQ0MjI1OTUyNDY","commit":{"author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T15:34:01Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T15:34:01Z"},"message":"Update BuildFile.xml","tree":{"sha":"c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUxlqCRC1aQ7uu5UhlAAAPY8QABFO0pySgJzhfpKtBofuy3yL\n1VU5Qrr7jCjgeV/VEFuv5PmzQ5UpY65p2tFq9LizB7ROp3sSihACoBNOYDg8lV4I\nSatTr8ICeWWFKt3liceRABbb9iLjJuuh669uqT9uWcvE1RigMGPs/9ZXFUPw6oz4\nAqPjiSmMEZRZ/jJwSukxlBCEJEDxZmvdh1sHHCsSIpOUE0kpUZv67nhrHNfH/u5h\ncwHY2JXWf6qm72Cl/6ox7cEUlRPDQjRt1fuS9oEPRTA3F8V1yyVfgNKsbjMJ7Kld\nEmQ/WgCKhmxyjI3CzrwUG/84Tkort/Sg/vR1yDANheWE0FbUx5RxV2jmv907k97y\n7iJUYkjh/dC9cDCjNBE3oc3/bdaY5eXYQQrVg570hStzclgyYjw9Iu+BiSo9vQuH\n7F6EAbKxHUqdv9jQQR8M0HmLzqs8hm7whTUBV7SWeWNmPGo23tqT/yiq/+vNnn4i\nU3VmyiIFDFuVDt+R5oEwprywBS3rSGyML8S1cBfCN3OdZMvAn4tSjxtwIfUvr8lJ\nZn91lCvu0DZcrW9PlpIT6hQ3pinubTZmu/i2RclXqJAqONF0vhg3Bx3F8RZhJ1y2\nZaDhR3+bkgQQBPYVPYDIWM8X0gIPZseFZ1axogBPt+yEkprf//D0jZjonlUpbaUI\nDsgTfdYkySaR5XHmgav5\n=JyWz\n-----END PGP SIGNATURE-----\n","payload":"tree c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9\nparent 9138474754099798ff50cb07287e7caa4786f247\nauthor iarspider 1733499241 -0800\ncommitter GitHub 1733499241 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T15:34:37Z"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28ce3f5888b5433dcae409ee336b2ad422595246","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"parents":[{"sha":"9138474754099798ff50cb07287e7caa4786f247","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247"}]}] + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/status +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:37:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"69be1584202a7c54228813af0e5aa4e8a785db331f53ca802c5f9e7223dceaca"'), ('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', '4926'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4D8:B03E9:E31C0C:E6994C:67531A45')] +{"state":"pending","statuses":[],"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","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","user_view_type":"public","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/28ce3f5888b5433dcae409ee336b2ad422595246","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/status"} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:37:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"ac1fb6ee4467fc8df128720d3ef7979d71ec8c8f2c527ce54348056354166c5a"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:34: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', '4925'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4E4:B135B:DD9DBE:E11B8F:67531A46')] +{"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","node_id":"C_kwDOF83__NoAKDI4Y2UzZjU4ODhiNTQzM2RjYWU0MDllZTMzNmIyYWQ0MjI1OTUyNDY","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28ce3f5888b5433dcae409ee336b2ad422595246","author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T15:34:01Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T15:34:01Z"},"tree":{"sha":"c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9"},"message":"Update BuildFile.xml","parents":[{"sha":"9138474754099798ff50cb07287e7caa4786f247","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247"}],"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUxlqCRC1aQ7uu5UhlAAAPY8QABFO0pySgJzhfpKtBofuy3yL\n1VU5Qrr7jCjgeV/VEFuv5PmzQ5UpY65p2tFq9LizB7ROp3sSihACoBNOYDg8lV4I\nSatTr8ICeWWFKt3liceRABbb9iLjJuuh669uqT9uWcvE1RigMGPs/9ZXFUPw6oz4\nAqPjiSmMEZRZ/jJwSukxlBCEJEDxZmvdh1sHHCsSIpOUE0kpUZv67nhrHNfH/u5h\ncwHY2JXWf6qm72Cl/6ox7cEUlRPDQjRt1fuS9oEPRTA3F8V1yyVfgNKsbjMJ7Kld\nEmQ/WgCKhmxyjI3CzrwUG/84Tkort/Sg/vR1yDANheWE0FbUx5RxV2jmv907k97y\n7iJUYkjh/dC9cDCjNBE3oc3/bdaY5eXYQQrVg570hStzclgyYjw9Iu+BiSo9vQuH\n7F6EAbKxHUqdv9jQQR8M0HmLzqs8hm7whTUBV7SWeWNmPGo23tqT/yiq/+vNnn4i\nU3VmyiIFDFuVDt+R5oEwprywBS3rSGyML8S1cBfCN3OdZMvAn4tSjxtwIfUvr8lJ\nZn91lCvu0DZcrW9PlpIT6hQ3pinubTZmu/i2RclXqJAqONF0vhg3Bx3F8RZhJ1y2\nZaDhR3+bkgQQBPYVPYDIWM8X0gIPZseFZ1axogBPt+yEkprf//D0jZjonlUpbaUI\nDsgTfdYkySaR5XHmgav5\n=JyWz\n-----END PGP SIGNATURE-----\n","payload":"tree c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9\nparent 9138474754099798ff50cb07287e7caa4786f247\nauthor iarspider 1733499241 -0800\ncommitter GitHub 1733499241 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T15:34:37Z"}} + +https +GET +api.github.com +None +/repos/iarspider-cmssw/cmssw/issues/21/comments?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:37:42 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"bd56a02687809db2922b5cc1d0fdae93f178e4b4a1d9a766acab479180823180"'), ('X-OAuth-Scopes', 'admin:org, project, repo, workflow, write:discussion'), ('X-Accepted-OAuth-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', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4F2:AF691:CDD6CA:D15333:67531A46')] +[{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523322081","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523322081,"node_id":"IC_kwDOF83__M6WZtbh","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T14:04:19Z","updated_at":"2024-12-06T15:29:14Z","author_association":"MEMBER","body":"cms-bot internal usage","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523322081/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/2523440118","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523440118","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523440118,"node_id":"IC_kwDOF83__M6WaKP2","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:00:50Z","updated_at":"2024-12-06T15:00:50Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523440118/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/2523442237","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523442237","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523442237,"node_id":"IC_kwDOF83__M6WaKw9","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:01:51Z","updated_at":"2024-12-06T15:01:51Z","author_association":"MEMBER","body":"assign l1","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523442237/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/2523498037","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523498037","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523498037,"node_id":"IC_kwDOF83__M6WaYY1","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:29:13Z","updated_at":"2024-12-06T15:29:13Z","author_association":"MEMBER","body":"New categories assigned: l1\n\naloeliger,epalencia 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/2523498037/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/2523514208","html_url":"https://github.com/iarspider-cmssw/cmssw/pull/21#issuecomment-2523514208","issue_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/21","id":2523514208,"node_id":"IC_kwDOF83__M6WacVg","user":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2024-12-06T15:36:43Z","updated_at":"2024-12-06T15:36:43Z","author_association":"MEMBER","body":"+code-checks","reactions":{"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/issues/comments/2523514208/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/28ce3f5888b5433dcae409ee336b2ad422595246?per_page=100 +{'Authorization': 'token private_token_removed', 'User-Agent': 'PyGithub/Python'} +None +200 +[('Date', 'Fri, 06 Dec 2024 15:37:43 GMT'), ('Content-Type', 'application/json; charset=utf-8'), ('Cache-Control', 'private, max-age=60, s-maxage=60'), ('Vary', 'Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With'), ('ETag', 'W/"2a3273130e7b21a2d2b51556c71f5b47cf3f72be6c4f31e7a311aa4f10ae9362"'), ('Last-Modified', 'Fri, 06 Dec 2024 15:34: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', '4923'), ('X-RateLimit-Reset', '1733500816'), ('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'), ('Transfer-Encoding', 'chunked'), ('Server', 'github.com'), ('X-GitHub-Request-Id', 'B4FA:B1AE3:CA3DC1:CDBA97:67531A46')] +{"sha":"28ce3f5888b5433dcae409ee336b2ad422595246","node_id":"C_kwDOF83__NoAKDI4Y2UzZjU4ODhiNTQzM2RjYWU0MDllZTMzNmIyYWQ0MjI1OTUyNDY","commit":{"author":{"name":"iarspider","email":"iarspider@gmail.com","date":"2024-12-06T15:34:01Z"},"committer":{"name":"GitHub","email":"noreply@github.com","date":"2024-12-06T15:34:01Z"},"message":"Update BuildFile.xml","tree":{"sha":"c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/trees/c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9"},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/git/commits/28ce3f5888b5433dcae409ee336b2ad422595246","comment_count":0,"verification":{"verified":true,"reason":"valid","signature":"-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJnUxlqCRC1aQ7uu5UhlAAAPY8QABFO0pySgJzhfpKtBofuy3yL\n1VU5Qrr7jCjgeV/VEFuv5PmzQ5UpY65p2tFq9LizB7ROp3sSihACoBNOYDg8lV4I\nSatTr8ICeWWFKt3liceRABbb9iLjJuuh669uqT9uWcvE1RigMGPs/9ZXFUPw6oz4\nAqPjiSmMEZRZ/jJwSukxlBCEJEDxZmvdh1sHHCsSIpOUE0kpUZv67nhrHNfH/u5h\ncwHY2JXWf6qm72Cl/6ox7cEUlRPDQjRt1fuS9oEPRTA3F8V1yyVfgNKsbjMJ7Kld\nEmQ/WgCKhmxyjI3CzrwUG/84Tkort/Sg/vR1yDANheWE0FbUx5RxV2jmv907k97y\n7iJUYkjh/dC9cDCjNBE3oc3/bdaY5eXYQQrVg570hStzclgyYjw9Iu+BiSo9vQuH\n7F6EAbKxHUqdv9jQQR8M0HmLzqs8hm7whTUBV7SWeWNmPGo23tqT/yiq/+vNnn4i\nU3VmyiIFDFuVDt+R5oEwprywBS3rSGyML8S1cBfCN3OdZMvAn4tSjxtwIfUvr8lJ\nZn91lCvu0DZcrW9PlpIT6hQ3pinubTZmu/i2RclXqJAqONF0vhg3Bx3F8RZhJ1y2\nZaDhR3+bkgQQBPYVPYDIWM8X0gIPZseFZ1axogBPt+yEkprf//D0jZjonlUpbaUI\nDsgTfdYkySaR5XHmgav5\n=JyWz\n-----END PGP SIGNATURE-----\n","payload":"tree c56678e30a3406b4e6b6afcfafb9c61cf2ebc6e9\nparent 9138474754099798ff50cb07287e7caa4786f247\nauthor iarspider 1733499241 -0800\ncommitter GitHub 1733499241 -0800\n\nUpdate BuildFile.xml","verified_at":"2024-12-06T15:34:37Z"}},"url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/28ce3f5888b5433dcae409ee336b2ad422595246","comments_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/28ce3f5888b5433dcae409ee336b2ad422595246/comments","author":{"login":"iarspider","id":636602,"node_id":"MDQ6VXNlcjYzNjYwMg==","avatar_url":"https://avatars.githubusercontent.com/u/636602?v=4","gravatar_id":"","url":"https://api.github.com/users/iarspider","html_url":"https://github.com/iarspider","followers_url":"https://api.github.com/users/iarspider/followers","following_url":"https://api.github.com/users/iarspider/following{/other_user}","gists_url":"https://api.github.com/users/iarspider/gists{/gist_id}","starred_url":"https://api.github.com/users/iarspider/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iarspider/subscriptions","organizations_url":"https://api.github.com/users/iarspider/orgs","repos_url":"https://api.github.com/users/iarspider/repos","events_url":"https://api.github.com/users/iarspider/events{/privacy}","received_events_url":"https://api.github.com/users/iarspider/received_events","type":"User","user_view_type":"public","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","user_view_type":"public","site_admin":false},"parents":[{"sha":"9138474754099798ff50cb07287e7caa4786f247","url":"https://api.github.com/repos/iarspider-cmssw/cmssw/commits/9138474754099798ff50cb07287e7caa4786f247","html_url":"https://github.com/iarspider-cmssw/cmssw/commit/9138474754099798ff50cb07287e7caa4786f247"}],"stats":{"total":1,"additions":1,"deletions":0},"files":[{"sha":"f0e710781cfb2d7f7d531a72bb1097d31fc8850d","filename":"FWCore/Utilities/BuildFile.xml","status":"modified","additions":1,"deletions":0,"changes":1,"blob_url":"https://github.com/iarspider-cmssw/cmssw/blob/28ce3f5888b5433dcae409ee336b2ad422595246/FWCore%2FUtilities%2FBuildFile.xml","raw_url":"https://github.com/iarspider-cmssw/cmssw/raw/28ce3f5888b5433dcae409ee336b2ad422595246/FWCore%2FUtilities%2FBuildFile.xml","contents_url":"https://api.github.com/repos/iarspider-cmssw/cmssw/contents/FWCore%2FUtilities%2FBuildFile.xml?ref=28ce3f5888b5433dcae409ee336b2ad422595246","patch":"@@ -8,3 +8,4 @@\n \n \n \n+"}]} + diff --git a/tests/run_pr_tests.sh b/tests/run_pr_tests.sh index f0d424c229a1..60405ae36150 100755 --- a/tests/run_pr_tests.sh +++ b/tests/run_pr_tests.sh @@ -10,6 +10,7 @@ if [ $INSTALL_REQS -eq 1 ]; then python3 -m pip install --upgrade pip pip install -r test-requirements.txt fi + if [ ! -e Framework.py ]; then curl -L https://github.com/PyGithub/PyGithub/raw/v1.54/tests/Framework.py > Framework.py sed -i -e 's/self\.retry/self.retry, per_page=100/g' Framework.py diff --git a/tests/test_process_pr.py b/tests/test_process_pr.py index a76811ff2282..a4ab3eda38c9 100644 --- a/tests/test_process_pr.py +++ b/tests/test_process_pr.py @@ -709,10 +709,17 @@ def test_many_commits_ok(self): def test_too_many_commits(self): self.runTest(prId=18) - # Not yet implemented - # def test_future_commit(self): - # self.runTest() + def test_draft_pr_opened(self): + self.runTest(prId=21) - # Not yet implemented - # def test_backdated_commit(self): - # self.runTest() + def test_draft_pr_assign(self): + self.runTest(prId=21) + + def test_draft_pr_updated(self): + self.runTest(prId=21) + + def test_draft_pr_start_test(self): + self.runTest(prId=21) + + def test_draft_pr_ready(self): + self.runTest(prId=21)