2025-12-04T08:42:26.7793722Z Current runner version: '2.330.0' 2025-12-04T08:42:26.7806963Z Runner name: 'i-0bba92c00641a8226' 2025-12-04T08:42:26.7808473Z Runner group name: 'default' 2025-12-04T08:42:26.7809932Z Machine name: 'ip-10-0-39-209' 2025-12-04T08:42:26.7815808Z ##[group]GITHUB_TOKEN Permissions 2025-12-04T08:42:26.7820108Z Contents: read 2025-12-04T08:42:26.7821090Z Metadata: read 2025-12-04T08:42:26.7821966Z PullRequests: write 2025-12-04T08:42:26.7823215Z ##[endgroup] 2025-12-04T08:42:26.7827219Z Secret source: Actions 2025-12-04T08:42:26.7828692Z Prepare workflow directory 2025-12-04T08:42:26.8529592Z Prepare all required actions 2025-12-04T08:42:26.8579241Z Getting action download info 2025-12-04T08:42:27.0757629Z Download action repository 'actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea' (SHA:60a0d83039c74a4aee543508d2ffcb1c3799cdea) 2025-12-04T08:42:27.4516300Z Complete job name: stale 2025-12-04T08:42:27.5007874Z A job started hook has been configured by the self-hosted runner administrator 2025-12-04T08:42:27.5139084Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-12-04T08:42:27.5151009Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-04T08:42:27.5152055Z ##[endgroup] 2025-12-04T08:42:29.1951188Z Runner Type: linux.large 2025-12-04T08:42:29.1953406Z Instance Type: c5.large 2025-12-04T08:42:29.1956369Z AMI Name: unknown 2025-12-04T08:42:29.2001744Z AMI ID: ami-08982f1c5bf93d976 2025-12-04T08:42:35.9207590Z ##[group]Run actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea 2025-12-04T08:42:35.9208260Z with: 2025-12-04T08:42:35.9222236Z script: // Do some dumb retries on requests. const retries = 7; const baseBackoff = 100; const sleep = timeout => new Promise(resolve => setTimeout(resolve, timeout)); github.hook.wrap('request', async (request, options) => { for (let attempt = 1; attempt <= retries; attempt++) { try { return await request(options); } catch (err) { if (attempt < retries) { core.warning(`Request getting retried. Attempt: ${attempt}`); await sleep(baseBackoff * Math.pow(2, attempt)); continue; } throw err; } } }); const MAX_API_REQUESTS = 100; // If a PRs not labeled stale, label them stale after no update for 60 days. const STALE_LABEL_THRESHOLD_MS = 1000 * 60 * 60 * 24 * 60; // For PRs already labeled stale, close after not update for 30 days. const STALE_CLOSE_THRESHOLD_MS = 1000 * 60 * 60 * 24 * 30; const STALE_MESSAGE = "Looks like this PR hasn't been updated in a while so we're going to go ahead and mark this as `Stale`.
" + "Feel free to remove the `Stale` label if you feel this was a mistake.
" + "If you are unable to remove the `Stale` label please contact a maintainer in order to do so.
" + "If you want the bot to never mark this PR stale again, add the `no-stale` label.
" + "`Stale` pull requests will automatically be closed after 30 days of inactivity.
"; let numAPIRequests = 0; let numProcessed = 0; async function processPull(pull) { core.info(`[${pull.number}] URL: ${pull.html_url}`); numProcessed += 1; const labels = pull.labels.map((label) => label.name); // Skip if certain labels are present. if (labels.includes("no-stale") || labels.includes("high priority")) { core.info(`[${pull.number}] Skipping because PR has an exempting label.`); return false; } // Check if the PR is stale, according to our configured thresholds. let staleThresholdMillis; if (labels.includes("Stale")) { core.info(`[${pull.number}] PR is labeled stale, checking whether we should close it.`); staleThresholdMillis = STALE_CLOSE_THRESHOLD_MS; } else { core.info(`[${pull.number}] Checking whether to label PR as stale.`); staleThresholdMillis = STALE_LABEL_THRESHOLD_MS; } const millisSinceLastUpdated = new Date().getTime() - new Date(pull.updated_at).getTime(); if (millisSinceLastUpdated < staleThresholdMillis) { core.info(`[${pull.number}] Skipping because PR was updated recently`); return false; } // At this point, we know we should do something. // For PRs already labeled stale, close them. if (labels.includes("Stale")) { core.info(`[${pull.number}] Closing PR.`); numAPIRequests += 1; await github.rest.issues.update({ owner: "pytorch", repo: "pytorch", issue_number: pull.number, state: "closed", }); } else { // For PRs not labeled stale, label them stale. core.info(`[${pull.number}] Labeling PR as stale.`); numAPIRequests += 1; await github.rest.issues.createComment({ owner: "pytorch", repo: "pytorch", issue_number: pull.number, body: STALE_MESSAGE, }); numAPIRequests += 1; await github.rest.issues.addLabels({ owner: "pytorch", repo: "pytorch", issue_number: pull.number, labels: ["Stale"], }); } } for await (const response of github.paginate.iterator( github.rest.pulls.list, { owner: "pytorch", repo: "pytorch", state: "open", sort: "created", direction: "asc", per_page: 100, } )) { numAPIRequests += 1; const pulls = response.data; // Awaiting in a loop is intentional here. We want to serialize execution so // that log groups are printed correctl for (const pull of pulls) { if (numAPIRequests > MAX_API_REQUESTS) { core.warning("Max API requests exceeded, exiting."); process.exit(0); } await core.group(`Processing PR #${pull.number}`, async () => { await processPull(pull); }); } } core.info(`Processed ${numProcessed} PRs total.`); 2025-12-04T08:42:35.9237258Z github-token: *** 2025-12-04T08:42:35.9237614Z debug: false 2025-12-04T08:42:35.9237931Z user-agent: actions/github-script 2025-12-04T08:42:35.9238353Z result-encoding: json 2025-12-04T08:42:35.9238668Z retries: 0 2025-12-04T08:42:35.9239024Z retry-exempt-status-codes: 400,401,403,404,422 2025-12-04T08:42:35.9239437Z ##[endgroup] 2025-12-04T08:42:37.4497009Z ##[group]Processing PR #57772 2025-12-04T08:42:37.4500145Z [57772] URL: https://github.com/pytorch/pytorch/pull/57772 2025-12-04T08:42:37.4501752Z [57772] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4504240Z ##[endgroup] 2025-12-04T08:42:37.4505990Z ##[group]Processing PR #70978 2025-12-04T08:42:37.4507358Z [70978] URL: https://github.com/pytorch/pytorch/pull/70978 2025-12-04T08:42:37.4508696Z [70978] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4510349Z ##[endgroup] 2025-12-04T08:42:37.4511756Z ##[group]Processing PR #70979 2025-12-04T08:42:37.4512965Z [70979] URL: https://github.com/pytorch/pytorch/pull/70979 2025-12-04T08:42:37.4514290Z [70979] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4515940Z ##[endgroup] 2025-12-04T08:42:37.4517127Z ##[group]Processing PR #70989 2025-12-04T08:42:37.4518222Z [70989] URL: https://github.com/pytorch/pytorch/pull/70989 2025-12-04T08:42:37.4519468Z [70989] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4521050Z ##[endgroup] 2025-12-04T08:42:37.4522427Z ##[group]Processing PR #82997 2025-12-04T08:42:37.4523634Z [82997] URL: https://github.com/pytorch/pytorch/pull/82997 2025-12-04T08:42:37.4528581Z [82997] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4529786Z ##[endgroup] 2025-12-04T08:42:37.4530687Z ##[group]Processing PR #84545 2025-12-04T08:42:37.4531631Z [84545] URL: https://github.com/pytorch/pytorch/pull/84545 2025-12-04T08:42:37.4532556Z [84545] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4533645Z ##[endgroup] 2025-12-04T08:42:37.4534839Z ##[group]Processing PR #84843 2025-12-04T08:42:37.4535584Z [84843] URL: https://github.com/pytorch/pytorch/pull/84843 2025-12-04T08:42:37.4536435Z [84843] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4537492Z ##[endgroup] 2025-12-04T08:42:37.4538324Z ##[group]Processing PR #85699 2025-12-04T08:42:37.4539100Z [85699] URL: https://github.com/pytorch/pytorch/pull/85699 2025-12-04T08:42:37.4539984Z [85699] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4541002Z ##[endgroup] 2025-12-04T08:42:37.4542453Z ##[group]Processing PR #88106 2025-12-04T08:42:37.4543216Z [88106] URL: https://github.com/pytorch/pytorch/pull/88106 2025-12-04T08:42:37.4544078Z [88106] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4545115Z ##[endgroup] 2025-12-04T08:42:37.4545965Z ##[group]Processing PR #88196 2025-12-04T08:42:37.4546706Z [88196] URL: https://github.com/pytorch/pytorch/pull/88196 2025-12-04T08:42:37.4547571Z [88196] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4548608Z ##[endgroup] 2025-12-04T08:42:37.4549455Z ##[group]Processing PR #88221 2025-12-04T08:42:37.4550170Z [88221] URL: https://github.com/pytorch/pytorch/pull/88221 2025-12-04T08:42:37.4550913Z [88221] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4551871Z ##[endgroup] 2025-12-04T08:42:37.4552705Z ##[group]Processing PR #88998 2025-12-04T08:42:37.4553387Z [88998] URL: https://github.com/pytorch/pytorch/pull/88998 2025-12-04T08:42:37.4554187Z [88998] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4555224Z ##[endgroup] 2025-12-04T08:42:37.4555934Z ##[group]Processing PR #97825 2025-12-04T08:42:37.4556630Z [97825] URL: https://github.com/pytorch/pytorch/pull/97825 2025-12-04T08:42:37.4557417Z [97825] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4558400Z ##[endgroup] 2025-12-04T08:42:37.4559184Z ##[group]Processing PR #102148 2025-12-04T08:42:37.4560282Z [102148] URL: https://github.com/pytorch/pytorch/pull/102148 2025-12-04T08:42:37.4561125Z [102148] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4562172Z ##[endgroup] 2025-12-04T08:42:37.4562951Z ##[group]Processing PR #102613 2025-12-04T08:42:37.4563618Z [102613] URL: https://github.com/pytorch/pytorch/pull/102613 2025-12-04T08:42:37.4564413Z [102613] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4565640Z ##[endgroup] 2025-12-04T08:42:37.4566425Z ##[group]Processing PR #106149 2025-12-04T08:42:37.4567133Z [106149] URL: https://github.com/pytorch/pytorch/pull/106149 2025-12-04T08:42:37.4568199Z [106149] Checking whether to label PR as stale. 2025-12-04T08:42:37.4569239Z [106149] Skipping because PR was updated recently 2025-12-04T08:42:37.4570616Z ##[endgroup] 2025-12-04T08:42:37.4572368Z ##[group]Processing PR #108303 2025-12-04T08:42:37.4573388Z [108303] URL: https://github.com/pytorch/pytorch/pull/108303 2025-12-04T08:42:37.4574592Z [108303] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4575960Z ##[endgroup] 2025-12-04T08:42:37.4577061Z ##[group]Processing PR #110155 2025-12-04T08:42:37.4578054Z [110155] URL: https://github.com/pytorch/pytorch/pull/110155 2025-12-04T08:42:37.4579189Z [110155] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4580535Z ##[endgroup] 2025-12-04T08:42:37.4581634Z ##[group]Processing PR #111673 2025-12-04T08:42:37.4582595Z [111673] URL: https://github.com/pytorch/pytorch/pull/111673 2025-12-04T08:42:37.4583739Z [111673] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4585072Z ##[endgroup] 2025-12-04T08:42:37.4586195Z ##[group]Processing PR #112441 2025-12-04T08:42:37.4587162Z [112441] URL: https://github.com/pytorch/pytorch/pull/112441 2025-12-04T08:42:37.4588304Z [112441] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4589636Z ##[endgroup] 2025-12-04T08:42:37.4590718Z ##[group]Processing PR #113258 2025-12-04T08:42:37.4591702Z [113258] URL: https://github.com/pytorch/pytorch/pull/113258 2025-12-04T08:42:37.4592851Z [113258] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4594201Z ##[endgroup] 2025-12-04T08:42:37.4595296Z ##[group]Processing PR #115316 2025-12-04T08:42:37.4596276Z [115316] URL: https://github.com/pytorch/pytorch/pull/115316 2025-12-04T08:42:37.4597377Z [115316] Checking whether to label PR as stale. 2025-12-04T08:42:37.4598383Z [115316] Skipping because PR was updated recently 2025-12-04T08:42:37.4599724Z ##[endgroup] 2025-12-04T08:42:37.4600794Z ##[group]Processing PR #116534 2025-12-04T08:42:37.4601777Z [116534] URL: https://github.com/pytorch/pytorch/pull/116534 2025-12-04T08:42:37.4603215Z [116534] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4604565Z ##[endgroup] 2025-12-04T08:42:37.4605688Z ##[group]Processing PR #117905 2025-12-04T08:42:37.4606675Z [117905] URL: https://github.com/pytorch/pytorch/pull/117905 2025-12-04T08:42:37.4607664Z [117905] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4608563Z ##[endgroup] 2025-12-04T08:42:37.4609355Z ##[group]Processing PR #119496 2025-12-04T08:42:37.4610080Z [119496] URL: https://github.com/pytorch/pytorch/pull/119496 2025-12-04T08:42:37.4611007Z [119496] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4612233Z ##[endgroup] 2025-12-04T08:42:37.4612796Z ##[group]Processing PR #119977 2025-12-04T08:42:37.4613244Z [119977] URL: https://github.com/pytorch/pytorch/pull/119977 2025-12-04T08:42:37.4613767Z [119977] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4614388Z ##[endgroup] 2025-12-04T08:42:37.4614892Z ##[group]Processing PR #120076 2025-12-04T08:42:37.4615364Z [120076] URL: https://github.com/pytorch/pytorch/pull/120076 2025-12-04T08:42:37.4615882Z [120076] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4616498Z ##[endgroup] 2025-12-04T08:42:37.4616994Z ##[group]Processing PR #121445 2025-12-04T08:42:37.4617447Z [121445] URL: https://github.com/pytorch/pytorch/pull/121445 2025-12-04T08:42:37.4618124Z [121445] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4618745Z ##[endgroup] 2025-12-04T08:42:37.4619255Z ##[group]Processing PR #124490 2025-12-04T08:42:37.4619706Z [124490] URL: https://github.com/pytorch/pytorch/pull/124490 2025-12-04T08:42:37.4620211Z [124490] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4620823Z ##[endgroup] 2025-12-04T08:42:37.4621326Z ##[group]Processing PR #124624 2025-12-04T08:42:37.4621764Z [124624] URL: https://github.com/pytorch/pytorch/pull/124624 2025-12-04T08:42:37.4622283Z [124624] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4622890Z ##[endgroup] 2025-12-04T08:42:37.4623407Z ##[group]Processing PR #125270 2025-12-04T08:42:37.4623860Z [125270] URL: https://github.com/pytorch/pytorch/pull/125270 2025-12-04T08:42:37.4624388Z [125270] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4625001Z ##[endgroup] 2025-12-04T08:42:37.4625496Z ##[group]Processing PR #125326 2025-12-04T08:42:37.4625967Z [125326] URL: https://github.com/pytorch/pytorch/pull/125326 2025-12-04T08:42:37.4626494Z [125326] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4627097Z ##[endgroup] 2025-12-04T08:42:37.4627608Z ##[group]Processing PR #125428 2025-12-04T08:42:37.4628077Z [125428] URL: https://github.com/pytorch/pytorch/pull/125428 2025-12-04T08:42:37.4628596Z [125428] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4629208Z ##[endgroup] 2025-12-04T08:42:37.4629714Z ##[group]Processing PR #125995 2025-12-04T08:42:37.4630168Z [125995] URL: https://github.com/pytorch/pytorch/pull/125995 2025-12-04T08:42:37.4630698Z [125995] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4631316Z ##[endgroup] 2025-12-04T08:42:37.4631818Z ##[group]Processing PR #126199 2025-12-04T08:42:37.4632268Z [126199] URL: https://github.com/pytorch/pytorch/pull/126199 2025-12-04T08:42:37.4632800Z [126199] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4633415Z ##[endgroup] 2025-12-04T08:42:37.4708044Z ##[group]Processing PR #126348 2025-12-04T08:42:37.4709071Z [126348] URL: https://github.com/pytorch/pytorch/pull/126348 2025-12-04T08:42:37.4710014Z [126348] Checking whether to label PR as stale. 2025-12-04T08:42:37.4710847Z [126348] Skipping because PR was updated recently 2025-12-04T08:42:37.4712081Z ##[endgroup] 2025-12-04T08:42:37.4713046Z ##[group]Processing PR #127702 2025-12-04T08:42:37.4713890Z [127702] URL: https://github.com/pytorch/pytorch/pull/127702 2025-12-04T08:42:37.4714854Z [127702] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4715966Z ##[endgroup] 2025-12-04T08:42:37.4716888Z ##[group]Processing PR #130462 2025-12-04T08:42:37.4718091Z [130462] URL: https://github.com/pytorch/pytorch/pull/130462 2025-12-04T08:42:37.4719064Z [130462] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4720203Z ##[endgroup] 2025-12-04T08:42:37.4721147Z ##[group]Processing PR #130556 2025-12-04T08:42:37.4722008Z [130556] URL: https://github.com/pytorch/pytorch/pull/130556 2025-12-04T08:42:37.4722995Z [130556] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4724132Z ##[endgroup] 2025-12-04T08:42:37.4725050Z ##[group]Processing PR #130752 2025-12-04T08:42:37.4725881Z [130752] URL: https://github.com/pytorch/pytorch/pull/130752 2025-12-04T08:42:37.4726834Z [130752] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4727972Z ##[endgroup] 2025-12-04T08:42:37.4728899Z ##[group]Processing PR #130856 2025-12-04T08:42:37.4729740Z [130856] URL: https://github.com/pytorch/pytorch/pull/130856 2025-12-04T08:42:37.4730695Z [130856] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4732034Z ##[endgroup] 2025-12-04T08:42:37.4732949Z ##[group]Processing PR #130887 2025-12-04T08:42:37.4734463Z [130887] URL: https://github.com/pytorch/pytorch/pull/130887 2025-12-04T08:42:37.4735358Z [130887] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4736683Z ##[endgroup] 2025-12-04T08:42:37.4737813Z ##[group]Processing PR #132135 2025-12-04T08:42:37.4739184Z [132135] URL: https://github.com/pytorch/pytorch/pull/132135 2025-12-04T08:42:37.4740464Z [132135] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:37.4741650Z [132135] Skipping because PR was updated recently 2025-12-04T08:42:37.4743181Z ##[endgroup] 2025-12-04T08:42:37.4744306Z ##[group]Processing PR #132414 2025-12-04T08:42:37.4745313Z [132414] URL: https://github.com/pytorch/pytorch/pull/132414 2025-12-04T08:42:37.4746509Z [132414] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4747841Z ##[endgroup] 2025-12-04T08:42:37.4748956Z ##[group]Processing PR #132814 2025-12-04T08:42:37.4750000Z [132814] URL: https://github.com/pytorch/pytorch/pull/132814 2025-12-04T08:42:37.4751160Z [132814] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4752521Z ##[endgroup] 2025-12-04T08:42:37.4753603Z ##[group]Processing PR #133289 2025-12-04T08:42:37.4754510Z [133289] URL: https://github.com/pytorch/pytorch/pull/133289 2025-12-04T08:42:37.4755690Z [133289] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4757051Z ##[endgroup] 2025-12-04T08:42:37.4758167Z ##[group]Processing PR #133296 2025-12-04T08:42:37.4759159Z [133296] URL: https://github.com/pytorch/pytorch/pull/133296 2025-12-04T08:42:37.4760328Z [133296] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4761682Z ##[endgroup] 2025-12-04T08:42:37.4762778Z ##[group]Processing PR #133297 2025-12-04T08:42:37.4763776Z [133297] URL: https://github.com/pytorch/pytorch/pull/133297 2025-12-04T08:42:37.4764950Z [133297] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4766277Z ##[endgroup] 2025-12-04T08:42:37.4767393Z ##[group]Processing PR #133315 2025-12-04T08:42:37.4768402Z [133315] URL: https://github.com/pytorch/pytorch/pull/133315 2025-12-04T08:42:37.4769549Z [133315] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4772299Z ##[endgroup] 2025-12-04T08:42:37.4773419Z ##[group]Processing PR #133392 2025-12-04T08:42:37.4774448Z [133392] URL: https://github.com/pytorch/pytorch/pull/133392 2025-12-04T08:42:37.4775644Z [133392] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4776997Z ##[endgroup] 2025-12-04T08:42:37.4778092Z ##[group]Processing PR #133419 2025-12-04T08:42:37.4779088Z [133419] URL: https://github.com/pytorch/pytorch/pull/133419 2025-12-04T08:42:37.4780267Z [133419] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4781615Z ##[endgroup] 2025-12-04T08:42:37.4782712Z ##[group]Processing PR #133423 2025-12-04T08:42:37.4783708Z [133423] URL: https://github.com/pytorch/pytorch/pull/133423 2025-12-04T08:42:37.4784891Z [133423] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4786507Z ##[endgroup] 2025-12-04T08:42:37.4787540Z ##[group]Processing PR #133667 2025-12-04T08:42:37.4788451Z [133667] URL: https://github.com/pytorch/pytorch/pull/133667 2025-12-04T08:42:37.4789484Z [133667] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4790704Z ##[endgroup] 2025-12-04T08:42:37.4791683Z ##[group]Processing PR #133753 2025-12-04T08:42:37.4792629Z [133753] URL: https://github.com/pytorch/pytorch/pull/133753 2025-12-04T08:42:37.4793668Z [133753] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4794873Z ##[endgroup] 2025-12-04T08:42:37.4795865Z ##[group]Processing PR #134881 2025-12-04T08:42:37.4796753Z [134881] URL: https://github.com/pytorch/pytorch/pull/134881 2025-12-04T08:42:37.4797769Z [134881] Checking whether to label PR as stale. 2025-12-04T08:42:37.4798681Z [134881] Skipping because PR was updated recently 2025-12-04T08:42:37.4799878Z ##[endgroup] 2025-12-04T08:42:37.4801419Z ##[group]Processing PR #134942 2025-12-04T08:42:37.4802348Z [134942] URL: https://github.com/pytorch/pytorch/pull/134942 2025-12-04T08:42:37.4803391Z [134942] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4804599Z ##[endgroup] 2025-12-04T08:42:37.4805592Z ##[group]Processing PR #135631 2025-12-04T08:42:37.4806499Z [135631] URL: https://github.com/pytorch/pytorch/pull/135631 2025-12-04T08:42:37.4807703Z [135631] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4951366Z ##[endgroup] 2025-12-04T08:42:37.4952536Z ##[group]Processing PR #135792 2025-12-04T08:42:37.4953252Z [135792] URL: https://github.com/pytorch/pytorch/pull/135792 2025-12-04T08:42:37.4954031Z [135792] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4955166Z ##[endgroup] 2025-12-04T08:42:37.4955943Z ##[group]Processing PR #136355 2025-12-04T08:42:37.4956659Z [136355] URL: https://github.com/pytorch/pytorch/pull/136355 2025-12-04T08:42:37.4957538Z [136355] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4958563Z ##[endgroup] 2025-12-04T08:42:37.4959527Z ##[group]Processing PR #136702 2025-12-04T08:42:37.4960343Z [136702] URL: https://github.com/pytorch/pytorch/pull/136702 2025-12-04T08:42:37.4961242Z [136702] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4962357Z ##[endgroup] 2025-12-04T08:42:37.4963286Z ##[group]Processing PR #136835 2025-12-04T08:42:37.4964111Z [136835] URL: https://github.com/pytorch/pytorch/pull/136835 2025-12-04T08:42:37.4965027Z [136835] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4966084Z ##[endgroup] 2025-12-04T08:42:37.4966948Z ##[group]Processing PR #137400 2025-12-04T08:42:37.4967724Z [137400] URL: https://github.com/pytorch/pytorch/pull/137400 2025-12-04T08:42:37.4968584Z [137400] Checking whether to label PR as stale. 2025-12-04T08:42:37.4969279Z [137400] Skipping because PR was updated recently 2025-12-04T08:42:37.4970316Z ##[endgroup] 2025-12-04T08:42:37.4971213Z ##[group]Processing PR #137568 2025-12-04T08:42:37.4972134Z [137568] URL: https://github.com/pytorch/pytorch/pull/137568 2025-12-04T08:42:37.4973125Z [137568] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4974022Z ##[endgroup] 2025-12-04T08:42:37.4974813Z ##[group]Processing PR #137583 2025-12-04T08:42:37.4975419Z [137583] URL: https://github.com/pytorch/pytorch/pull/137583 2025-12-04T08:42:37.4976254Z [137583] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4977316Z ##[endgroup] 2025-12-04T08:42:37.4978223Z ##[group]Processing PR #138068 2025-12-04T08:42:37.4979057Z [138068] URL: https://github.com/pytorch/pytorch/pull/138068 2025-12-04T08:42:37.4979838Z [138068] Checking whether to label PR as stale. 2025-12-04T08:42:37.4980616Z [138068] Skipping because PR was updated recently 2025-12-04T08:42:37.4981736Z ##[endgroup] 2025-12-04T08:42:37.4982658Z ##[group]Processing PR #138388 2025-12-04T08:42:37.4983507Z [138388] URL: https://github.com/pytorch/pytorch/pull/138388 2025-12-04T08:42:37.4984478Z [138388] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4986133Z ##[endgroup] 2025-12-04T08:42:37.4987086Z ##[group]Processing PR #138436 2025-12-04T08:42:37.4987920Z [138436] URL: https://github.com/pytorch/pytorch/pull/138436 2025-12-04T08:42:37.4988883Z [138436] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4990029Z ##[endgroup] 2025-12-04T08:42:37.4990936Z ##[group]Processing PR #138471 2025-12-04T08:42:37.4991809Z [138471] URL: https://github.com/pytorch/pytorch/pull/138471 2025-12-04T08:42:37.4992771Z [138471] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4993859Z ##[endgroup] 2025-12-04T08:42:37.4994748Z ##[group]Processing PR #138513 2025-12-04T08:42:37.4995624Z [138513] URL: https://github.com/pytorch/pytorch/pull/138513 2025-12-04T08:42:37.4996547Z [138513] Skipping because PR has an exempting label. 2025-12-04T08:42:37.4997699Z ##[endgroup] 2025-12-04T08:42:37.4998609Z ##[group]Processing PR #138519 2025-12-04T08:42:37.4999420Z [138519] URL: https://github.com/pytorch/pytorch/pull/138519 2025-12-04T08:42:37.5000248Z [138519] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5001388Z ##[endgroup] 2025-12-04T08:42:37.5002279Z ##[group]Processing PR #138626 2025-12-04T08:42:37.5003111Z [138626] URL: https://github.com/pytorch/pytorch/pull/138626 2025-12-04T08:42:37.5004054Z [138626] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5005094Z ##[endgroup] 2025-12-04T08:42:37.5006336Z ##[group]Processing PR #139524 2025-12-04T08:42:37.5007185Z [139524] URL: https://github.com/pytorch/pytorch/pull/139524 2025-12-04T08:42:37.5008156Z [139524] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5009830Z ##[endgroup] 2025-12-04T08:42:37.5010820Z ##[group]Processing PR #140321 2025-12-04T08:42:37.5011764Z [140321] URL: https://github.com/pytorch/pytorch/pull/140321 2025-12-04T08:42:37.5012673Z [140321] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5013815Z ##[endgroup] 2025-12-04T08:42:37.5014758Z ##[group]Processing PR #140372 2025-12-04T08:42:37.5015580Z [140372] URL: https://github.com/pytorch/pytorch/pull/140372 2025-12-04T08:42:37.5016594Z [140372] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5018228Z ##[endgroup] 2025-12-04T08:42:37.5019124Z ##[group]Processing PR #140613 2025-12-04T08:42:37.5020617Z [140613] URL: https://github.com/pytorch/pytorch/pull/140613 2025-12-04T08:42:37.5021653Z [140613] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5022892Z ##[endgroup] 2025-12-04T08:42:37.5023836Z ##[group]Processing PR #141535 2025-12-04T08:42:37.5024665Z [141535] URL: https://github.com/pytorch/pytorch/pull/141535 2025-12-04T08:42:37.5025695Z [141535] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:37.5026652Z [141535] Skipping because PR was updated recently 2025-12-04T08:42:37.5027808Z ##[endgroup] 2025-12-04T08:42:37.5028773Z ##[group]Processing PR #141842 2025-12-04T08:42:37.5029606Z [141842] URL: https://github.com/pytorch/pytorch/pull/141842 2025-12-04T08:42:37.5030583Z [141842] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5031741Z ##[endgroup] 2025-12-04T08:42:37.5032689Z ##[group]Processing PR #141912 2025-12-04T08:42:37.5033547Z [141912] URL: https://github.com/pytorch/pytorch/pull/141912 2025-12-04T08:42:37.5035959Z [141912] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5037182Z ##[endgroup] 2025-12-04T08:42:37.5038091Z ##[group]Processing PR #142114 2025-12-04T08:42:37.5038962Z [142114] URL: https://github.com/pytorch/pytorch/pull/142114 2025-12-04T08:42:37.5039921Z [142114] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5041067Z ##[endgroup] 2025-12-04T08:42:37.5041954Z ##[group]Processing PR #142160 2025-12-04T08:42:37.5042774Z [142160] URL: https://github.com/pytorch/pytorch/pull/142160 2025-12-04T08:42:37.5043752Z [142160] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5044891Z ##[endgroup] 2025-12-04T08:42:37.5045804Z ##[group]Processing PR #142295 2025-12-04T08:42:37.5046629Z [142295] URL: https://github.com/pytorch/pytorch/pull/142295 2025-12-04T08:42:37.5047963Z [142295] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5049090Z ##[endgroup] 2025-12-04T08:42:37.5050015Z ##[group]Processing PR #143812 2025-12-04T08:42:37.5050832Z [143812] URL: https://github.com/pytorch/pytorch/pull/143812 2025-12-04T08:42:37.5051895Z [143812] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5053052Z ##[endgroup] 2025-12-04T08:42:37.5053991Z ##[group]Processing PR #143959 2025-12-04T08:42:37.5054825Z [143959] URL: https://github.com/pytorch/pytorch/pull/143959 2025-12-04T08:42:37.5055828Z [143959] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:37.5056792Z [143959] Skipping because PR was updated recently 2025-12-04T08:42:37.5057919Z ##[endgroup] 2025-12-04T08:42:37.5058828Z ##[group]Processing PR #144542 2025-12-04T08:42:37.5059633Z [144542] URL: https://github.com/pytorch/pytorch/pull/144542 2025-12-04T08:42:37.5060673Z [144542] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:37.5061654Z [144542] Skipping because PR was updated recently 2025-12-04T08:42:37.5062787Z ##[endgroup] 2025-12-04T08:42:37.5063719Z ##[group]Processing PR #144992 2025-12-04T08:42:37.5064534Z [144992] URL: https://github.com/pytorch/pytorch/pull/144992 2025-12-04T08:42:37.5065591Z [144992] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:37.5066856Z [144992] Skipping because PR was updated recently 2025-12-04T08:42:37.5068010Z ##[endgroup] 2025-12-04T08:42:37.5068957Z ##[group]Processing PR #145922 2025-12-04T08:42:37.5069793Z [145922] URL: https://github.com/pytorch/pytorch/pull/145922 2025-12-04T08:42:37.5070742Z [145922] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5071843Z ##[endgroup] 2025-12-04T08:42:37.5072764Z ##[group]Processing PR #146101 2025-12-04T08:42:37.5073572Z [146101] URL: https://github.com/pytorch/pytorch/pull/146101 2025-12-04T08:42:37.5074494Z [146101] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5075633Z ##[endgroup] 2025-12-04T08:42:37.5076588Z ##[group]Processing PR #146172 2025-12-04T08:42:37.5077386Z [146172] URL: https://github.com/pytorch/pytorch/pull/146172 2025-12-04T08:42:37.5078344Z [146172] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5079448Z ##[endgroup] 2025-12-04T08:42:37.5080367Z ##[group]Processing PR #146318 2025-12-04T08:42:37.5081235Z [146318] URL: https://github.com/pytorch/pytorch/pull/146318 2025-12-04T08:42:37.5082174Z [146318] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5083299Z ##[endgroup] 2025-12-04T08:42:37.5084214Z ##[group]Processing PR #146506 2025-12-04T08:42:37.5085058Z [146506] URL: https://github.com/pytorch/pytorch/pull/146506 2025-12-04T08:42:37.5086004Z [146506] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5087114Z ##[endgroup] 2025-12-04T08:42:37.5088030Z ##[group]Processing PR #146593 2025-12-04T08:42:37.5088856Z [146593] URL: https://github.com/pytorch/pytorch/pull/146593 2025-12-04T08:42:37.5089823Z [146593] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5090971Z ##[endgroup] 2025-12-04T08:42:37.5092040Z ##[group]Processing PR #147360 2025-12-04T08:42:37.5092868Z [147360] URL: https://github.com/pytorch/pytorch/pull/147360 2025-12-04T08:42:37.5093901Z [147360] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:37.5094832Z [147360] Skipping because PR was updated recently 2025-12-04T08:42:37.5096001Z ##[endgroup] 2025-12-04T08:42:37.5096932Z ##[group]Processing PR #147365 2025-12-04T08:42:37.5097754Z [147365] URL: https://github.com/pytorch/pytorch/pull/147365 2025-12-04T08:42:37.5098711Z [147365] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5099830Z ##[endgroup] 2025-12-04T08:42:37.5100757Z ##[group]Processing PR #147470 2025-12-04T08:42:37.5101585Z [147470] URL: https://github.com/pytorch/pytorch/pull/147470 2025-12-04T08:42:37.5102530Z [147470] Checking whether to label PR as stale. 2025-12-04T08:42:37.5103352Z [147470] Skipping because PR was updated recently 2025-12-04T08:42:37.5104726Z ##[endgroup] 2025-12-04T08:42:37.5105660Z ##[group]Processing PR #147653 2025-12-04T08:42:37.5106469Z [147653] URL: https://github.com/pytorch/pytorch/pull/147653 2025-12-04T08:42:37.5107441Z [147653] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5108576Z ##[endgroup] 2025-12-04T08:42:37.5109473Z ##[group]Processing PR #147855 2025-12-04T08:42:37.5110320Z [147855] URL: https://github.com/pytorch/pytorch/pull/147855 2025-12-04T08:42:37.5112001Z [147855] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:37.5112966Z [147855] Skipping because PR was updated recently 2025-12-04T08:42:37.5114114Z ##[endgroup] 2025-12-04T08:42:37.5115010Z ##[group]Processing PR #147927 2025-12-04T08:42:37.5115827Z [147927] URL: https://github.com/pytorch/pytorch/pull/147927 2025-12-04T08:42:37.5116753Z [147927] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5118298Z ##[endgroup] 2025-12-04T08:42:37.5119258Z ##[group]Processing PR #147990 2025-12-04T08:42:37.5120112Z [147990] URL: https://github.com/pytorch/pytorch/pull/147990 2025-12-04T08:42:37.5121092Z [147990] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5123126Z ##[endgroup] 2025-12-04T08:42:37.5124132Z ##[group]Processing PR #148023 2025-12-04T08:42:37.5124962Z [148023] URL: https://github.com/pytorch/pytorch/pull/148023 2025-12-04T08:42:37.5126159Z [148023] Skipping because PR has an exempting label. 2025-12-04T08:42:37.5127306Z ##[endgroup] 2025-12-04T08:42:37.5128231Z ##[group]Processing PR #148180 2025-12-04T08:42:37.5129058Z [148180] URL: https://github.com/pytorch/pytorch/pull/148180 2025-12-04T08:42:37.5129972Z [148180] Checking whether to label PR as stale. 2025-12-04T08:42:37.5130765Z [148180] Skipping because PR was updated recently 2025-12-04T08:42:37.5132008Z ##[endgroup] 2025-12-04T08:42:38.9416718Z ##[group]Processing PR #148294 2025-12-04T08:42:38.9417404Z [148294] URL: https://github.com/pytorch/pytorch/pull/148294 2025-12-04T08:42:38.9418166Z [148294] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9418919Z [148294] Skipping because PR was updated recently 2025-12-04T08:42:38.9419802Z ##[endgroup] 2025-12-04T08:42:38.9420528Z ##[group]Processing PR #148474 2025-12-04T08:42:38.9421167Z [148474] URL: https://github.com/pytorch/pytorch/pull/148474 2025-12-04T08:42:38.9421868Z [148474] Checking whether to label PR as stale. 2025-12-04T08:42:38.9422503Z [148474] Skipping because PR was updated recently 2025-12-04T08:42:38.9423452Z ##[endgroup] 2025-12-04T08:42:38.9424076Z ##[group]Processing PR #148484 2025-12-04T08:42:38.9424697Z [148484] URL: https://github.com/pytorch/pytorch/pull/148484 2025-12-04T08:42:38.9425438Z [148484] Checking whether to label PR as stale. 2025-12-04T08:42:38.9426075Z [148484] Skipping because PR was updated recently 2025-12-04T08:42:38.9426987Z ##[endgroup] 2025-12-04T08:42:38.9427721Z ##[group]Processing PR #148492 2025-12-04T08:42:38.9428314Z [148492] URL: https://github.com/pytorch/pytorch/pull/148492 2025-12-04T08:42:38.9429073Z [148492] Checking whether to label PR as stale. 2025-12-04T08:42:38.9429755Z [148492] Skipping because PR was updated recently 2025-12-04T08:42:38.9431746Z ##[endgroup] 2025-12-04T08:42:38.9432426Z ##[group]Processing PR #148668 2025-12-04T08:42:38.9433063Z [148668] URL: https://github.com/pytorch/pytorch/pull/148668 2025-12-04T08:42:38.9434320Z [148668] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9435161Z ##[endgroup] 2025-12-04T08:42:38.9435794Z ##[group]Processing PR #148673 2025-12-04T08:42:38.9436369Z [148673] URL: https://github.com/pytorch/pytorch/pull/148673 2025-12-04T08:42:38.9436964Z [148673] Checking whether to label PR as stale. 2025-12-04T08:42:38.9437562Z [148673] Skipping because PR was updated recently 2025-12-04T08:42:38.9438421Z ##[endgroup] 2025-12-04T08:42:38.9439174Z ##[group]Processing PR #148674 2025-12-04T08:42:38.9439901Z [148674] URL: https://github.com/pytorch/pytorch/pull/148674 2025-12-04T08:42:38.9440630Z [148674] Checking whether to label PR as stale. 2025-12-04T08:42:38.9441725Z [148674] Skipping because PR was updated recently 2025-12-04T08:42:38.9442879Z ##[endgroup] 2025-12-04T08:42:38.9443568Z ##[group]Processing PR #148820 2025-12-04T08:42:38.9444152Z [148820] URL: https://github.com/pytorch/pytorch/pull/148820 2025-12-04T08:42:38.9459981Z [148820] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9461013Z ##[endgroup] 2025-12-04T08:42:38.9461733Z ##[group]Processing PR #148900 2025-12-04T08:42:38.9462347Z [148900] URL: https://github.com/pytorch/pytorch/pull/148900 2025-12-04T08:42:38.9463035Z [148900] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9463886Z ##[endgroup] 2025-12-04T08:42:38.9464605Z ##[group]Processing PR #149003 2025-12-04T08:42:38.9465180Z [149003] URL: https://github.com/pytorch/pytorch/pull/149003 2025-12-04T08:42:38.9465911Z [149003] Checking whether to label PR as stale. 2025-12-04T08:42:38.9466582Z [149003] Skipping because PR was updated recently 2025-12-04T08:42:38.9467499Z ##[endgroup] 2025-12-04T08:42:38.9468230Z ##[group]Processing PR #149122 2025-12-04T08:42:38.9468879Z [149122] URL: https://github.com/pytorch/pytorch/pull/149122 2025-12-04T08:42:38.9469655Z [149122] Checking whether to label PR as stale. 2025-12-04T08:42:38.9470329Z [149122] Skipping because PR was updated recently 2025-12-04T08:42:38.9471163Z ##[endgroup] 2025-12-04T08:42:38.9471801Z ##[group]Processing PR #149536 2025-12-04T08:42:38.9472884Z [149536] URL: https://github.com/pytorch/pytorch/pull/149536 2025-12-04T08:42:38.9473666Z [149536] Checking whether to label PR as stale. 2025-12-04T08:42:38.9474321Z [149536] Skipping because PR was updated recently 2025-12-04T08:42:38.9475159Z ##[endgroup] 2025-12-04T08:42:38.9475785Z ##[group]Processing PR #150282 2025-12-04T08:42:38.9476360Z [150282] URL: https://github.com/pytorch/pytorch/pull/150282 2025-12-04T08:42:38.9477044Z [150282] Checking whether to label PR as stale. 2025-12-04T08:42:38.9477634Z [150282] Skipping because PR was updated recently 2025-12-04T08:42:38.9478458Z ##[endgroup] 2025-12-04T08:42:38.9479095Z ##[group]Processing PR #150934 2025-12-04T08:42:38.9479695Z [150934] URL: https://github.com/pytorch/pytorch/pull/150934 2025-12-04T08:42:38.9480495Z [150934] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9481275Z [150934] Skipping because PR was updated recently 2025-12-04T08:42:38.9482194Z ##[endgroup] 2025-12-04T08:42:38.9482916Z ##[group]Processing PR #150942 2025-12-04T08:42:38.9483566Z [150942] URL: https://github.com/pytorch/pytorch/pull/150942 2025-12-04T08:42:38.9484417Z [150942] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9485202Z [150942] Skipping because PR was updated recently 2025-12-04T08:42:38.9486307Z ##[endgroup] 2025-12-04T08:42:38.9487019Z ##[group]Processing PR #151218 2025-12-04T08:42:38.9487677Z [151218] URL: https://github.com/pytorch/pytorch/pull/151218 2025-12-04T08:42:38.9488460Z [151218] Checking whether to label PR as stale. 2025-12-04T08:42:38.9489139Z [151218] Skipping because PR was updated recently 2025-12-04T08:42:38.9490024Z ##[endgroup] 2025-12-04T08:42:38.9490674Z ##[group]Processing PR #151314 2025-12-04T08:42:38.9491469Z [151314] URL: https://github.com/pytorch/pytorch/pull/151314 2025-12-04T08:42:38.9492194Z [151314] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9492902Z [151314] Skipping because PR was updated recently 2025-12-04T08:42:38.9493754Z ##[endgroup] 2025-12-04T08:42:38.9494381Z ##[group]Processing PR #151447 2025-12-04T08:42:38.9494984Z [151447] URL: https://github.com/pytorch/pytorch/pull/151447 2025-12-04T08:42:38.9495683Z [151447] Checking whether to label PR as stale. 2025-12-04T08:42:38.9496350Z [151447] Skipping because PR was updated recently 2025-12-04T08:42:38.9497248Z ##[endgroup] 2025-12-04T08:42:38.9497942Z ##[group]Processing PR #151700 2025-12-04T08:42:38.9498601Z [151700] URL: https://github.com/pytorch/pytorch/pull/151700 2025-12-04T08:42:38.9499357Z [151700] Checking whether to label PR as stale. 2025-12-04T08:42:38.9500374Z [151700] Skipping because PR was updated recently 2025-12-04T08:42:38.9501304Z ##[endgroup] 2025-12-04T08:42:38.9501976Z ##[group]Processing PR #151845 2025-12-04T08:42:38.9502586Z [151845] URL: https://github.com/pytorch/pytorch/pull/151845 2025-12-04T08:42:38.9503356Z [151845] Checking whether to label PR as stale. 2025-12-04T08:42:38.9504011Z [151845] Skipping because PR was updated recently 2025-12-04T08:42:38.9504790Z ##[endgroup] 2025-12-04T08:42:38.9505440Z ##[group]Processing PR #152104 2025-12-04T08:42:38.9506045Z [152104] URL: https://github.com/pytorch/pytorch/pull/152104 2025-12-04T08:42:38.9506751Z [152104] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9507569Z ##[endgroup] 2025-12-04T08:42:38.9508257Z ##[group]Processing PR #152158 2025-12-04T08:42:38.9508913Z [152158] URL: https://github.com/pytorch/pytorch/pull/152158 2025-12-04T08:42:38.9509654Z [152158] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9510572Z ##[endgroup] 2025-12-04T08:42:38.9511289Z ##[group]Processing PR #152159 2025-12-04T08:42:38.9511928Z [152159] URL: https://github.com/pytorch/pytorch/pull/152159 2025-12-04T08:42:38.9512727Z [152159] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9513602Z ##[endgroup] 2025-12-04T08:42:38.9514235Z ##[group]Processing PR #152806 2025-12-04T08:42:38.9515091Z [152806] URL: https://github.com/pytorch/pytorch/pull/152806 2025-12-04T08:42:38.9515885Z [152806] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9577216Z [152806] Skipping because PR was updated recently 2025-12-04T08:42:38.9578267Z ##[endgroup] 2025-12-04T08:42:38.9578915Z ##[group]Processing PR #152828 2025-12-04T08:42:38.9579536Z [152828] URL: https://github.com/pytorch/pytorch/pull/152828 2025-12-04T08:42:38.9580225Z [152828] Checking whether to label PR as stale. 2025-12-04T08:42:38.9580851Z [152828] Skipping because PR was updated recently 2025-12-04T08:42:38.9581691Z ##[endgroup] 2025-12-04T08:42:38.9582371Z ##[group]Processing PR #153038 2025-12-04T08:42:38.9583079Z [153038] URL: https://github.com/pytorch/pytorch/pull/153038 2025-12-04T08:42:38.9583953Z [153038] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9584737Z [153038] Skipping because PR was updated recently 2025-12-04T08:42:38.9585665Z ##[endgroup] 2025-12-04T08:42:38.9586376Z ##[group]Processing PR #153097 2025-12-04T08:42:38.9587056Z [153097] URL: https://github.com/pytorch/pytorch/pull/153097 2025-12-04T08:42:38.9587917Z [153097] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9588661Z [153097] Skipping because PR was updated recently 2025-12-04T08:42:38.9589445Z ##[endgroup] 2025-12-04T08:42:38.9590093Z ##[group]Processing PR #153317 2025-12-04T08:42:38.9590681Z [153317] URL: https://github.com/pytorch/pytorch/pull/153317 2025-12-04T08:42:38.9591383Z [153317] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9592268Z ##[endgroup] 2025-12-04T08:42:38.9592967Z ##[group]Processing PR #153557 2025-12-04T08:42:38.9593624Z [153557] URL: https://github.com/pytorch/pytorch/pull/153557 2025-12-04T08:42:38.9594293Z [153557] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9595087Z ##[endgroup] 2025-12-04T08:42:38.9595783Z ##[group]Processing PR #153855 2025-12-04T08:42:38.9596414Z [153855] URL: https://github.com/pytorch/pytorch/pull/153855 2025-12-04T08:42:38.9597220Z [153855] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9597913Z [153855] Skipping because PR was updated recently 2025-12-04T08:42:38.9598743Z ##[endgroup] 2025-12-04T08:42:38.9599383Z ##[group]Processing PR #153893 2025-12-04T08:42:38.9599983Z [153893] URL: https://github.com/pytorch/pytorch/pull/153893 2025-12-04T08:42:38.9600667Z [153893] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9601507Z ##[endgroup] 2025-12-04T08:42:38.9602209Z ##[group]Processing PR #154032 2025-12-04T08:42:38.9602832Z [154032] URL: https://github.com/pytorch/pytorch/pull/154032 2025-12-04T08:42:38.9604094Z [154032] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9605020Z ##[endgroup] 2025-12-04T08:42:38.9605726Z ##[group]Processing PR #154279 2025-12-04T08:42:38.9606380Z [154279] URL: https://github.com/pytorch/pytorch/pull/154279 2025-12-04T08:42:38.9607138Z [154279] Checking whether to label PR as stale. 2025-12-04T08:42:38.9607803Z [154279] Skipping because PR was updated recently 2025-12-04T08:42:38.9608704Z ##[endgroup] 2025-12-04T08:42:38.9609374Z ##[group]Processing PR #154293 2025-12-04T08:42:38.9609933Z [154293] URL: https://github.com/pytorch/pytorch/pull/154293 2025-12-04T08:42:38.9610783Z [154293] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9611618Z [154293] Skipping because PR was updated recently 2025-12-04T08:42:38.9612439Z ##[endgroup] 2025-12-04T08:42:38.9613089Z ##[group]Processing PR #154395 2025-12-04T08:42:38.9613703Z [154395] URL: https://github.com/pytorch/pytorch/pull/154395 2025-12-04T08:42:38.9614469Z [154395] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9615423Z ##[endgroup] 2025-12-04T08:42:38.9616129Z ##[group]Processing PR #154584 2025-12-04T08:42:38.9616800Z [154584] URL: https://github.com/pytorch/pytorch/pull/154584 2025-12-04T08:42:38.9617637Z [154584] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9618406Z [154584] Skipping because PR was updated recently 2025-12-04T08:42:38.9619622Z ##[endgroup] 2025-12-04T08:42:38.9620786Z ##[group]Processing PR #154744 2025-12-04T08:42:38.9621438Z [154744] URL: https://github.com/pytorch/pytorch/pull/154744 2025-12-04T08:42:38.9622236Z [154744] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9622988Z [154744] Skipping because PR was updated recently 2025-12-04T08:42:38.9623916Z ##[endgroup] 2025-12-04T08:42:38.9624762Z ##[group]Processing PR #154827 2025-12-04T08:42:38.9625350Z [154827] URL: https://github.com/pytorch/pytorch/pull/154827 2025-12-04T08:42:38.9626171Z [154827] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9626946Z [154827] Skipping because PR was updated recently 2025-12-04T08:42:38.9627884Z ##[endgroup] 2025-12-04T08:42:38.9628604Z ##[group]Processing PR #154864 2025-12-04T08:42:38.9629247Z [154864] URL: https://github.com/pytorch/pytorch/pull/154864 2025-12-04T08:42:38.9630007Z [154864] Checking whether to label PR as stale. 2025-12-04T08:42:38.9630717Z [154864] Skipping because PR was updated recently 2025-12-04T08:42:38.9631569Z ##[endgroup] 2025-12-04T08:42:38.9632277Z ##[group]Processing PR #154983 2025-12-04T08:42:38.9632942Z [154983] URL: https://github.com/pytorch/pytorch/pull/154983 2025-12-04T08:42:38.9634417Z [154983] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9635189Z [154983] Skipping because PR was updated recently 2025-12-04T08:42:38.9636026Z ##[endgroup] 2025-12-04T08:42:38.9636640Z ##[group]Processing PR #155062 2025-12-04T08:42:38.9637205Z [155062] URL: https://github.com/pytorch/pytorch/pull/155062 2025-12-04T08:42:38.9637908Z [155062] Checking whether to label PR as stale. 2025-12-04T08:42:38.9638519Z [155062] Skipping because PR was updated recently 2025-12-04T08:42:38.9639273Z ##[endgroup] 2025-12-04T08:42:38.9639893Z ##[group]Processing PR #155070 2025-12-04T08:42:38.9640435Z [155070] URL: https://github.com/pytorch/pytorch/pull/155070 2025-12-04T08:42:38.9641191Z [155070] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9641865Z [155070] Skipping because PR was updated recently 2025-12-04T08:42:38.9642654Z ##[endgroup] 2025-12-04T08:42:38.9643319Z ##[group]Processing PR #155310 2025-12-04T08:42:38.9643890Z [155310] URL: https://github.com/pytorch/pytorch/pull/155310 2025-12-04T08:42:38.9644538Z [155310] Checking whether to label PR as stale. 2025-12-04T08:42:38.9645144Z [155310] Skipping because PR was updated recently 2025-12-04T08:42:38.9645944Z ##[endgroup] 2025-12-04T08:42:38.9646580Z ##[group]Processing PR #155501 2025-12-04T08:42:38.9647182Z [155501] URL: https://github.com/pytorch/pytorch/pull/155501 2025-12-04T08:42:38.9648347Z [155501] Checking whether to label PR as stale. 2025-12-04T08:42:38.9648974Z [155501] Skipping because PR was updated recently 2025-12-04T08:42:38.9649812Z ##[endgroup] 2025-12-04T08:42:38.9650483Z ##[group]Processing PR #155502 2025-12-04T08:42:38.9651093Z [155502] URL: https://github.com/pytorch/pytorch/pull/155502 2025-12-04T08:42:38.9651972Z [155502] Checking whether to label PR as stale. 2025-12-04T08:42:38.9652613Z [155502] Skipping because PR was updated recently 2025-12-04T08:42:38.9653427Z ##[endgroup] 2025-12-04T08:42:38.9654050Z ##[group]Processing PR #155503 2025-12-04T08:42:38.9654648Z [155503] URL: https://github.com/pytorch/pytorch/pull/155503 2025-12-04T08:42:38.9655328Z [155503] Checking whether to label PR as stale. 2025-12-04T08:42:38.9655957Z [155503] Skipping because PR was updated recently 2025-12-04T08:42:38.9656757Z ##[endgroup] 2025-12-04T08:42:38.9657384Z ##[group]Processing PR #155548 2025-12-04T08:42:38.9657958Z [155548] URL: https://github.com/pytorch/pytorch/pull/155548 2025-12-04T08:42:38.9658821Z [155548] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9659622Z [155548] Skipping because PR was updated recently 2025-12-04T08:42:38.9660516Z ##[endgroup] 2025-12-04T08:42:38.9661218Z ##[group]Processing PR #155606 2025-12-04T08:42:38.9661875Z [155606] URL: https://github.com/pytorch/pytorch/pull/155606 2025-12-04T08:42:38.9662978Z [155606] Checking whether to label PR as stale. 2025-12-04T08:42:38.9663674Z [155606] Skipping because PR was updated recently 2025-12-04T08:42:38.9664555Z ##[endgroup] 2025-12-04T08:42:38.9665238Z ##[group]Processing PR #155608 2025-12-04T08:42:38.9665915Z [155608] URL: https://github.com/pytorch/pytorch/pull/155608 2025-12-04T08:42:38.9666686Z [155608] Checking whether to label PR as stale. 2025-12-04T08:42:38.9667383Z [155608] Skipping because PR was updated recently 2025-12-04T08:42:38.9668271Z ##[endgroup] 2025-12-04T08:42:38.9668977Z ##[group]Processing PR #155654 2025-12-04T08:42:38.9669669Z [155654] URL: https://github.com/pytorch/pytorch/pull/155654 2025-12-04T08:42:38.9670527Z [155654] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9671264Z [155654] Skipping because PR was updated recently 2025-12-04T08:42:38.9672747Z ##[endgroup] 2025-12-04T08:42:38.9673503Z ##[group]Processing PR #155672 2025-12-04T08:42:38.9674176Z [155672] URL: https://github.com/pytorch/pytorch/pull/155672 2025-12-04T08:42:38.9674984Z [155672] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9675942Z ##[endgroup] 2025-12-04T08:42:38.9676658Z ##[group]Processing PR #156030 2025-12-04T08:42:38.9677262Z [156030] URL: https://github.com/pytorch/pytorch/pull/156030 2025-12-04T08:42:38.9678029Z [156030] Checking whether to label PR as stale. 2025-12-04T08:42:38.9678593Z [156030] Skipping because PR was updated recently 2025-12-04T08:42:38.9679492Z ##[endgroup] 2025-12-04T08:42:38.9680201Z ##[group]Processing PR #156161 2025-12-04T08:42:38.9680852Z [156161] URL: https://github.com/pytorch/pytorch/pull/156161 2025-12-04T08:42:38.9681569Z [156161] Checking whether to label PR as stale. 2025-12-04T08:42:38.9682126Z [156161] Skipping because PR was updated recently 2025-12-04T08:42:38.9683004Z ##[endgroup] 2025-12-04T08:42:38.9683610Z ##[group]Processing PR #156183 2025-12-04T08:42:38.9684180Z [156183] URL: https://github.com/pytorch/pytorch/pull/156183 2025-12-04T08:42:38.9684949Z [156183] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9685664Z [156183] Skipping because PR was updated recently 2025-12-04T08:42:38.9686572Z ##[endgroup] 2025-12-04T08:42:38.9687285Z ##[group]Processing PR #156252 2025-12-04T08:42:38.9687883Z [156252] URL: https://github.com/pytorch/pytorch/pull/156252 2025-12-04T08:42:38.9688644Z [156252] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9689335Z [156252] Skipping because PR was updated recently 2025-12-04T08:42:38.9690145Z ##[endgroup] 2025-12-04T08:42:38.9690784Z ##[group]Processing PR #156380 2025-12-04T08:42:38.9691781Z [156380] URL: https://github.com/pytorch/pytorch/pull/156380 2025-12-04T08:42:38.9692588Z [156380] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9693308Z [156380] Skipping because PR was updated recently 2025-12-04T08:42:38.9694154Z ##[endgroup] 2025-12-04T08:42:38.9694802Z ##[group]Processing PR #156491 2025-12-04T08:42:38.9695414Z [156491] URL: https://github.com/pytorch/pytorch/pull/156491 2025-12-04T08:42:38.9696098Z [156491] Checking whether to label PR as stale. 2025-12-04T08:42:38.9696688Z [156491] Skipping because PR was updated recently 2025-12-04T08:42:38.9697511Z ##[endgroup] 2025-12-04T08:42:38.9698116Z ##[group]Processing PR #156660 2025-12-04T08:42:38.9698706Z [156660] URL: https://github.com/pytorch/pytorch/pull/156660 2025-12-04T08:42:38.9699476Z [156660] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9700223Z [156660] Skipping because PR was updated recently 2025-12-04T08:42:38.9701138Z ##[endgroup] 2025-12-04T08:42:38.9701823Z ##[group]Processing PR #156851 2025-12-04T08:42:38.9702448Z [156851] URL: https://github.com/pytorch/pytorch/pull/156851 2025-12-04T08:42:38.9703247Z [156851] Checking whether to label PR as stale. 2025-12-04T08:42:38.9703899Z [156851] Skipping because PR was updated recently 2025-12-04T08:42:38.9704760Z ##[endgroup] 2025-12-04T08:42:38.9705733Z ##[group]Processing PR #157149 2025-12-04T08:42:38.9706385Z [157149] URL: https://github.com/pytorch/pytorch/pull/157149 2025-12-04T08:42:38.9707186Z [157149] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9708149Z ##[endgroup] 2025-12-04T08:42:38.9709297Z ##[group]Processing PR #157193 2025-12-04T08:42:38.9709927Z [157193] URL: https://github.com/pytorch/pytorch/pull/157193 2025-12-04T08:42:38.9710726Z [157193] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9711673Z ##[endgroup] 2025-12-04T08:42:38.9712357Z ##[group]Processing PR #157198 2025-12-04T08:42:38.9713015Z [157198] URL: https://github.com/pytorch/pytorch/pull/157198 2025-12-04T08:42:38.9713816Z [157198] Checking whether to label PR as stale. 2025-12-04T08:42:38.9714542Z [157198] Skipping because PR was updated recently 2025-12-04T08:42:38.9715459Z ##[endgroup] 2025-12-04T08:42:38.9716331Z ##[group]Processing PR #157309 2025-12-04T08:42:38.9716971Z [157309] URL: https://github.com/pytorch/pytorch/pull/157309 2025-12-04T08:42:38.9717856Z [157309] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9718660Z [157309] Skipping because PR was updated recently 2025-12-04T08:42:38.9719582Z ##[endgroup] 2025-12-04T08:42:38.9720308Z ##[group]Processing PR #157432 2025-12-04T08:42:38.9720992Z [157432] URL: https://github.com/pytorch/pytorch/pull/157432 2025-12-04T08:42:38.9721701Z [157432] Checking whether to label PR as stale. 2025-12-04T08:42:38.9722390Z [157432] Skipping because PR was updated recently 2025-12-04T08:42:38.9723319Z ##[endgroup] 2025-12-04T08:42:38.9724064Z ##[group]Processing PR #157437 2025-12-04T08:42:38.9724719Z [157437] URL: https://github.com/pytorch/pytorch/pull/157437 2025-12-04T08:42:38.9725585Z [157437] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9726333Z [157437] Skipping because PR was updated recently 2025-12-04T08:42:38.9751047Z ##[endgroup] 2025-12-04T08:42:38.9751884Z ##[group]Processing PR #157786 2025-12-04T08:42:38.9752466Z [157786] URL: https://github.com/pytorch/pytorch/pull/157786 2025-12-04T08:42:38.9753253Z [157786] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9753937Z [157786] Skipping because PR was updated recently 2025-12-04T08:42:38.9754708Z ##[endgroup] 2025-12-04T08:42:38.9755314Z ##[group]Processing PR #157994 2025-12-04T08:42:38.9755865Z [157994] URL: https://github.com/pytorch/pytorch/pull/157994 2025-12-04T08:42:38.9756544Z [157994] Checking whether to label PR as stale. 2025-12-04T08:42:38.9757117Z [157994] Skipping because PR was updated recently 2025-12-04T08:42:38.9757939Z ##[endgroup] 2025-12-04T08:42:38.9759020Z ##[group]Processing PR #158017 2025-12-04T08:42:38.9759660Z [158017] URL: https://github.com/pytorch/pytorch/pull/158017 2025-12-04T08:42:38.9760460Z [158017] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9761205Z [158017] Skipping because PR was updated recently 2025-12-04T08:42:38.9762104Z ##[endgroup] 2025-12-04T08:42:38.9762774Z ##[group]Processing PR #158061 2025-12-04T08:42:38.9763361Z [158061] URL: https://github.com/pytorch/pytorch/pull/158061 2025-12-04T08:42:38.9764116Z [158061] Checking whether to label PR as stale. 2025-12-04T08:42:38.9764725Z [158061] Skipping because PR was updated recently 2025-12-04T08:42:38.9765529Z ##[endgroup] 2025-12-04T08:42:38.9766228Z ##[group]Processing PR #158097 2025-12-04T08:42:38.9766819Z [158097] URL: https://github.com/pytorch/pytorch/pull/158097 2025-12-04T08:42:38.9767562Z [158097] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9768302Z [158097] Skipping because PR was updated recently 2025-12-04T08:42:38.9769137Z ##[endgroup] 2025-12-04T08:42:38.9769792Z ##[group]Processing PR #158104 2025-12-04T08:42:38.9770419Z [158104] URL: https://github.com/pytorch/pytorch/pull/158104 2025-12-04T08:42:38.9771191Z [158104] Checking whether to label PR as stale. 2025-12-04T08:42:38.9771988Z [158104] Skipping because PR was updated recently 2025-12-04T08:42:38.9772886Z ##[endgroup] 2025-12-04T08:42:38.9773937Z ##[group]Processing PR #158133 2025-12-04T08:42:38.9774594Z [158133] URL: https://github.com/pytorch/pytorch/pull/158133 2025-12-04T08:42:38.9775468Z [158133] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9776283Z [158133] Skipping because PR was updated recently 2025-12-04T08:42:38.9777172Z ##[endgroup] 2025-12-04T08:42:38.9777894Z ##[group]Processing PR #158137 2025-12-04T08:42:38.9778537Z [158137] URL: https://github.com/pytorch/pytorch/pull/158137 2025-12-04T08:42:38.9779346Z [158137] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9780036Z [158137] Skipping because PR was updated recently 2025-12-04T08:42:38.9780831Z ##[endgroup] 2025-12-04T08:42:38.9781491Z ##[group]Processing PR #158219 2025-12-04T08:42:38.9782121Z [158219] URL: https://github.com/pytorch/pytorch/pull/158219 2025-12-04T08:42:38.9782825Z [158219] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9783641Z ##[endgroup] 2025-12-04T08:42:38.9784293Z ##[group]Processing PR #158220 2025-12-04T08:42:38.9784883Z [158220] URL: https://github.com/pytorch/pytorch/pull/158220 2025-12-04T08:42:38.9785604Z [158220] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9786427Z ##[endgroup] 2025-12-04T08:42:38.9787082Z ##[group]Processing PR #158224 2025-12-04T08:42:38.9787655Z [158224] URL: https://github.com/pytorch/pytorch/pull/158224 2025-12-04T08:42:38.9788420Z [158224] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9789106Z [158224] Skipping because PR was updated recently 2025-12-04T08:42:38.9789903Z ##[endgroup] 2025-12-04T08:42:38.9790546Z ##[group]Processing PR #158241 2025-12-04T08:42:38.9791177Z [158241] URL: https://github.com/pytorch/pytorch/pull/158241 2025-12-04T08:42:38.9791829Z [158241] Checking whether to label PR as stale. 2025-12-04T08:42:38.9792491Z [158241] Skipping because PR was updated recently 2025-12-04T08:42:38.9793385Z ##[endgroup] 2025-12-04T08:42:38.9794104Z ##[group]Processing PR #158409 2025-12-04T08:42:38.9794750Z [158409] URL: https://github.com/pytorch/pytorch/pull/158409 2025-12-04T08:42:38.9795515Z [158409] Checking whether to label PR as stale. 2025-12-04T08:42:38.9796184Z [158409] Skipping because PR was updated recently 2025-12-04T08:42:38.9797068Z ##[endgroup] 2025-12-04T08:42:38.9797781Z ##[group]Processing PR #158527 2025-12-04T08:42:38.9798432Z [158527] URL: https://github.com/pytorch/pytorch/pull/158527 2025-12-04T08:42:38.9799278Z [158527] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9800014Z [158527] Skipping because PR was updated recently 2025-12-04T08:42:38.9801043Z ##[endgroup] 2025-12-04T08:42:38.9801673Z ##[group]Processing PR #158623 2025-12-04T08:42:38.9802283Z [158623] URL: https://github.com/pytorch/pytorch/pull/158623 2025-12-04T08:42:38.9803018Z [158623] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9803732Z [158623] Skipping because PR was updated recently 2025-12-04T08:42:38.9805185Z ##[endgroup] 2025-12-04T08:42:38.9805815Z ##[group]Processing PR #158625 2025-12-04T08:42:38.9806387Z [158625] URL: https://github.com/pytorch/pytorch/pull/158625 2025-12-04T08:42:38.9807164Z [158625] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9807869Z [158625] Skipping because PR was updated recently 2025-12-04T08:42:38.9808696Z ##[endgroup] 2025-12-04T08:42:38.9809813Z ##[group]Processing PR #158740 2025-12-04T08:42:38.9810460Z [158740] URL: https://github.com/pytorch/pytorch/pull/158740 2025-12-04T08:42:38.9811218Z [158740] Checking whether to label PR as stale. 2025-12-04T08:42:38.9812039Z [158740] Skipping because PR was updated recently 2025-12-04T08:42:38.9812988Z ##[endgroup] 2025-12-04T08:42:38.9813755Z ##[group]Processing PR #158771 2025-12-04T08:42:38.9814436Z [158771] URL: https://github.com/pytorch/pytorch/pull/158771 2025-12-04T08:42:38.9815219Z [158771] Checking whether to label PR as stale. 2025-12-04T08:42:38.9815907Z [158771] Skipping because PR was updated recently 2025-12-04T08:42:38.9817032Z ##[endgroup] 2025-12-04T08:42:38.9817747Z ##[group]Processing PR #158777 2025-12-04T08:42:38.9818406Z [158777] URL: https://github.com/pytorch/pytorch/pull/158777 2025-12-04T08:42:38.9819208Z [158777] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9820168Z ##[endgroup] 2025-12-04T08:42:38.9820842Z ##[group]Processing PR #158844 2025-12-04T08:42:38.9821509Z [158844] URL: https://github.com/pytorch/pytorch/pull/158844 2025-12-04T08:42:38.9822225Z [158844] Checking whether to label PR as stale. 2025-12-04T08:42:38.9822907Z [158844] Skipping because PR was updated recently 2025-12-04T08:42:38.9823732Z ##[endgroup] 2025-12-04T08:42:38.9824351Z ##[group]Processing PR #159020 2025-12-04T08:42:38.9824912Z [159020] URL: https://github.com/pytorch/pytorch/pull/159020 2025-12-04T08:42:38.9825675Z [159020] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9826357Z [159020] Skipping because PR was updated recently 2025-12-04T08:42:38.9827263Z ##[endgroup] 2025-12-04T08:42:38.9827948Z ##[group]Processing PR #159026 2025-12-04T08:42:38.9828620Z [159026] URL: https://github.com/pytorch/pytorch/pull/159026 2025-12-04T08:42:38.9829509Z [159026] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9830273Z [159026] Skipping because PR was updated recently 2025-12-04T08:42:38.9831182Z ##[endgroup] 2025-12-04T08:42:38.9831920Z ##[group]Processing PR #159213 2025-12-04T08:42:38.9832553Z [159213] URL: https://github.com/pytorch/pytorch/pull/159213 2025-12-04T08:42:38.9833208Z [159213] Checking whether to label PR as stale. 2025-12-04T08:42:38.9834293Z [159213] Skipping because PR was updated recently 2025-12-04T08:42:38.9835383Z ##[endgroup] 2025-12-04T08:42:38.9836083Z ##[group]Processing PR #159313 2025-12-04T08:42:38.9836730Z [159313] URL: https://github.com/pytorch/pytorch/pull/159313 2025-12-04T08:42:38.9837484Z [159313] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9838195Z [159313] Skipping because PR was updated recently 2025-12-04T08:42:38.9839012Z ##[endgroup] 2025-12-04T08:42:38.9839624Z ##[group]Processing PR #159387 2025-12-04T08:42:38.9840213Z [159387] URL: https://github.com/pytorch/pytorch/pull/159387 2025-12-04T08:42:38.9840986Z [159387] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9841687Z [159387] Skipping because PR was updated recently 2025-12-04T08:42:38.9842514Z ##[endgroup] 2025-12-04T08:42:38.9843159Z ##[group]Processing PR #159503 2025-12-04T08:42:38.9843751Z [159503] URL: https://github.com/pytorch/pytorch/pull/159503 2025-12-04T08:42:38.9844446Z [159503] Checking whether to label PR as stale. 2025-12-04T08:42:38.9845432Z [159503] Skipping because PR was updated recently 2025-12-04T08:42:38.9846331Z ##[endgroup] 2025-12-04T08:42:38.9847011Z ##[group]Processing PR #159523 2025-12-04T08:42:38.9847674Z [159523] URL: https://github.com/pytorch/pytorch/pull/159523 2025-12-04T08:42:38.9848387Z [159523] Checking whether to label PR as stale. 2025-12-04T08:42:38.9849061Z [159523] Skipping because PR was updated recently 2025-12-04T08:42:38.9849922Z ##[endgroup] 2025-12-04T08:42:38.9850543Z ##[group]Processing PR #159544 2025-12-04T08:42:38.9851128Z [159544] URL: https://github.com/pytorch/pytorch/pull/159544 2025-12-04T08:42:38.9852034Z [159544] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9852710Z [159544] Skipping because PR was updated recently 2025-12-04T08:42:38.9853543Z ##[endgroup] 2025-12-04T08:42:38.9854187Z ##[group]Processing PR #159682 2025-12-04T08:42:38.9854814Z [159682] URL: https://github.com/pytorch/pytorch/pull/159682 2025-12-04T08:42:38.9855495Z [159682] Checking whether to label PR as stale. 2025-12-04T08:42:38.9856152Z [159682] Skipping because PR was updated recently 2025-12-04T08:42:38.9857029Z ##[endgroup] 2025-12-04T08:42:38.9857754Z ##[group]Processing PR #159718 2025-12-04T08:42:38.9858398Z [159718] URL: https://github.com/pytorch/pytorch/pull/159718 2025-12-04T08:42:38.9859532Z [159718] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9860330Z [159718] Skipping because PR was updated recently 2025-12-04T08:42:38.9861257Z ##[endgroup] 2025-12-04T08:42:38.9861924Z ##[group]Processing PR #159767 2025-12-04T08:42:38.9862510Z [159767] URL: https://github.com/pytorch/pytorch/pull/159767 2025-12-04T08:42:38.9863268Z [159767] Checking whether to label PR as stale. 2025-12-04T08:42:38.9863841Z [159767] Skipping because PR was updated recently 2025-12-04T08:42:38.9864665Z ##[endgroup] 2025-12-04T08:42:38.9865307Z ##[group]Processing PR #159797 2025-12-04T08:42:38.9865885Z [159797] URL: https://github.com/pytorch/pytorch/pull/159797 2025-12-04T08:42:38.9866688Z [159797] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9867402Z [159797] Skipping because PR was updated recently 2025-12-04T08:42:38.9868215Z ##[endgroup] 2025-12-04T08:42:38.9868868Z ##[group]Processing PR #159808 2025-12-04T08:42:38.9869517Z [159808] URL: https://github.com/pytorch/pytorch/pull/159808 2025-12-04T08:42:38.9870381Z [159808] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:38.9871158Z [159808] Skipping because PR was updated recently 2025-12-04T08:42:38.9872062Z ##[endgroup] 2025-12-04T08:42:38.9872759Z ##[group]Processing PR #159828 2025-12-04T08:42:38.9873375Z [159828] URL: https://github.com/pytorch/pytorch/pull/159828 2025-12-04T08:42:38.9874067Z [159828] Skipping because PR has an exempting label. 2025-12-04T08:42:38.9874881Z ##[endgroup] 2025-12-04T08:42:38.9875522Z ##[group]Processing PR #159835 2025-12-04T08:42:38.9876101Z [159835] URL: https://github.com/pytorch/pytorch/pull/159835 2025-12-04T08:42:38.9876809Z [159835] Checking whether to label PR as stale. 2025-12-04T08:42:38.9877439Z [159835] Skipping because PR was updated recently 2025-12-04T08:42:38.9878335Z ##[endgroup] 2025-12-04T08:42:40.9457238Z ##[group]Processing PR #159850 2025-12-04T08:42:40.9458699Z [159850] URL: https://github.com/pytorch/pytorch/pull/159850 2025-12-04T08:42:40.9459853Z [159850] Checking whether to label PR as stale. 2025-12-04T08:42:40.9461325Z [159850] Skipping because PR was updated recently 2025-12-04T08:42:40.9462551Z ##[endgroup] 2025-12-04T08:42:40.9463964Z ##[group]Processing PR #159861 2025-12-04T08:42:40.9464872Z [159861] URL: https://github.com/pytorch/pytorch/pull/159861 2025-12-04T08:42:40.9465868Z [159861] Checking whether to label PR as stale. 2025-12-04T08:42:40.9466826Z [159861] Skipping because PR was updated recently 2025-12-04T08:42:40.9467908Z ##[endgroup] 2025-12-04T08:42:40.9468839Z ##[group]Processing PR #159862 2025-12-04T08:42:40.9525801Z [159862] URL: https://github.com/pytorch/pytorch/pull/159862 2025-12-04T08:42:40.9527007Z [159862] Checking whether to label PR as stale. 2025-12-04T08:42:40.9527655Z [159862] Skipping because PR was updated recently 2025-12-04T08:42:40.9528635Z ##[endgroup] 2025-12-04T08:42:40.9551959Z ##[group]Processing PR #159876 2025-12-04T08:42:40.9552635Z [159876] URL: https://github.com/pytorch/pytorch/pull/159876 2025-12-04T08:42:40.9553465Z [159876] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9554250Z [159876] Skipping because PR was updated recently 2025-12-04T08:42:40.9555132Z ##[endgroup] 2025-12-04T08:42:40.9555754Z ##[group]Processing PR #159893 2025-12-04T08:42:40.9556299Z [159893] URL: https://github.com/pytorch/pytorch/pull/159893 2025-12-04T08:42:40.9557108Z [159893] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9557765Z [159893] Skipping because PR was updated recently 2025-12-04T08:42:40.9558606Z ##[endgroup] 2025-12-04T08:42:40.9559227Z ##[group]Processing PR #159936 2025-12-04T08:42:40.9559789Z [159936] URL: https://github.com/pytorch/pytorch/pull/159936 2025-12-04T08:42:40.9560434Z [159936] Checking whether to label PR as stale. 2025-12-04T08:42:40.9560946Z [159936] Skipping because PR was updated recently 2025-12-04T08:42:40.9561758Z ##[endgroup] 2025-12-04T08:42:40.9562404Z ##[group]Processing PR #160061 2025-12-04T08:42:40.9563459Z [160061] URL: https://github.com/pytorch/pytorch/pull/160061 2025-12-04T08:42:40.9564307Z [160061] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9565063Z [160061] Skipping because PR was updated recently 2025-12-04T08:42:40.9565964Z ##[endgroup] 2025-12-04T08:42:40.9566680Z ##[group]Processing PR #160063 2025-12-04T08:42:40.9567303Z [160063] URL: https://github.com/pytorch/pytorch/pull/160063 2025-12-04T08:42:40.9568008Z [160063] Checking whether to label PR as stale. 2025-12-04T08:42:40.9568682Z [160063] Skipping because PR was updated recently 2025-12-04T08:42:40.9569520Z ##[endgroup] 2025-12-04T08:42:40.9570214Z ##[group]Processing PR #160076 2025-12-04T08:42:40.9570893Z [160076] URL: https://github.com/pytorch/pytorch/pull/160076 2025-12-04T08:42:40.9571798Z [160076] Checking whether to label PR as stale. 2025-12-04T08:42:40.9572469Z [160076] Skipping because PR was updated recently 2025-12-04T08:42:40.9573408Z ##[endgroup] 2025-12-04T08:42:40.9574114Z ##[group]Processing PR #160080 2025-12-04T08:42:40.9574818Z [160080] URL: https://github.com/pytorch/pytorch/pull/160080 2025-12-04T08:42:40.9575687Z [160080] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9576502Z [160080] Skipping because PR was updated recently 2025-12-04T08:42:40.9577308Z ##[endgroup] 2025-12-04T08:42:40.9577981Z ##[group]Processing PR #160082 2025-12-04T08:42:40.9578635Z [160082] URL: https://github.com/pytorch/pytorch/pull/160082 2025-12-04T08:42:40.9579512Z [160082] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9580324Z [160082] Skipping because PR was updated recently 2025-12-04T08:42:40.9581262Z ##[endgroup] 2025-12-04T08:42:40.9581909Z ##[group]Processing PR #160105 2025-12-04T08:42:40.9582472Z [160105] URL: https://github.com/pytorch/pytorch/pull/160105 2025-12-04T08:42:40.9583163Z [160105] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9583776Z [160105] Skipping because PR was updated recently 2025-12-04T08:42:40.9584537Z ##[endgroup] 2025-12-04T08:42:40.9585152Z ##[group]Processing PR #160174 2025-12-04T08:42:40.9585697Z [160174] URL: https://github.com/pytorch/pytorch/pull/160174 2025-12-04T08:42:40.9586331Z [160174] Checking whether to label PR as stale. 2025-12-04T08:42:40.9586920Z [160174] Skipping because PR was updated recently 2025-12-04T08:42:40.9587697Z ##[endgroup] 2025-12-04T08:42:40.9588297Z ##[group]Processing PR #160180 2025-12-04T08:42:40.9588869Z [160180] URL: https://github.com/pytorch/pytorch/pull/160180 2025-12-04T08:42:40.9589521Z [160180] Checking whether to label PR as stale. 2025-12-04T08:42:40.9590093Z [160180] Skipping because PR was updated recently 2025-12-04T08:42:40.9591217Z ##[endgroup] 2025-12-04T08:42:40.9591754Z ##[group]Processing PR #160182 2025-12-04T08:42:40.9592266Z [160182] URL: https://github.com/pytorch/pytorch/pull/160182 2025-12-04T08:42:40.9592911Z [160182] Skipping because PR has an exempting label. 2025-12-04T08:42:40.9593721Z ##[endgroup] 2025-12-04T08:42:40.9594352Z ##[group]Processing PR #160184 2025-12-04T08:42:40.9594977Z [160184] URL: https://github.com/pytorch/pytorch/pull/160184 2025-12-04T08:42:40.9595465Z [160184] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9595894Z [160184] Skipping because PR was updated recently 2025-12-04T08:42:40.9596396Z ##[endgroup] 2025-12-04T08:42:40.9596791Z ##[group]Processing PR #160209 2025-12-04T08:42:40.9597145Z [160209] URL: https://github.com/pytorch/pytorch/pull/160209 2025-12-04T08:42:40.9597581Z [160209] Skipping because PR has an exempting label. 2025-12-04T08:42:40.9598087Z ##[endgroup] 2025-12-04T08:42:40.9598581Z ##[group]Processing PR #160219 2025-12-04T08:42:40.9598968Z [160219] URL: https://github.com/pytorch/pytorch/pull/160219 2025-12-04T08:42:40.9599445Z [160219] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9599873Z [160219] Skipping because PR was updated recently 2025-12-04T08:42:40.9600365Z ##[endgroup] 2025-12-04T08:42:40.9600754Z ##[group]Processing PR #160224 2025-12-04T08:42:40.9601296Z [160224] URL: https://github.com/pytorch/pytorch/pull/160224 2025-12-04T08:42:40.9601727Z [160224] Checking whether to label PR as stale. 2025-12-04T08:42:40.9602091Z [160224] Skipping because PR was updated recently 2025-12-04T08:42:40.9602583Z ##[endgroup] 2025-12-04T08:42:40.9602978Z ##[group]Processing PR #160229 2025-12-04T08:42:40.9603341Z [160229] URL: https://github.com/pytorch/pytorch/pull/160229 2025-12-04T08:42:40.9603750Z [160229] Checking whether to label PR as stale. 2025-12-04T08:42:40.9604126Z [160229] Skipping because PR was updated recently 2025-12-04T08:42:40.9604620Z ##[endgroup] 2025-12-04T08:42:40.9604992Z ##[group]Processing PR #160258 2025-12-04T08:42:40.9605359Z [160258] URL: https://github.com/pytorch/pytorch/pull/160258 2025-12-04T08:42:40.9605831Z [160258] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9606254Z [160258] Skipping because PR was updated recently 2025-12-04T08:42:40.9606737Z ##[endgroup] 2025-12-04T08:42:40.9607128Z ##[group]Processing PR #160266 2025-12-04T08:42:40.9607476Z [160266] URL: https://github.com/pytorch/pytorch/pull/160266 2025-12-04T08:42:40.9607895Z [160266] Checking whether to label PR as stale. 2025-12-04T08:42:40.9608261Z [160266] Skipping because PR was updated recently 2025-12-04T08:42:40.9608747Z ##[endgroup] 2025-12-04T08:42:40.9609320Z ##[group]Processing PR #160279 2025-12-04T08:42:40.9609696Z [160279] URL: https://github.com/pytorch/pytorch/pull/160279 2025-12-04T08:42:40.9610107Z [160279] Checking whether to label PR as stale. 2025-12-04T08:42:40.9610487Z [160279] Skipping because PR was updated recently 2025-12-04T08:42:40.9610994Z ##[endgroup] 2025-12-04T08:42:40.9611478Z ##[group]Processing PR #160372 2025-12-04T08:42:40.9611847Z [160372] URL: https://github.com/pytorch/pytorch/pull/160372 2025-12-04T08:42:40.9612307Z [160372] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9612746Z [160372] Skipping because PR was updated recently 2025-12-04T08:42:40.9613240Z ##[endgroup] 2025-12-04T08:42:40.9613626Z ##[group]Processing PR #160406 2025-12-04T08:42:40.9613979Z [160406] URL: https://github.com/pytorch/pytorch/pull/160406 2025-12-04T08:42:40.9614453Z [160406] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9614877Z [160406] Skipping because PR was updated recently 2025-12-04T08:42:40.9615365Z ##[endgroup] 2025-12-04T08:42:40.9615751Z ##[group]Processing PR #160488 2025-12-04T08:42:40.9616118Z [160488] URL: https://github.com/pytorch/pytorch/pull/160488 2025-12-04T08:42:40.9616524Z [160488] Checking whether to label PR as stale. 2025-12-04T08:42:40.9617059Z [160488] Skipping because PR was updated recently 2025-12-04T08:42:40.9617547Z ##[endgroup] 2025-12-04T08:42:40.9617925Z ##[group]Processing PR #160509 2025-12-04T08:42:40.9618296Z [160509] URL: https://github.com/pytorch/pytorch/pull/160509 2025-12-04T08:42:40.9618709Z [160509] Checking whether to label PR as stale. 2025-12-04T08:42:40.9619084Z [160509] Skipping because PR was updated recently 2025-12-04T08:42:40.9619577Z ##[endgroup] 2025-12-04T08:42:40.9619962Z ##[group]Processing PR #160555 2025-12-04T08:42:40.9620313Z [160555] URL: https://github.com/pytorch/pytorch/pull/160555 2025-12-04T08:42:40.9620788Z [160555] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9621210Z [160555] Skipping because PR was updated recently 2025-12-04T08:42:40.9621697Z ##[endgroup] 2025-12-04T08:42:40.9622089Z ##[group]Processing PR #160580 2025-12-04T08:42:40.9622475Z [160580] URL: https://github.com/pytorch/pytorch/pull/160580 2025-12-04T08:42:40.9622942Z [160580] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9623384Z [160580] Skipping because PR was updated recently 2025-12-04T08:42:40.9623878Z ##[endgroup] 2025-12-04T08:42:40.9624282Z ##[group]Processing PR #160585 2025-12-04T08:42:40.9624653Z [160585] URL: https://github.com/pytorch/pytorch/pull/160585 2025-12-04T08:42:40.9625077Z [160585] Checking whether to label PR as stale. 2025-12-04T08:42:40.9625522Z [160585] Skipping because PR was updated recently 2025-12-04T08:42:40.9626017Z ##[endgroup] 2025-12-04T08:42:40.9626410Z ##[group]Processing PR #160610 2025-12-04T08:42:40.9626767Z [160610] URL: https://github.com/pytorch/pytorch/pull/160610 2025-12-04T08:42:40.9627196Z [160610] Checking whether to label PR as stale. 2025-12-04T08:42:40.9627560Z [160610] Skipping because PR was updated recently 2025-12-04T08:42:40.9628049Z ##[endgroup] 2025-12-04T08:42:40.9628439Z ##[group]Processing PR #160611 2025-12-04T08:42:40.9628807Z [160611] URL: https://github.com/pytorch/pytorch/pull/160611 2025-12-04T08:42:40.9629223Z [160611] Checking whether to label PR as stale. 2025-12-04T08:42:40.9629601Z [160611] Skipping because PR was updated recently 2025-12-04T08:42:40.9630088Z ##[endgroup] 2025-12-04T08:42:40.9630457Z ##[group]Processing PR #160624 2025-12-04T08:42:40.9630819Z [160624] URL: https://github.com/pytorch/pytorch/pull/160624 2025-12-04T08:42:40.9631295Z [160624] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9631717Z [160624] Skipping because PR was updated recently 2025-12-04T08:42:40.9632204Z ##[endgroup] 2025-12-04T08:42:40.9632590Z ##[group]Processing PR #160638 2025-12-04T08:42:40.9632942Z [160638] URL: https://github.com/pytorch/pytorch/pull/160638 2025-12-04T08:42:40.9633382Z [160638] Skipping because PR has an exempting label. 2025-12-04T08:42:40.9634313Z ##[endgroup] 2025-12-04T08:42:40.9634704Z ##[group]Processing PR #160641 2025-12-04T08:42:40.9635080Z [160641] URL: https://github.com/pytorch/pytorch/pull/160641 2025-12-04T08:42:40.9635504Z [160641] Checking whether to label PR as stale. 2025-12-04T08:42:40.9635876Z [160641] Skipping because PR was updated recently 2025-12-04T08:42:40.9636365Z ##[endgroup] 2025-12-04T08:42:40.9636756Z ##[group]Processing PR #160667 2025-12-04T08:42:40.9637108Z [160667] URL: https://github.com/pytorch/pytorch/pull/160667 2025-12-04T08:42:40.9637530Z [160667] Checking whether to label PR as stale. 2025-12-04T08:42:40.9637895Z [160667] Skipping because PR was updated recently 2025-12-04T08:42:40.9638379Z ##[endgroup] 2025-12-04T08:42:40.9638763Z ##[group]Processing PR #160685 2025-12-04T08:42:40.9639127Z [160685] URL: https://github.com/pytorch/pytorch/pull/160685 2025-12-04T08:42:40.9639533Z [160685] Checking whether to label PR as stale. 2025-12-04T08:42:40.9639904Z [160685] Skipping because PR was updated recently 2025-12-04T08:42:40.9640391Z ##[endgroup] 2025-12-04T08:42:40.9640766Z ##[group]Processing PR #160686 2025-12-04T08:42:40.9641132Z [160686] URL: https://github.com/pytorch/pytorch/pull/160686 2025-12-04T08:42:40.9641744Z [160686] Checking whether to label PR as stale. 2025-12-04T08:42:40.9642112Z [160686] Skipping because PR was updated recently 2025-12-04T08:42:40.9642609Z ##[endgroup] 2025-12-04T08:42:40.9643011Z ##[group]Processing PR #160687 2025-12-04T08:42:40.9643367Z [160687] URL: https://github.com/pytorch/pytorch/pull/160687 2025-12-04T08:42:40.9643789Z [160687] Checking whether to label PR as stale. 2025-12-04T08:42:40.9644155Z [160687] Skipping because PR was updated recently 2025-12-04T08:42:40.9644639Z ##[endgroup] 2025-12-04T08:42:40.9645024Z ##[group]Processing PR #160688 2025-12-04T08:42:40.9645385Z [160688] URL: https://github.com/pytorch/pytorch/pull/160688 2025-12-04T08:42:40.9645789Z [160688] Checking whether to label PR as stale. 2025-12-04T08:42:40.9646164Z [160688] Skipping because PR was updated recently 2025-12-04T08:42:40.9646648Z ##[endgroup] 2025-12-04T08:42:40.9647018Z ##[group]Processing PR #160692 2025-12-04T08:42:40.9647383Z [160692] URL: https://github.com/pytorch/pytorch/pull/160692 2025-12-04T08:42:40.9647791Z [160692] Checking whether to label PR as stale. 2025-12-04T08:42:40.9648165Z [160692] Skipping because PR was updated recently 2025-12-04T08:42:40.9648651Z ##[endgroup] 2025-12-04T08:42:40.9649041Z ##[group]Processing PR #160706 2025-12-04T08:42:40.9649391Z [160706] URL: https://github.com/pytorch/pytorch/pull/160706 2025-12-04T08:42:40.9649914Z [160706] Checking whether to label PR as stale. 2025-12-04T08:42:40.9650281Z [160706] Skipping because PR was updated recently 2025-12-04T08:42:40.9650769Z ##[endgroup] 2025-12-04T08:42:40.9651155Z ##[group]Processing PR #160711 2025-12-04T08:42:40.9651634Z [160711] URL: https://github.com/pytorch/pytorch/pull/160711 2025-12-04T08:42:40.9652114Z [160711] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9652554Z [160711] Skipping because PR was updated recently 2025-12-04T08:42:40.9653041Z ##[endgroup] 2025-12-04T08:42:40.9653435Z ##[group]Processing PR #160729 2025-12-04T08:42:40.9653807Z [160729] URL: https://github.com/pytorch/pytorch/pull/160729 2025-12-04T08:42:40.9654224Z [160729] Checking whether to label PR as stale. 2025-12-04T08:42:40.9654605Z [160729] Skipping because PR was updated recently 2025-12-04T08:42:40.9655093Z ##[endgroup] 2025-12-04T08:42:40.9655478Z ##[group]Processing PR #160733 2025-12-04T08:42:40.9655830Z [160733] URL: https://github.com/pytorch/pytorch/pull/160733 2025-12-04T08:42:40.9656252Z [160733] Checking whether to label PR as stale. 2025-12-04T08:42:40.9656615Z [160733] Skipping because PR was updated recently 2025-12-04T08:42:40.9657101Z ##[endgroup] 2025-12-04T08:42:40.9657487Z ##[group]Processing PR #160750 2025-12-04T08:42:40.9657841Z [160750] URL: https://github.com/pytorch/pytorch/pull/160750 2025-12-04T08:42:40.9658320Z [160750] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9658759Z [160750] Skipping because PR was updated recently 2025-12-04T08:42:40.9659238Z ##[endgroup] 2025-12-04T08:42:40.9659633Z ##[group]Processing PR #160758 2025-12-04T08:42:40.9660007Z [160758] URL: https://github.com/pytorch/pytorch/pull/160758 2025-12-04T08:42:40.9660471Z [160758] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9660910Z [160758] Skipping because PR was updated recently 2025-12-04T08:42:40.9661405Z ##[endgroup] 2025-12-04T08:42:40.9661801Z ##[group]Processing PR #160767 2025-12-04T08:42:40.9662161Z [160767] URL: https://github.com/pytorch/pytorch/pull/160767 2025-12-04T08:42:40.9662641Z [160767] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9663069Z [160767] Skipping because PR was updated recently 2025-12-04T08:42:40.9663561Z ##[endgroup] 2025-12-04T08:42:40.9663951Z ##[group]Processing PR #160772 2025-12-04T08:42:40.9664305Z [160772] URL: https://github.com/pytorch/pytorch/pull/160772 2025-12-04T08:42:40.9664728Z [160772] Checking whether to label PR as stale. 2025-12-04T08:42:40.9665110Z [160772] Skipping because PR was updated recently 2025-12-04T08:42:40.9665582Z ##[endgroup] 2025-12-04T08:42:40.9666060Z ##[group]Processing PR #160860 2025-12-04T08:42:40.9666428Z [160860] URL: https://github.com/pytorch/pytorch/pull/160860 2025-12-04T08:42:40.9666834Z [160860] Checking whether to label PR as stale. 2025-12-04T08:42:40.9667208Z [160860] Skipping because PR was updated recently 2025-12-04T08:42:40.9667695Z ##[endgroup] 2025-12-04T08:42:40.9668067Z ##[group]Processing PR #160872 2025-12-04T08:42:40.9668436Z [160872] URL: https://github.com/pytorch/pytorch/pull/160872 2025-12-04T08:42:40.9668874Z [160872] Skipping because PR has an exempting label. 2025-12-04T08:42:40.9669360Z ##[endgroup] 2025-12-04T08:42:40.9669744Z ##[group]Processing PR #160878 2025-12-04T08:42:40.9670107Z [160878] URL: https://github.com/pytorch/pytorch/pull/160878 2025-12-04T08:42:40.9670532Z [160878] Skipping because PR has an exempting label. 2025-12-04T08:42:40.9671031Z ##[endgroup] 2025-12-04T08:42:40.9671416Z ##[group]Processing PR #160883 2025-12-04T08:42:40.9671783Z [160883] URL: https://github.com/pytorch/pytorch/pull/160883 2025-12-04T08:42:40.9672210Z [160883] Skipping because PR has an exempting label. 2025-12-04T08:42:40.9672707Z ##[endgroup] 2025-12-04T08:42:40.9673090Z ##[group]Processing PR #160888 2025-12-04T08:42:40.9673441Z [160888] URL: https://github.com/pytorch/pytorch/pull/160888 2025-12-04T08:42:40.9673875Z [160888] Skipping because PR has an exempting label. 2025-12-04T08:42:40.9674369Z ##[endgroup] 2025-12-04T08:42:40.9674816Z ##[group]Processing PR #160897 2025-12-04T08:42:40.9675186Z [160897] URL: https://github.com/pytorch/pytorch/pull/160897 2025-12-04T08:42:40.9675668Z [160897] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9676098Z [160897] Skipping because PR was updated recently 2025-12-04T08:42:40.9676593Z ##[endgroup] 2025-12-04T08:42:40.9676986Z ##[group]Processing PR #160903 2025-12-04T08:42:40.9677340Z [160903] URL: https://github.com/pytorch/pytorch/pull/160903 2025-12-04T08:42:40.9677760Z [160903] Checking whether to label PR as stale. 2025-12-04T08:42:40.9678127Z [160903] Skipping because PR was updated recently 2025-12-04T08:42:40.9678613Z ##[endgroup] 2025-12-04T08:42:40.9678996Z ##[group]Processing PR #160913 2025-12-04T08:42:40.9679362Z [160913] URL: https://github.com/pytorch/pytorch/pull/160913 2025-12-04T08:42:40.9679766Z [160913] Checking whether to label PR as stale. 2025-12-04T08:42:40.9680144Z [160913] Skipping because PR was updated recently 2025-12-04T08:42:40.9680635Z ##[endgroup] 2025-12-04T08:42:40.9681005Z ##[group]Processing PR #160945 2025-12-04T08:42:40.9681368Z [160945] URL: https://github.com/pytorch/pytorch/pull/160945 2025-12-04T08:42:40.9681785Z [160945] Checking whether to label PR as stale. 2025-12-04T08:42:40.9682143Z [160945] Skipping because PR was updated recently 2025-12-04T08:42:40.9682629Z ##[endgroup] 2025-12-04T08:42:40.9683011Z ##[group]Processing PR #160961 2025-12-04T08:42:40.9683363Z [160961] URL: https://github.com/pytorch/pytorch/pull/160961 2025-12-04T08:42:40.9683832Z [160961] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9684258Z [160961] Skipping because PR was updated recently 2025-12-04T08:42:40.9684748Z ##[endgroup] 2025-12-04T08:42:40.9685134Z ##[group]Processing PR #160977 2025-12-04T08:42:40.9685498Z [160977] URL: https://github.com/pytorch/pytorch/pull/160977 2025-12-04T08:42:40.9685958Z [160977] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9686404Z [160977] Skipping because PR was updated recently 2025-12-04T08:42:40.9686892Z ##[endgroup] 2025-12-04T08:42:40.9687266Z ##[group]Processing PR #161000 2025-12-04T08:42:40.9687631Z [161000] URL: https://github.com/pytorch/pytorch/pull/161000 2025-12-04T08:42:40.9688098Z [161000] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9688535Z [161000] Skipping because PR was updated recently 2025-12-04T08:42:40.9689024Z ##[endgroup] 2025-12-04T08:42:40.9689410Z ##[group]Processing PR #161017 2025-12-04T08:42:40.9689761Z [161017] URL: https://github.com/pytorch/pytorch/pull/161017 2025-12-04T08:42:40.9690321Z [161017] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9690744Z [161017] Skipping because PR was updated recently 2025-12-04T08:42:40.9691233Z ##[endgroup] 2025-12-04T08:42:40.9691753Z ##[group]Processing PR #161033 2025-12-04T08:42:40.9692126Z [161033] URL: https://github.com/pytorch/pytorch/pull/161033 2025-12-04T08:42:40.9692576Z [161033] Skipping because PR has an exempting label. 2025-12-04T08:42:40.9693079Z ##[endgroup] 2025-12-04T08:42:40.9693472Z ##[group]Processing PR #161041 2025-12-04T08:42:40.9693828Z [161041] URL: https://github.com/pytorch/pytorch/pull/161041 2025-12-04T08:42:40.9694300Z [161041] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9694725Z [161041] Skipping because PR was updated recently 2025-12-04T08:42:40.9695225Z ##[endgroup] 2025-12-04T08:42:40.9695621Z ##[group]Processing PR #161044 2025-12-04T08:42:40.9695987Z [161044] URL: https://github.com/pytorch/pytorch/pull/161044 2025-12-04T08:42:40.9696401Z [161044] Checking whether to label PR as stale. 2025-12-04T08:42:40.9696781Z [161044] Skipping because PR was updated recently 2025-12-04T08:42:40.9697278Z ##[endgroup] 2025-12-04T08:42:40.9697654Z ##[group]Processing PR #161045 2025-12-04T08:42:40.9698020Z [161045] URL: https://github.com/pytorch/pytorch/pull/161045 2025-12-04T08:42:40.9698441Z [161045] Checking whether to label PR as stale. 2025-12-04T08:42:40.9698883Z [161045] Skipping because PR was updated recently 2025-12-04T08:42:40.9699551Z ##[endgroup] 2025-12-04T08:42:40.9700079Z ##[group]Processing PR #161094 2025-12-04T08:42:40.9700774Z [161094] URL: https://github.com/pytorch/pytorch/pull/161094 2025-12-04T08:42:40.9701351Z [161094] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9701848Z [161094] Skipping because PR was updated recently 2025-12-04T08:42:40.9713049Z ##[endgroup] 2025-12-04T08:42:40.9713709Z ##[group]Processing PR #161155 2025-12-04T08:42:40.9714108Z [161155] URL: https://github.com/pytorch/pytorch/pull/161155 2025-12-04T08:42:40.9714557Z [161155] Checking whether to label PR as stale. 2025-12-04T08:42:40.9714942Z [161155] Skipping because PR was updated recently 2025-12-04T08:42:40.9715447Z ##[endgroup] 2025-12-04T08:42:40.9715843Z ##[group]Processing PR #161156 2025-12-04T08:42:40.9716206Z [161156] URL: https://github.com/pytorch/pytorch/pull/161156 2025-12-04T08:42:40.9716640Z [161156] Checking whether to label PR as stale. 2025-12-04T08:42:40.9717008Z [161156] Skipping because PR was updated recently 2025-12-04T08:42:40.9717499Z ##[endgroup] 2025-12-04T08:42:40.9717890Z ##[group]Processing PR #161157 2025-12-04T08:42:40.9718446Z [161157] URL: https://github.com/pytorch/pytorch/pull/161157 2025-12-04T08:42:40.9718860Z [161157] Checking whether to label PR as stale. 2025-12-04T08:42:40.9719241Z [161157] Skipping because PR was updated recently 2025-12-04T08:42:40.9719734Z ##[endgroup] 2025-12-04T08:42:40.9720128Z ##[group]Processing PR #161158 2025-12-04T08:42:40.9720485Z [161158] URL: https://github.com/pytorch/pytorch/pull/161158 2025-12-04T08:42:40.9720915Z [161158] Checking whether to label PR as stale. 2025-12-04T08:42:40.9721277Z [161158] Skipping because PR was updated recently 2025-12-04T08:42:40.9721768Z ##[endgroup] 2025-12-04T08:42:40.9722155Z ##[group]Processing PR #161161 2025-12-04T08:42:40.9722521Z [161161] URL: https://github.com/pytorch/pytorch/pull/161161 2025-12-04T08:42:40.9722935Z [161161] Checking whether to label PR as stale. 2025-12-04T08:42:40.9723313Z [161161] Skipping because PR was updated recently 2025-12-04T08:42:40.9723787Z ##[endgroup] 2025-12-04T08:42:40.9724177Z ##[group]Processing PR #161213 2025-12-04T08:42:40.9724543Z [161213] URL: https://github.com/pytorch/pytorch/pull/161213 2025-12-04T08:42:40.9724951Z [161213] Checking whether to label PR as stale. 2025-12-04T08:42:40.9725327Z [161213] Skipping because PR was updated recently 2025-12-04T08:42:40.9725815Z ##[endgroup] 2025-12-04T08:42:40.9726206Z ##[group]Processing PR #161237 2025-12-04T08:42:40.9726558Z [161237] URL: https://github.com/pytorch/pytorch/pull/161237 2025-12-04T08:42:40.9727134Z [161237] Checking whether to label PR as stale. 2025-12-04T08:42:40.9727501Z [161237] Skipping because PR was updated recently 2025-12-04T08:42:40.9727995Z ##[endgroup] 2025-12-04T08:42:40.9728389Z ##[group]Processing PR #161246 2025-12-04T08:42:40.9728745Z [161246] URL: https://github.com/pytorch/pytorch/pull/161246 2025-12-04T08:42:40.9729172Z [161246] Checking whether to label PR as stale. 2025-12-04T08:42:40.9729556Z [161246] Skipping because PR was updated recently 2025-12-04T08:42:40.9730030Z ##[endgroup] 2025-12-04T08:42:40.9730419Z ##[group]Processing PR #161254 2025-12-04T08:42:40.9730784Z [161254] URL: https://github.com/pytorch/pytorch/pull/161254 2025-12-04T08:42:40.9731368Z [161254] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9731826Z [161254] Skipping because PR was updated recently 2025-12-04T08:42:40.9732327Z ##[endgroup] 2025-12-04T08:42:40.9732726Z ##[group]Processing PR #161359 2025-12-04T08:42:40.9733086Z [161359] URL: https://github.com/pytorch/pytorch/pull/161359 2025-12-04T08:42:40.9733563Z [161359] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9734455Z [161359] Skipping because PR was updated recently 2025-12-04T08:42:40.9734962Z ##[endgroup] 2025-12-04T08:42:40.9735355Z ##[group]Processing PR #161374 2025-12-04T08:42:40.9735927Z [161374] URL: https://github.com/pytorch/pytorch/pull/161374 2025-12-04T08:42:40.9736409Z [161374] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9736849Z [161374] Skipping because PR was updated recently 2025-12-04T08:42:40.9737331Z ##[endgroup] 2025-12-04T08:42:40.9737723Z ##[group]Processing PR #161397 2025-12-04T08:42:40.9738092Z [161397] URL: https://github.com/pytorch/pytorch/pull/161397 2025-12-04T08:42:40.9738502Z [161397] Checking whether to label PR as stale. 2025-12-04T08:42:40.9738880Z [161397] Skipping because PR was updated recently 2025-12-04T08:42:40.9739375Z ##[endgroup] 2025-12-04T08:42:40.9739760Z ##[group]Processing PR #161462 2025-12-04T08:42:40.9740127Z [161462] URL: https://github.com/pytorch/pytorch/pull/161462 2025-12-04T08:42:40.9740606Z [161462] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9741029Z [161462] Skipping because PR was updated recently 2025-12-04T08:42:40.9741515Z ##[endgroup] 2025-12-04T08:42:40.9741912Z ##[group]Processing PR #161472 2025-12-04T08:42:40.9742269Z [161472] URL: https://github.com/pytorch/pytorch/pull/161472 2025-12-04T08:42:40.9742692Z [161472] Checking whether to label PR as stale. 2025-12-04T08:42:40.9743058Z [161472] Skipping because PR was updated recently 2025-12-04T08:42:40.9743547Z ##[endgroup] 2025-12-04T08:42:40.9743941Z ##[group]Processing PR #161495 2025-12-04T08:42:40.9744313Z [161495] URL: https://github.com/pytorch/pytorch/pull/161495 2025-12-04T08:42:40.9744722Z [161495] Checking whether to label PR as stale. 2025-12-04T08:42:40.9745100Z [161495] Skipping because PR was updated recently 2025-12-04T08:42:40.9745597Z ##[endgroup] 2025-12-04T08:42:40.9745977Z ##[group]Processing PR #161512 2025-12-04T08:42:40.9746348Z [161512] URL: https://github.com/pytorch/pytorch/pull/161512 2025-12-04T08:42:40.9746772Z [161512] Checking whether to label PR as stale. 2025-12-04T08:42:40.9747136Z [161512] Skipping because PR was updated recently 2025-12-04T08:42:40.9747629Z ##[endgroup] 2025-12-04T08:42:40.9748027Z ##[group]Processing PR #161534 2025-12-04T08:42:40.9748383Z [161534] URL: https://github.com/pytorch/pytorch/pull/161534 2025-12-04T08:42:40.9748860Z [161534] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9749287Z [161534] Skipping because PR was updated recently 2025-12-04T08:42:40.9749787Z ##[endgroup] 2025-12-04T08:42:40.9750174Z ##[group]Processing PR #161547 2025-12-04T08:42:40.9750529Z [161547] URL: https://github.com/pytorch/pytorch/pull/161547 2025-12-04T08:42:40.9751007Z [161547] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9751873Z [161547] Skipping because PR was updated recently 2025-12-04T08:42:40.9752373Z ##[endgroup] 2025-12-04T08:42:40.9752777Z ##[group]Processing PR #161564 2025-12-04T08:42:40.9753151Z [161564] URL: https://github.com/pytorch/pytorch/pull/161564 2025-12-04T08:42:40.9753616Z [161564] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9754061Z [161564] Skipping because PR was updated recently 2025-12-04T08:42:40.9754547Z ##[endgroup] 2025-12-04T08:42:40.9754930Z ##[group]Processing PR #161607 2025-12-04T08:42:40.9755280Z [161607] URL: https://github.com/pytorch/pytorch/pull/161607 2025-12-04T08:42:40.9755755Z [161607] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9756174Z [161607] Skipping because PR was updated recently 2025-12-04T08:42:40.9756660Z ##[endgroup] 2025-12-04T08:42:40.9757147Z ##[group]Processing PR #161635 2025-12-04T08:42:40.9757502Z [161635] URL: https://github.com/pytorch/pytorch/pull/161635 2025-12-04T08:42:40.9757979Z [161635] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9758423Z [161635] Skipping because PR was updated recently 2025-12-04T08:42:40.9758909Z ##[endgroup] 2025-12-04T08:42:40.9759428Z ##[group]Processing PR #161652 2025-12-04T08:42:40.9759798Z [161652] URL: https://github.com/pytorch/pytorch/pull/161652 2025-12-04T08:42:40.9760350Z [161652] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9760787Z [161652] Skipping because PR was updated recently 2025-12-04T08:42:40.9761286Z ##[endgroup] 2025-12-04T08:42:40.9761660Z ##[group]Processing PR #161665 2025-12-04T08:42:40.9762030Z [161665] URL: https://github.com/pytorch/pytorch/pull/161665 2025-12-04T08:42:40.9762831Z [161665] Checking whether to label PR as stale. 2025-12-04T08:42:40.9763199Z [161665] Skipping because PR was updated recently 2025-12-04T08:42:40.9763701Z ##[endgroup] 2025-12-04T08:42:40.9764096Z ##[group]Processing PR #161674 2025-12-04T08:42:40.9764451Z [161674] URL: https://github.com/pytorch/pytorch/pull/161674 2025-12-04T08:42:40.9764936Z [161674] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9765362Z [161674] Skipping because PR was updated recently 2025-12-04T08:42:40.9765853Z ##[endgroup] 2025-12-04T08:42:40.9766238Z ##[group]Processing PR #161707 2025-12-04T08:42:40.9766603Z [161707] URL: https://github.com/pytorch/pytorch/pull/161707 2025-12-04T08:42:40.9767013Z [161707] Checking whether to label PR as stale. 2025-12-04T08:42:40.9767388Z [161707] Skipping because PR was updated recently 2025-12-04T08:42:40.9767876Z ##[endgroup] 2025-12-04T08:42:40.9768249Z ##[group]Processing PR #161709 2025-12-04T08:42:40.9768617Z [161709] URL: https://github.com/pytorch/pytorch/pull/161709 2025-12-04T08:42:40.9769035Z [161709] Checking whether to label PR as stale. 2025-12-04T08:42:40.9769396Z [161709] Skipping because PR was updated recently 2025-12-04T08:42:40.9769881Z ##[endgroup] 2025-12-04T08:42:40.9770266Z ##[group]Processing PR #161710 2025-12-04T08:42:40.9770617Z [161710] URL: https://github.com/pytorch/pytorch/pull/161710 2025-12-04T08:42:40.9771100Z [161710] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9771634Z [161710] Skipping because PR was updated recently 2025-12-04T08:42:40.9772137Z ##[endgroup] 2025-12-04T08:42:40.9772530Z ##[group]Processing PR #161711 2025-12-04T08:42:40.9772906Z [161711] URL: https://github.com/pytorch/pytorch/pull/161711 2025-12-04T08:42:40.9773684Z [161711] Checking whether to label PR as stale. 2025-12-04T08:42:40.9774123Z [161711] Skipping because PR was updated recently 2025-12-04T08:42:40.9774631Z ##[endgroup] 2025-12-04T08:42:40.9775010Z ##[group]Processing PR #161730 2025-12-04T08:42:40.9775380Z [161730] URL: https://github.com/pytorch/pytorch/pull/161730 2025-12-04T08:42:40.9775842Z [161730] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9776278Z [161730] Skipping because PR was updated recently 2025-12-04T08:42:40.9776763Z ##[endgroup] 2025-12-04T08:42:40.9777148Z ##[group]Processing PR #161740 2025-12-04T08:42:40.9777811Z [161740] URL: https://github.com/pytorch/pytorch/pull/161740 2025-12-04T08:42:40.9778286Z [161740] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9778711Z [161740] Skipping because PR was updated recently 2025-12-04T08:42:40.9779201Z ##[endgroup] 2025-12-04T08:42:40.9779590Z ##[group]Processing PR #161744 2025-12-04T08:42:40.9779963Z [161744] URL: https://github.com/pytorch/pytorch/pull/161744 2025-12-04T08:42:40.9780427Z [161744] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:40.9780866Z [161744] Skipping because PR was updated recently 2025-12-04T08:42:40.9781354Z ##[endgroup] 2025-12-04T08:42:40.9781728Z ##[group]Processing PR #161759 2025-12-04T08:42:40.9782095Z [161759] URL: https://github.com/pytorch/pytorch/pull/161759 2025-12-04T08:42:40.9782503Z [161759] Checking whether to label PR as stale. 2025-12-04T08:42:40.9782885Z [161759] Skipping because PR was updated recently 2025-12-04T08:42:40.9783384Z ##[endgroup] 2025-12-04T08:42:40.9783776Z ##[group]Processing PR #161771 2025-12-04T08:42:40.9784128Z [161771] URL: https://github.com/pytorch/pytorch/pull/161771 2025-12-04T08:42:40.9784546Z [161771] Checking whether to label PR as stale. 2025-12-04T08:42:40.9784910Z [161771] Skipping because PR was updated recently 2025-12-04T08:42:40.9785398Z ##[endgroup] 2025-12-04T08:42:42.2824010Z ##[group]Processing PR #161819 2025-12-04T08:42:42.2824737Z [161819] URL: https://github.com/pytorch/pytorch/pull/161819 2025-12-04T08:42:42.2825466Z [161819] Checking whether to label PR as stale. 2025-12-04T08:42:42.2826048Z [161819] Skipping because PR was updated recently 2025-12-04T08:42:42.2826946Z ##[endgroup] 2025-12-04T08:42:42.2828071Z ##[group]Processing PR #161857 2025-12-04T08:42:42.2839875Z [161857] URL: https://github.com/pytorch/pytorch/pull/161857 2025-12-04T08:42:42.2840598Z [161857] Checking whether to label PR as stale. 2025-12-04T08:42:42.2841246Z [161857] Skipping because PR was updated recently 2025-12-04T08:42:42.2842722Z ##[endgroup] 2025-12-04T08:42:42.2843397Z ##[group]Processing PR #161866 2025-12-04T08:42:42.2844027Z [161866] URL: https://github.com/pytorch/pytorch/pull/161866 2025-12-04T08:42:42.2844874Z [161866] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2845587Z [161866] Skipping because PR was updated recently 2025-12-04T08:42:42.2846435Z ##[endgroup] 2025-12-04T08:42:42.2847119Z ##[group]Processing PR #161870 2025-12-04T08:42:42.2847748Z [161870] URL: https://github.com/pytorch/pytorch/pull/161870 2025-12-04T08:42:42.2848556Z [161870] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2849281Z [161870] Skipping because PR was updated recently 2025-12-04T08:42:42.2850124Z ##[endgroup] 2025-12-04T08:42:42.2850781Z ##[group]Processing PR #161894 2025-12-04T08:42:42.2851505Z [161894] URL: https://github.com/pytorch/pytorch/pull/161894 2025-12-04T08:42:42.2852945Z [161894] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2853703Z [161894] Skipping because PR was updated recently 2025-12-04T08:42:42.2854567Z ##[endgroup] 2025-12-04T08:42:42.2855223Z ##[group]Processing PR #161897 2025-12-04T08:42:42.2855855Z [161897] URL: https://github.com/pytorch/pytorch/pull/161897 2025-12-04T08:42:42.2856674Z [161897] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2857420Z [161897] Skipping because PR was updated recently 2025-12-04T08:42:42.2858270Z ##[endgroup] 2025-12-04T08:42:42.2858920Z ##[group]Processing PR #161901 2025-12-04T08:42:42.2859527Z [161901] URL: https://github.com/pytorch/pytorch/pull/161901 2025-12-04T08:42:42.2860346Z [161901] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2861084Z [161901] Skipping because PR was updated recently 2025-12-04T08:42:42.2861916Z ##[endgroup] 2025-12-04T08:42:42.2862572Z ##[group]Processing PR #161911 2025-12-04T08:42:42.2863192Z [161911] URL: https://github.com/pytorch/pytorch/pull/161911 2025-12-04T08:42:42.2864422Z [161911] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2865166Z [161911] Skipping because PR was updated recently 2025-12-04T08:42:42.2865995Z ##[endgroup] 2025-12-04T08:42:42.2866516Z ##[group]Processing PR #161912 2025-12-04T08:42:42.2867049Z [161912] URL: https://github.com/pytorch/pytorch/pull/161912 2025-12-04T08:42:42.2867892Z [161912] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2868676Z [161912] Skipping because PR was updated recently 2025-12-04T08:42:42.2869564Z ##[endgroup] 2025-12-04T08:42:42.2870944Z ##[group]Processing PR #161913 2025-12-04T08:42:42.2871572Z [161913] URL: https://github.com/pytorch/pytorch/pull/161913 2025-12-04T08:42:42.2872439Z [161913] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2873203Z [161913] Skipping because PR was updated recently 2025-12-04T08:42:42.2874148Z ##[endgroup] 2025-12-04T08:42:42.2875072Z ##[group]Processing PR #161926 2025-12-04T08:42:42.2875901Z [161926] URL: https://github.com/pytorch/pytorch/pull/161926 2025-12-04T08:42:42.2876942Z [161926] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2878626Z [161926] Skipping because PR was updated recently 2025-12-04T08:42:42.2879741Z ##[endgroup] 2025-12-04T08:42:42.2880576Z ##[group]Processing PR #161936 2025-12-04T08:42:42.2881767Z [161936] URL: https://github.com/pytorch/pytorch/pull/161936 2025-12-04T08:42:42.2882817Z [161936] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2883742Z [161936] Skipping because PR was updated recently 2025-12-04T08:42:42.2884793Z ##[endgroup] 2025-12-04T08:42:42.2885642Z ##[group]Processing PR #161938 2025-12-04T08:42:42.2886482Z [161938] URL: https://github.com/pytorch/pytorch/pull/161938 2025-12-04T08:42:42.2887369Z [161938] Checking whether to label PR as stale. 2025-12-04T08:42:42.2888096Z [161938] Skipping because PR was updated recently 2025-12-04T08:42:42.2889046Z ##[endgroup] 2025-12-04T08:42:42.2889800Z ##[group]Processing PR #161939 2025-12-04T08:42:42.2890542Z [161939] URL: https://github.com/pytorch/pytorch/pull/161939 2025-12-04T08:42:42.2891420Z [161939] Checking whether to label PR as stale. 2025-12-04T08:42:42.2935344Z [161939] Skipping because PR was updated recently 2025-12-04T08:42:42.2936399Z ##[endgroup] 2025-12-04T08:42:42.2937498Z ##[group]Processing PR #161940 2025-12-04T08:42:42.2938235Z [161940] URL: https://github.com/pytorch/pytorch/pull/161940 2025-12-04T08:42:42.2938950Z [161940] Checking whether to label PR as stale. 2025-12-04T08:42:42.2939622Z [161940] Skipping because PR was updated recently 2025-12-04T08:42:42.2940522Z ##[endgroup] 2025-12-04T08:42:42.2941162Z ##[group]Processing PR #161965 2025-12-04T08:42:42.2941660Z [161965] URL: https://github.com/pytorch/pytorch/pull/161965 2025-12-04T08:42:42.2942278Z [161965] Checking whether to label PR as stale. 2025-12-04T08:42:42.2942806Z [161965] Skipping because PR was updated recently 2025-12-04T08:42:42.2943513Z ##[endgroup] 2025-12-04T08:42:42.2944122Z ##[group]Processing PR #161967 2025-12-04T08:42:42.2944691Z [161967] URL: https://github.com/pytorch/pytorch/pull/161967 2025-12-04T08:42:42.2945412Z [161967] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2956893Z [161967] Skipping because PR was updated recently 2025-12-04T08:42:42.2957745Z ##[endgroup] 2025-12-04T08:42:42.2958494Z ##[group]Processing PR #161971 2025-12-04T08:42:42.2959239Z [161971] URL: https://github.com/pytorch/pytorch/pull/161971 2025-12-04T08:42:42.2959947Z [161971] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2960775Z [161971] Skipping because PR was updated recently 2025-12-04T08:42:42.2961716Z ##[endgroup] 2025-12-04T08:42:42.2962397Z ##[group]Processing PR #161972 2025-12-04T08:42:42.2963088Z [161972] URL: https://github.com/pytorch/pytorch/pull/161972 2025-12-04T08:42:42.2963968Z [161972] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2964782Z [161972] Skipping because PR was updated recently 2025-12-04T08:42:42.2966125Z ##[endgroup] 2025-12-04T08:42:42.2966867Z ##[group]Processing PR #161980 2025-12-04T08:42:42.2967542Z [161980] URL: https://github.com/pytorch/pytorch/pull/161980 2025-12-04T08:42:42.2968379Z [161980] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2969185Z [161980] Skipping because PR was updated recently 2025-12-04T08:42:42.2970056Z ##[endgroup] 2025-12-04T08:42:42.2970753Z ##[group]Processing PR #161987 2025-12-04T08:42:42.2971595Z [161987] URL: https://github.com/pytorch/pytorch/pull/161987 2025-12-04T08:42:42.2972410Z [161987] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2973249Z [161987] Skipping because PR was updated recently 2025-12-04T08:42:42.2974143Z ##[endgroup] 2025-12-04T08:42:42.2974794Z ##[group]Processing PR #161991 2025-12-04T08:42:42.2975488Z [161991] URL: https://github.com/pytorch/pytorch/pull/161991 2025-12-04T08:42:42.2976322Z [161991] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2977143Z [161991] Skipping because PR was updated recently 2025-12-04T08:42:42.2977988Z ##[endgroup] 2025-12-04T08:42:42.2978701Z ##[group]Processing PR #161994 2025-12-04T08:42:42.2979366Z [161994] URL: https://github.com/pytorch/pytorch/pull/161994 2025-12-04T08:42:42.2980217Z [161994] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2981330Z [161994] Skipping because PR was updated recently 2025-12-04T08:42:42.2982255Z ##[endgroup] 2025-12-04T08:42:42.2982965Z ##[group]Processing PR #162008 2025-12-04T08:42:42.2983588Z [162008] URL: https://github.com/pytorch/pytorch/pull/162008 2025-12-04T08:42:42.2984470Z [162008] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2985258Z [162008] Skipping because PR was updated recently 2025-12-04T08:42:42.2986158Z ##[endgroup] 2025-12-04T08:42:42.2986870Z ##[group]Processing PR #162011 2025-12-04T08:42:42.2987518Z [162011] URL: https://github.com/pytorch/pytorch/pull/162011 2025-12-04T08:42:42.2988422Z [162011] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2989164Z [162011] Skipping because PR was updated recently 2025-12-04T08:42:42.2990012Z ##[endgroup] 2025-12-04T08:42:42.2990738Z ##[group]Processing PR #162013 2025-12-04T08:42:42.2991372Z [162013] URL: https://github.com/pytorch/pytorch/pull/162013 2025-12-04T08:42:42.2992188Z [162013] Checking whether to label PR as stale. 2025-12-04T08:42:42.2992841Z [162013] Skipping because PR was updated recently 2025-12-04T08:42:42.2993713Z ##[endgroup] 2025-12-04T08:42:42.2994447Z ##[group]Processing PR #162018 2025-12-04T08:42:42.2995084Z [162018] URL: https://github.com/pytorch/pytorch/pull/162018 2025-12-04T08:42:42.2995943Z [162018] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.2996736Z [162018] Skipping because PR was updated recently 2025-12-04T08:42:42.2997634Z ##[endgroup] 2025-12-04T08:42:42.2998349Z ##[group]Processing PR #162033 2025-12-04T08:42:42.2998992Z [162033] URL: https://github.com/pytorch/pytorch/pull/162033 2025-12-04T08:42:42.2999835Z [162033] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3000658Z [162033] Skipping because PR was updated recently 2025-12-04T08:42:42.3001561Z ##[endgroup] 2025-12-04T08:42:42.3002273Z ##[group]Processing PR #162045 2025-12-04T08:42:42.3002865Z [162045] URL: https://github.com/pytorch/pytorch/pull/162045 2025-12-04T08:42:42.3003637Z [162045] Checking whether to label PR as stale. 2025-12-04T08:42:42.3004305Z [162045] Skipping because PR was updated recently 2025-12-04T08:42:42.3005209Z ##[endgroup] 2025-12-04T08:42:42.3005919Z ##[group]Processing PR #162052 2025-12-04T08:42:42.3006561Z [162052] URL: https://github.com/pytorch/pytorch/pull/162052 2025-12-04T08:42:42.3007245Z [162052] Checking whether to label PR as stale. 2025-12-04T08:42:42.3007886Z [162052] Skipping because PR was updated recently 2025-12-04T08:42:42.3008800Z ##[endgroup] 2025-12-04T08:42:42.3009505Z ##[group]Processing PR #162078 2025-12-04T08:42:42.3010429Z [162078] URL: https://github.com/pytorch/pytorch/pull/162078 2025-12-04T08:42:42.3011200Z [162078] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3012076Z [162078] Skipping because PR was updated recently 2025-12-04T08:42:42.3012927Z ##[endgroup] 2025-12-04T08:42:42.3013656Z ##[group]Processing PR #162079 2025-12-04T08:42:42.3014342Z [162079] URL: https://github.com/pytorch/pytorch/pull/162079 2025-12-04T08:42:42.3015159Z [162079] Skipping because PR has an exempting label. 2025-12-04T08:42:42.3016067Z ##[endgroup] 2025-12-04T08:42:42.3016788Z ##[group]Processing PR #162095 2025-12-04T08:42:42.3017451Z [162095] URL: https://github.com/pytorch/pytorch/pull/162095 2025-12-04T08:42:42.3018243Z [162095] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3018957Z [162095] Skipping because PR was updated recently 2025-12-04T08:42:42.3019798Z ##[endgroup] 2025-12-04T08:42:42.3020519Z ##[group]Processing PR #162130 2025-12-04T08:42:42.3021202Z [162130] URL: https://github.com/pytorch/pytorch/pull/162130 2025-12-04T08:42:42.3022010Z [162130] Skipping because PR has an exempting label. 2025-12-04T08:42:42.3022841Z ##[endgroup] 2025-12-04T08:42:42.3023506Z ##[group]Processing PR #162134 2025-12-04T08:42:42.3024126Z [162134] URL: https://github.com/pytorch/pytorch/pull/162134 2025-12-04T08:42:42.3025256Z [162134] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3026057Z [162134] Skipping because PR was updated recently 2025-12-04T08:42:42.3026893Z ##[endgroup] 2025-12-04T08:42:42.3027532Z ##[group]Processing PR #162150 2025-12-04T08:42:42.3028146Z [162150] URL: https://github.com/pytorch/pytorch/pull/162150 2025-12-04T08:42:42.3029014Z [162150] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3029824Z [162150] Skipping because PR was updated recently 2025-12-04T08:42:42.3030678Z ##[endgroup] 2025-12-04T08:42:42.3031321Z ##[group]Processing PR #162165 2025-12-04T08:42:42.3031958Z [162165] URL: https://github.com/pytorch/pytorch/pull/162165 2025-12-04T08:42:42.3032797Z [162165] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3033602Z [162165] Skipping because PR was updated recently 2025-12-04T08:42:42.3034913Z ##[endgroup] 2025-12-04T08:42:42.3035527Z ##[group]Processing PR #162191 2025-12-04T08:42:42.3036086Z [162191] URL: https://github.com/pytorch/pytorch/pull/162191 2025-12-04T08:42:42.3036868Z [162191] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3037622Z [162191] Skipping because PR was updated recently 2025-12-04T08:42:42.3038543Z ##[endgroup] 2025-12-04T08:42:42.3039260Z ##[group]Processing PR #162205 2025-12-04T08:42:42.3040327Z [162205] URL: https://github.com/pytorch/pytorch/pull/162205 2025-12-04T08:42:42.3041125Z [162205] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3042038Z [162205] Skipping because PR was updated recently 2025-12-04T08:42:42.3042955Z ##[endgroup] 2025-12-04T08:42:42.3043703Z ##[group]Processing PR #162213 2025-12-04T08:42:42.3044321Z [162213] URL: https://github.com/pytorch/pytorch/pull/162213 2025-12-04T08:42:42.3045090Z [162213] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3045834Z [162213] Skipping because PR was updated recently 2025-12-04T08:42:42.3046723Z ##[endgroup] 2025-12-04T08:42:42.3047432Z ##[group]Processing PR #162227 2025-12-04T08:42:42.3048109Z [162227] URL: https://github.com/pytorch/pytorch/pull/162227 2025-12-04T08:42:42.3048934Z [162227] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3049650Z [162227] Skipping because PR was updated recently 2025-12-04T08:42:42.3050500Z ##[endgroup] 2025-12-04T08:42:42.3051218Z ##[group]Processing PR #162245 2025-12-04T08:42:42.3052017Z [162245] URL: https://github.com/pytorch/pytorch/pull/162245 2025-12-04T08:42:42.3052900Z [162245] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3053569Z [162245] Skipping because PR was updated recently 2025-12-04T08:42:42.3054800Z ##[endgroup] 2025-12-04T08:42:42.3055516Z ##[group]Processing PR #162253 2025-12-04T08:42:42.3056208Z [162253] URL: https://github.com/pytorch/pytorch/pull/162253 2025-12-04T08:42:42.3057085Z [162253] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3057811Z [162253] Skipping because PR was updated recently 2025-12-04T08:42:42.3058658Z ##[endgroup] 2025-12-04T08:42:42.3059312Z ##[group]Processing PR #162260 2025-12-04T08:42:42.3059973Z [162260] URL: https://github.com/pytorch/pytorch/pull/162260 2025-12-04T08:42:42.3060848Z [162260] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3061616Z [162260] Skipping because PR was updated recently 2025-12-04T08:42:42.3062432Z ##[endgroup] 2025-12-04T08:42:42.3063092Z ##[group]Processing PR #162267 2025-12-04T08:42:42.3063726Z [162267] URL: https://github.com/pytorch/pytorch/pull/162267 2025-12-04T08:42:42.3064618Z [162267] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3065438Z [162267] Skipping because PR was updated recently 2025-12-04T08:42:42.3066264Z ##[endgroup] 2025-12-04T08:42:42.3066883Z ##[group]Processing PR #162275 2025-12-04T08:42:42.3067411Z [162275] URL: https://github.com/pytorch/pytorch/pull/162275 2025-12-04T08:42:42.3067983Z [162275] Checking whether to label PR as stale. 2025-12-04T08:42:42.3068831Z [162275] Skipping because PR was updated recently 2025-12-04T08:42:42.3069645Z ##[endgroup] 2025-12-04T08:42:42.3070267Z ##[group]Processing PR #162281 2025-12-04T08:42:42.3070793Z [162281] URL: https://github.com/pytorch/pytorch/pull/162281 2025-12-04T08:42:42.3071487Z [162281] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3072105Z [162281] Skipping because PR was updated recently 2025-12-04T08:42:42.3072854Z ##[endgroup] 2025-12-04T08:42:42.3073386Z ##[group]Processing PR #162291 2025-12-04T08:42:42.3073931Z [162291] URL: https://github.com/pytorch/pytorch/pull/162291 2025-12-04T08:42:42.3074561Z [162291] Checking whether to label PR as stale. 2025-12-04T08:42:42.3075125Z [162291] Skipping because PR was updated recently 2025-12-04T08:42:42.3075864Z ##[endgroup] 2025-12-04T08:42:42.3076492Z ##[group]Processing PR #162294 2025-12-04T08:42:42.3077054Z [162294] URL: https://github.com/pytorch/pytorch/pull/162294 2025-12-04T08:42:42.3077674Z [162294] Checking whether to label PR as stale. 2025-12-04T08:42:42.3078266Z [162294] Skipping because PR was updated recently 2025-12-04T08:42:42.3079042Z ##[endgroup] 2025-12-04T08:42:42.3079653Z ##[group]Processing PR #162305 2025-12-04T08:42:42.3080212Z [162305] URL: https://github.com/pytorch/pytorch/pull/162305 2025-12-04T08:42:42.3080965Z [162305] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3081573Z [162305] Skipping because PR was updated recently 2025-12-04T08:42:42.3082252Z ##[endgroup] 2025-12-04T08:42:42.3083053Z ##[group]Processing PR #162312 2025-12-04T08:42:42.3083581Z [162312] URL: https://github.com/pytorch/pytorch/pull/162312 2025-12-04T08:42:42.3084319Z [162312] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3085057Z [162312] Skipping because PR was updated recently 2025-12-04T08:42:42.3085940Z ##[endgroup] 2025-12-04T08:42:42.3086638Z ##[group]Processing PR #162321 2025-12-04T08:42:42.3087310Z [162321] URL: https://github.com/pytorch/pytorch/pull/162321 2025-12-04T08:42:42.3087983Z [162321] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3089264Z [162321] Skipping because PR was updated recently 2025-12-04T08:42:42.3090188Z ##[endgroup] 2025-12-04T08:42:42.3090807Z ##[group]Processing PR #162339 2025-12-04T08:42:42.3091548Z [162339] URL: https://github.com/pytorch/pytorch/pull/162339 2025-12-04T08:42:42.3092395Z [162339] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3093171Z [162339] Skipping because PR was updated recently 2025-12-04T08:42:42.3093959Z ##[endgroup] 2025-12-04T08:42:42.3094598Z ##[group]Processing PR #162340 2025-12-04T08:42:42.3095440Z [162340] URL: https://github.com/pytorch/pytorch/pull/162340 2025-12-04T08:42:42.3096233Z [162340] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3096943Z [162340] Skipping because PR was updated recently 2025-12-04T08:42:42.3097734Z ##[endgroup] 2025-12-04T08:42:42.3098383Z ##[group]Processing PR #162342 2025-12-04T08:42:42.3099026Z [162342] URL: https://github.com/pytorch/pytorch/pull/162342 2025-12-04T08:42:42.3099830Z [162342] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3100589Z [162342] Skipping because PR was updated recently 2025-12-04T08:42:42.3101439Z ##[endgroup] 2025-12-04T08:42:42.3102111Z ##[group]Processing PR #162344 2025-12-04T08:42:42.3102729Z [162344] URL: https://github.com/pytorch/pytorch/pull/162344 2025-12-04T08:42:42.3103556Z [162344] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3104333Z [162344] Skipping because PR was updated recently 2025-12-04T08:42:42.3105203Z ##[endgroup] 2025-12-04T08:42:42.3105859Z ##[group]Processing PR #162345 2025-12-04T08:42:42.3106463Z [162345] URL: https://github.com/pytorch/pytorch/pull/162345 2025-12-04T08:42:42.3107288Z [162345] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3108061Z [162345] Skipping because PR was updated recently 2025-12-04T08:42:42.3108916Z ##[endgroup] 2025-12-04T08:42:42.3109794Z ##[group]Processing PR #162393 2025-12-04T08:42:42.3110446Z [162393] URL: https://github.com/pytorch/pytorch/pull/162393 2025-12-04T08:42:42.3111224Z [162393] Checking whether to label PR as stale. 2025-12-04T08:42:42.3111876Z [162393] Skipping because PR was updated recently 2025-12-04T08:42:42.3112704Z ##[endgroup] 2025-12-04T08:42:42.3113347Z ##[group]Processing PR #162399 2025-12-04T08:42:42.3113948Z [162399] URL: https://github.com/pytorch/pytorch/pull/162399 2025-12-04T08:42:42.3114706Z [162399] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3115440Z [162399] Skipping because PR was updated recently 2025-12-04T08:42:42.3116210Z ##[endgroup] 2025-12-04T08:42:42.3116806Z ##[group]Processing PR #162404 2025-12-04T08:42:42.3117390Z [162404] URL: https://github.com/pytorch/pytorch/pull/162404 2025-12-04T08:42:42.3118168Z [162404] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3118915Z [162404] Skipping because PR was updated recently 2025-12-04T08:42:42.3119735Z ##[endgroup] 2025-12-04T08:42:42.3120345Z ##[group]Processing PR #162411 2025-12-04T08:42:42.3120967Z [162411] URL: https://github.com/pytorch/pytorch/pull/162411 2025-12-04T08:42:42.3121742Z [162411] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3122431Z [162411] Skipping because PR was updated recently 2025-12-04T08:42:42.3123223Z ##[endgroup] 2025-12-04T08:42:42.3123843Z ##[group]Processing PR #162417 2025-12-04T08:42:42.3124454Z [162417] URL: https://github.com/pytorch/pytorch/pull/162417 2025-12-04T08:42:42.3125201Z [162417] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3125924Z [162417] Skipping because PR was updated recently 2025-12-04T08:42:42.3126764Z ##[endgroup] 2025-12-04T08:42:42.3127394Z ##[group]Processing PR #162420 2025-12-04T08:42:42.3127962Z [162420] URL: https://github.com/pytorch/pytorch/pull/162420 2025-12-04T08:42:42.3128755Z [162420] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3129469Z [162420] Skipping because PR was updated recently 2025-12-04T08:42:42.3130300Z ##[endgroup] 2025-12-04T08:42:42.3130970Z ##[group]Processing PR #162454 2025-12-04T08:42:42.3131756Z [162454] URL: https://github.com/pytorch/pytorch/pull/162454 2025-12-04T08:42:42.3132452Z [162454] Checking whether to label PR as stale. 2025-12-04T08:42:42.3133102Z [162454] Skipping because PR was updated recently 2025-12-04T08:42:42.3134320Z ##[endgroup] 2025-12-04T08:42:42.3134950Z ##[group]Processing PR #162457 2025-12-04T08:42:42.3135556Z [162457] URL: https://github.com/pytorch/pytorch/pull/162457 2025-12-04T08:42:42.3136740Z [162457] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3137469Z [162457] Skipping because PR was updated recently 2025-12-04T08:42:42.3138308Z ##[endgroup] 2025-12-04T08:42:42.3138931Z ##[group]Processing PR #162485 2025-12-04T08:42:42.3139532Z [162485] URL: https://github.com/pytorch/pytorch/pull/162485 2025-12-04T08:42:42.3140355Z [162485] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3141085Z [162485] Skipping because PR was updated recently 2025-12-04T08:42:42.3141923Z ##[endgroup] 2025-12-04T08:42:42.3142569Z ##[group]Processing PR #162488 2025-12-04T08:42:42.3143142Z [162488] URL: https://github.com/pytorch/pytorch/pull/162488 2025-12-04T08:42:42.3143900Z [162488] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3144618Z [162488] Skipping because PR was updated recently 2025-12-04T08:42:42.3145411Z ##[endgroup] 2025-12-04T08:42:42.3146031Z ##[group]Processing PR #162490 2025-12-04T08:42:42.3160978Z [162490] URL: https://github.com/pytorch/pytorch/pull/162490 2025-12-04T08:42:42.3162006Z [162490] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3162743Z [162490] Skipping because PR was updated recently 2025-12-04T08:42:42.3164206Z ##[endgroup] 2025-12-04T08:42:42.3164880Z ##[group]Processing PR #162498 2025-12-04T08:42:42.3165860Z [162498] URL: https://github.com/pytorch/pytorch/pull/162498 2025-12-04T08:42:42.3166690Z [162498] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3167375Z [162498] Skipping because PR was updated recently 2025-12-04T08:42:42.3168186Z ##[endgroup] 2025-12-04T08:42:42.3168752Z ##[group]Processing PR #162500 2025-12-04T08:42:42.3169347Z [162500] URL: https://github.com/pytorch/pytorch/pull/162500 2025-12-04T08:42:42.3170141Z [162500] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3170822Z [162500] Skipping because PR was updated recently 2025-12-04T08:42:42.3171777Z ##[endgroup] 2025-12-04T08:42:42.3172441Z ##[group]Processing PR #162503 2025-12-04T08:42:42.3173038Z [162503] URL: https://github.com/pytorch/pytorch/pull/162503 2025-12-04T08:42:42.3174925Z [162503] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3175685Z [162503] Skipping because PR was updated recently 2025-12-04T08:42:42.3176528Z ##[endgroup] 2025-12-04T08:42:42.3177165Z ##[group]Processing PR #162514 2025-12-04T08:42:42.3177774Z [162514] URL: https://github.com/pytorch/pytorch/pull/162514 2025-12-04T08:42:42.3178594Z [162514] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3179304Z [162514] Skipping because PR was updated recently 2025-12-04T08:42:42.3180156Z ##[endgroup] 2025-12-04T08:42:42.3180806Z ##[group]Processing PR #162529 2025-12-04T08:42:42.3181370Z [162529] URL: https://github.com/pytorch/pytorch/pull/162529 2025-12-04T08:42:42.3182100Z [162529] Checking whether to label PR as stale. 2025-12-04T08:42:42.3182709Z [162529] Skipping because PR was updated recently 2025-12-04T08:42:42.3183513Z ##[endgroup] 2025-12-04T08:42:42.3184166Z ##[group]Processing PR #162545 2025-12-04T08:42:42.3184796Z [162545] URL: https://github.com/pytorch/pytorch/pull/162545 2025-12-04T08:42:42.3185618Z [162545] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3186387Z [162545] Skipping because PR was updated recently 2025-12-04T08:42:42.3187207Z ##[endgroup] 2025-12-04T08:42:42.3187892Z ##[group]Processing PR #162549 2025-12-04T08:42:42.3188538Z [162549] URL: https://github.com/pytorch/pytorch/pull/162549 2025-12-04T08:42:42.3189316Z [162549] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3190034Z [162549] Skipping because PR was updated recently 2025-12-04T08:42:42.3190828Z ##[endgroup] 2025-12-04T08:42:42.3191458Z ##[group]Processing PR #162563 2025-12-04T08:42:42.3192019Z [162563] URL: https://github.com/pytorch/pytorch/pull/162563 2025-12-04T08:42:42.3192875Z [162563] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3193884Z [162563] Skipping because PR was updated recently 2025-12-04T08:42:42.3194719Z ##[endgroup] 2025-12-04T08:42:42.3195345Z ##[group]Processing PR #162565 2025-12-04T08:42:42.3195931Z [162565] URL: https://github.com/pytorch/pytorch/pull/162565 2025-12-04T08:42:42.3196731Z [162565] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3197480Z [162565] Skipping because PR was updated recently 2025-12-04T08:42:42.3198268Z ##[endgroup] 2025-12-04T08:42:42.3198921Z ##[group]Processing PR #162571 2025-12-04T08:42:42.3199545Z [162571] URL: https://github.com/pytorch/pytorch/pull/162571 2025-12-04T08:42:42.3200308Z [162571] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3201016Z [162571] Skipping because PR was updated recently 2025-12-04T08:42:42.3201824Z ##[endgroup] 2025-12-04T08:42:42.3202469Z ##[group]Processing PR #162575 2025-12-04T08:42:42.3203053Z [162575] URL: https://github.com/pytorch/pytorch/pull/162575 2025-12-04T08:42:42.3203846Z [162575] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3204566Z [162575] Skipping because PR was updated recently 2025-12-04T08:42:42.3205404Z ##[endgroup] 2025-12-04T08:42:42.3206065Z ##[group]Processing PR #162576 2025-12-04T08:42:42.3206669Z [162576] URL: https://github.com/pytorch/pytorch/pull/162576 2025-12-04T08:42:42.3207650Z [162576] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3208376Z [162576] Skipping because PR was updated recently 2025-12-04T08:42:42.3209167Z ##[endgroup] 2025-12-04T08:42:42.3209807Z ##[group]Processing PR #162580 2025-12-04T08:42:42.3210402Z [162580] URL: https://github.com/pytorch/pytorch/pull/162580 2025-12-04T08:42:42.3211191Z [162580] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3212072Z [162580] Skipping because PR was updated recently 2025-12-04T08:42:42.3212905Z ##[endgroup] 2025-12-04T08:42:42.3213563Z ##[group]Processing PR #162583 2025-12-04T08:42:42.3214185Z [162583] URL: https://github.com/pytorch/pytorch/pull/162583 2025-12-04T08:42:42.3214949Z [162583] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3215674Z [162583] Skipping because PR was updated recently 2025-12-04T08:42:42.3216503Z ##[endgroup] 2025-12-04T08:42:42.3217156Z ##[group]Processing PR #162589 2025-12-04T08:42:42.3217760Z [162589] URL: https://github.com/pytorch/pytorch/pull/162589 2025-12-04T08:42:42.3218610Z [162589] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3219408Z [162589] Skipping because PR was updated recently 2025-12-04T08:42:42.3220216Z ##[endgroup] 2025-12-04T08:42:42.3220856Z ##[group]Processing PR #162593 2025-12-04T08:42:42.3221476Z [162593] URL: https://github.com/pytorch/pytorch/pull/162593 2025-12-04T08:42:42.3222247Z [162593] Checking whether to label PR as stale. 2025-12-04T08:42:42.3222945Z [162593] Skipping because PR was updated recently 2025-12-04T08:42:42.3223862Z ##[endgroup] 2025-12-04T08:42:42.3224586Z ##[group]Processing PR #162605 2025-12-04T08:42:42.3225262Z [162605] URL: https://github.com/pytorch/pytorch/pull/162605 2025-12-04T08:42:42.3226029Z [162605] Checking whether to label PR as stale. 2025-12-04T08:42:42.3226676Z [162605] Skipping because PR was updated recently 2025-12-04T08:42:42.3227472Z ##[endgroup] 2025-12-04T08:42:42.3228100Z ##[group]Processing PR #162627 2025-12-04T08:42:42.3228697Z [162627] URL: https://github.com/pytorch/pytorch/pull/162627 2025-12-04T08:42:42.3229551Z [162627] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3230339Z [162627] Skipping because PR was updated recently 2025-12-04T08:42:42.3231190Z ##[endgroup] 2025-12-04T08:42:42.3231904Z ##[group]Processing PR #162639 2025-12-04T08:42:42.3232497Z [162639] URL: https://github.com/pytorch/pytorch/pull/162639 2025-12-04T08:42:42.3233297Z [162639] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3234396Z [162639] Skipping because PR was updated recently 2025-12-04T08:42:42.3235538Z ##[endgroup] 2025-12-04T08:42:42.3236176Z ##[group]Processing PR #162641 2025-12-04T08:42:42.3236764Z [162641] URL: https://github.com/pytorch/pytorch/pull/162641 2025-12-04T08:42:42.3237501Z [162641] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3238229Z [162641] Skipping because PR was updated recently 2025-12-04T08:42:42.3239044Z ##[endgroup] 2025-12-04T08:42:42.3239733Z ##[group]Processing PR #162645 2025-12-04T08:42:42.3240399Z [162645] URL: https://github.com/pytorch/pytorch/pull/162645 2025-12-04T08:42:42.3241139Z [162645] Checking whether to label PR as stale. 2025-12-04T08:42:42.3241779Z [162645] Skipping because PR was updated recently 2025-12-04T08:42:42.3242542Z ##[endgroup] 2025-12-04T08:42:42.3243158Z ##[group]Processing PR #162659 2025-12-04T08:42:42.3243769Z [162659] URL: https://github.com/pytorch/pytorch/pull/162659 2025-12-04T08:42:42.3244466Z [162659] Checking whether to label PR as stale. 2025-12-04T08:42:42.3245073Z [162659] Skipping because PR was updated recently 2025-12-04T08:42:42.3245873Z ##[endgroup] 2025-12-04T08:42:42.3246492Z ##[group]Processing PR #162662 2025-12-04T08:42:42.3247117Z [162662] URL: https://github.com/pytorch/pytorch/pull/162662 2025-12-04T08:42:42.3247895Z [162662] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3248580Z [162662] Skipping because PR was updated recently 2025-12-04T08:42:42.3249709Z ##[endgroup] 2025-12-04T08:42:42.3250338Z ##[group]Processing PR #162666 2025-12-04T08:42:42.3250949Z [162666] URL: https://github.com/pytorch/pytorch/pull/162666 2025-12-04T08:42:42.3251804Z [162666] Checking whether to label PR as stale. 2025-12-04T08:42:42.3252391Z [162666] Skipping because PR was updated recently 2025-12-04T08:42:42.3253206Z ##[endgroup] 2025-12-04T08:42:42.3253820Z ##[group]Processing PR #162667 2025-12-04T08:42:42.3254422Z [162667] URL: https://github.com/pytorch/pytorch/pull/162667 2025-12-04T08:42:42.3255236Z [162667] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3255946Z [162667] Skipping because PR was updated recently 2025-12-04T08:42:42.3256775Z ##[endgroup] 2025-12-04T08:42:42.3257437Z ##[group]Processing PR #162679 2025-12-04T08:42:42.3258022Z [162679] URL: https://github.com/pytorch/pytorch/pull/162679 2025-12-04T08:42:42.3258830Z [162679] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3259637Z [162679] Skipping because PR was updated recently 2025-12-04T08:42:42.3260515Z ##[endgroup] 2025-12-04T08:42:42.3261240Z ##[group]Processing PR #162681 2025-12-04T08:42:42.3261962Z [162681] URL: https://github.com/pytorch/pytorch/pull/162681 2025-12-04T08:42:42.3262692Z [162681] Checking whether to label PR as stale. 2025-12-04T08:42:42.3263490Z [162681] Skipping because PR was updated recently 2025-12-04T08:42:42.3264237Z ##[endgroup] 2025-12-04T08:42:42.3264845Z ##[group]Processing PR #162691 2025-12-04T08:42:42.3265419Z [162691] URL: https://github.com/pytorch/pytorch/pull/162691 2025-12-04T08:42:42.3266196Z [162691] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3266931Z [162691] Skipping because PR was updated recently 2025-12-04T08:42:42.3267818Z ##[endgroup] 2025-12-04T08:42:42.3268506Z ##[group]Processing PR #162706 2025-12-04T08:42:42.3269121Z [162706] URL: https://github.com/pytorch/pytorch/pull/162706 2025-12-04T08:42:42.3269817Z [162706] Checking whether to label PR as stale. 2025-12-04T08:42:42.3270470Z [162706] Skipping because PR was updated recently 2025-12-04T08:42:42.3271342Z ##[endgroup] 2025-12-04T08:42:42.3271998Z ##[group]Processing PR #162713 2025-12-04T08:42:42.3272640Z [162713] URL: https://github.com/pytorch/pytorch/pull/162713 2025-12-04T08:42:42.3273371Z [162713] Checking whether to label PR as stale. 2025-12-04T08:42:42.3274018Z [162713] Skipping because PR was updated recently 2025-12-04T08:42:42.3274888Z ##[endgroup] 2025-12-04T08:42:42.3275565Z ##[group]Processing PR #162729 2025-12-04T08:42:42.3276207Z [162729] URL: https://github.com/pytorch/pytorch/pull/162729 2025-12-04T08:42:42.3277318Z [162729] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3278074Z [162729] Skipping because PR was updated recently 2025-12-04T08:42:42.3278926Z ##[endgroup] 2025-12-04T08:42:42.3279609Z ##[group]Processing PR #162750 2025-12-04T08:42:42.3280265Z [162750] URL: https://github.com/pytorch/pytorch/pull/162750 2025-12-04T08:42:42.3281096Z [162750] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:42.3281843Z [162750] Skipping because PR was updated recently 2025-12-04T08:42:42.3282731Z ##[endgroup] 2025-12-04T08:42:43.9025411Z ##[group]Processing PR #162757 2025-12-04T08:42:43.9035336Z [162757] URL: https://github.com/pytorch/pytorch/pull/162757 2025-12-04T08:42:43.9036344Z [162757] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9037144Z [162757] Skipping because PR was updated recently 2025-12-04T08:42:43.9038339Z ##[endgroup] 2025-12-04T08:42:43.9039042Z ##[group]Processing PR #162770 2025-12-04T08:42:43.9039730Z [162770] URL: https://github.com/pytorch/pytorch/pull/162770 2025-12-04T08:42:43.9040587Z [162770] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9041404Z [162770] Skipping because PR was updated recently 2025-12-04T08:42:43.9042301Z ##[endgroup] 2025-12-04T08:42:43.9042925Z ##[group]Processing PR #162775 2025-12-04T08:42:43.9044073Z [162775] URL: https://github.com/pytorch/pytorch/pull/162775 2025-12-04T08:42:43.9044956Z [162775] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9045711Z [162775] Skipping because PR was updated recently 2025-12-04T08:42:43.9046638Z ##[endgroup] 2025-12-04T08:42:43.9062407Z ##[group]Processing PR #162789 2025-12-04T08:42:43.9063078Z [162789] URL: https://github.com/pytorch/pytorch/pull/162789 2025-12-04T08:42:43.9063887Z [162789] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9064695Z [162789] Skipping because PR was updated recently 2025-12-04T08:42:43.9065707Z ##[endgroup] 2025-12-04T08:42:43.9066359Z ##[group]Processing PR #162795 2025-12-04T08:42:43.9067023Z [162795] URL: https://github.com/pytorch/pytorch/pull/162795 2025-12-04T08:42:43.9067797Z [162795] Checking whether to label PR as stale. 2025-12-04T08:42:43.9068497Z [162795] Skipping because PR was updated recently 2025-12-04T08:42:43.9069307Z ##[endgroup] 2025-12-04T08:42:43.9070021Z ##[group]Processing PR #162803 2025-12-04T08:42:43.9070700Z [162803] URL: https://github.com/pytorch/pytorch/pull/162803 2025-12-04T08:42:43.9071468Z [162803] Checking whether to label PR as stale. 2025-12-04T08:42:43.9072138Z [162803] Skipping because PR was updated recently 2025-12-04T08:42:43.9073038Z ##[endgroup] 2025-12-04T08:42:43.9073738Z ##[group]Processing PR #162809 2025-12-04T08:42:43.9074396Z [162809] URL: https://github.com/pytorch/pytorch/pull/162809 2025-12-04T08:42:43.9075137Z [162809] Checking whether to label PR as stale. 2025-12-04T08:42:43.9075819Z [162809] Skipping because PR was updated recently 2025-12-04T08:42:43.9076731Z ##[endgroup] 2025-12-04T08:42:43.9077399Z ##[group]Processing PR #162825 2025-12-04T08:42:43.9078009Z [162825] URL: https://github.com/pytorch/pytorch/pull/162825 2025-12-04T08:42:43.9078851Z [162825] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9079575Z [162825] Skipping because PR was updated recently 2025-12-04T08:42:43.9080406Z ##[endgroup] 2025-12-04T08:42:43.9081067Z ##[group]Processing PR #162829 2025-12-04T08:42:43.9081680Z [162829] URL: https://github.com/pytorch/pytorch/pull/162829 2025-12-04T08:42:43.9082483Z [162829] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9083216Z [162829] Skipping because PR was updated recently 2025-12-04T08:42:43.9084063Z ##[endgroup] 2025-12-04T08:42:43.9084716Z ##[group]Processing PR #162840 2025-12-04T08:42:43.9085318Z [162840] URL: https://github.com/pytorch/pytorch/pull/162840 2025-12-04T08:42:43.9086025Z [162840] Checking whether to label PR as stale. 2025-12-04T08:42:43.9086996Z [162840] Skipping because PR was updated recently 2025-12-04T08:42:43.9087823Z ##[endgroup] 2025-12-04T08:42:43.9088492Z ##[group]Processing PR #162874 2025-12-04T08:42:43.9089099Z [162874] URL: https://github.com/pytorch/pytorch/pull/162874 2025-12-04T08:42:43.9089913Z [162874] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9090673Z [162874] Skipping because PR was updated recently 2025-12-04T08:42:43.9091608Z ##[endgroup] 2025-12-04T08:42:43.9092240Z ##[group]Processing PR #162879 2025-12-04T08:42:43.9092858Z [162879] URL: https://github.com/pytorch/pytorch/pull/162879 2025-12-04T08:42:43.9093566Z [162879] Checking whether to label PR as stale. 2025-12-04T08:42:43.9094202Z [162879] Skipping because PR was updated recently 2025-12-04T08:42:43.9095005Z ##[endgroup] 2025-12-04T08:42:43.9095772Z ##[group]Processing PR #162880 2025-12-04T08:42:43.9096330Z [162880] URL: https://github.com/pytorch/pytorch/pull/162880 2025-12-04T08:42:43.9148387Z [162880] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9149288Z [162880] Skipping because PR was updated recently 2025-12-04T08:42:43.9150286Z ##[endgroup] 2025-12-04T08:42:43.9150992Z ##[group]Processing PR #162906 2025-12-04T08:42:43.9151664Z [162906] URL: https://github.com/pytorch/pytorch/pull/162906 2025-12-04T08:42:43.9152545Z [162906] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9153654Z [162906] Skipping because PR was updated recently 2025-12-04T08:42:43.9154589Z ##[endgroup] 2025-12-04T08:42:43.9155303Z ##[group]Processing PR #162915 2025-12-04T08:42:43.9155994Z [162915] URL: https://github.com/pytorch/pytorch/pull/162915 2025-12-04T08:42:43.9156750Z [162915] Checking whether to label PR as stale. 2025-12-04T08:42:43.9157447Z [162915] Skipping because PR was updated recently 2025-12-04T08:42:43.9158344Z ##[endgroup] 2025-12-04T08:42:43.9159040Z ##[group]Processing PR #162919 2025-12-04T08:42:43.9159633Z [162919] URL: https://github.com/pytorch/pytorch/pull/162919 2025-12-04T08:42:43.9160522Z [162919] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9161292Z [162919] Skipping because PR was updated recently 2025-12-04T08:42:43.9162175Z ##[endgroup] 2025-12-04T08:42:43.9162891Z ##[group]Processing PR #162929 2025-12-04T08:42:43.9163561Z [162929] URL: https://github.com/pytorch/pytorch/pull/162929 2025-12-04T08:42:43.9164451Z [162929] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9165203Z [162929] Skipping because PR was updated recently 2025-12-04T08:42:43.9166006Z ##[endgroup] 2025-12-04T08:42:43.9166594Z ##[group]Processing PR #162941 2025-12-04T08:42:43.9167192Z [162941] URL: https://github.com/pytorch/pytorch/pull/162941 2025-12-04T08:42:43.9167850Z [162941] Checking whether to label PR as stale. 2025-12-04T08:42:43.9168505Z [162941] Skipping because PR was updated recently 2025-12-04T08:42:43.9169388Z ##[endgroup] 2025-12-04T08:42:43.9170081Z ##[group]Processing PR #162943 2025-12-04T08:42:43.9170783Z [162943] URL: https://github.com/pytorch/pytorch/pull/162943 2025-12-04T08:42:43.9171780Z [162943] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9172592Z [162943] Skipping because PR was updated recently 2025-12-04T08:42:43.9173495Z ##[endgroup] 2025-12-04T08:42:43.9174179Z ##[group]Processing PR #162945 2025-12-04T08:42:43.9174783Z [162945] URL: https://github.com/pytorch/pytorch/pull/162945 2025-12-04T08:42:43.9175588Z [162945] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9176344Z [162945] Skipping because PR was updated recently 2025-12-04T08:42:43.9177248Z ##[endgroup] 2025-12-04T08:42:43.9177925Z ##[group]Processing PR #162953 2025-12-04T08:42:43.9178606Z [162953] URL: https://github.com/pytorch/pytorch/pull/162953 2025-12-04T08:42:43.9179385Z [162953] Checking whether to label PR as stale. 2025-12-04T08:42:43.9180071Z [162953] Skipping because PR was updated recently 2025-12-04T08:42:43.9181007Z ##[endgroup] 2025-12-04T08:42:43.9181703Z ##[group]Processing PR #162954 2025-12-04T08:42:43.9182694Z [162954] URL: https://github.com/pytorch/pytorch/pull/162954 2025-12-04T08:42:43.9183490Z [162954] Checking whether to label PR as stale. 2025-12-04T08:42:43.9184131Z [162954] Skipping because PR was updated recently 2025-12-04T08:42:43.9185029Z ##[endgroup] 2025-12-04T08:42:43.9185745Z ##[group]Processing PR #162955 2025-12-04T08:42:43.9186406Z [162955] URL: https://github.com/pytorch/pytorch/pull/162955 2025-12-04T08:42:43.9187285Z [162955] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9188072Z [162955] Skipping because PR was updated recently 2025-12-04T08:42:43.9188992Z ##[endgroup] 2025-12-04T08:42:43.9189715Z ##[group]Processing PR #162967 2025-12-04T08:42:43.9190398Z [162967] URL: https://github.com/pytorch/pytorch/pull/162967 2025-12-04T08:42:43.9191288Z [162967] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9192100Z [162967] Skipping because PR was updated recently 2025-12-04T08:42:43.9192944Z ##[endgroup] 2025-12-04T08:42:43.9193995Z ##[group]Processing PR #162999 2025-12-04T08:42:43.9194522Z [162999] URL: https://github.com/pytorch/pytorch/pull/162999 2025-12-04T08:42:43.9195223Z [162999] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9195862Z [162999] Skipping because PR was updated recently 2025-12-04T08:42:43.9196697Z ##[endgroup] 2025-12-04T08:42:43.9197531Z ##[group]Processing PR #163000 2025-12-04T08:42:43.9198101Z [163000] URL: https://github.com/pytorch/pytorch/pull/163000 2025-12-04T08:42:43.9198875Z [163000] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9199645Z [163000] Skipping because PR was updated recently 2025-12-04T08:42:43.9200503Z ##[endgroup] 2025-12-04T08:42:43.9201186Z ##[group]Processing PR #163001 2025-12-04T08:42:43.9201809Z [163001] URL: https://github.com/pytorch/pytorch/pull/163001 2025-12-04T08:42:43.9202531Z [163001] Checking whether to label PR as stale. 2025-12-04T08:42:43.9203146Z [163001] Skipping because PR was updated recently 2025-12-04T08:42:43.9203994Z ##[endgroup] 2025-12-04T08:42:43.9204663Z ##[group]Processing PR #163015 2025-12-04T08:42:43.9205304Z [163015] URL: https://github.com/pytorch/pytorch/pull/163015 2025-12-04T08:42:43.9206029Z [163015] Checking whether to label PR as stale. 2025-12-04T08:42:43.9206685Z [163015] Skipping because PR was updated recently 2025-12-04T08:42:43.9207565Z ##[endgroup] 2025-12-04T08:42:43.9208208Z ##[group]Processing PR #163030 2025-12-04T08:42:43.9208828Z [163030] URL: https://github.com/pytorch/pytorch/pull/163030 2025-12-04T08:42:43.9209551Z [163030] Checking whether to label PR as stale. 2025-12-04T08:42:43.9210203Z [163030] Skipping because PR was updated recently 2025-12-04T08:42:43.9211029Z ##[endgroup] 2025-12-04T08:42:43.9211838Z ##[group]Processing PR #163034 2025-12-04T08:42:43.9212441Z [163034] URL: https://github.com/pytorch/pytorch/pull/163034 2025-12-04T08:42:43.9213188Z [163034] Checking whether to label PR as stale. 2025-12-04T08:42:43.9213839Z [163034] Skipping because PR was updated recently 2025-12-04T08:42:43.9214690Z ##[endgroup] 2025-12-04T08:42:43.9215366Z ##[group]Processing PR #163053 2025-12-04T08:42:43.9215996Z [163053] URL: https://github.com/pytorch/pytorch/pull/163053 2025-12-04T08:42:43.9216741Z [163053] Checking whether to label PR as stale. 2025-12-04T08:42:43.9217410Z [163053] Skipping because PR was updated recently 2025-12-04T08:42:43.9218313Z ##[endgroup] 2025-12-04T08:42:43.9218994Z ##[group]Processing PR #163054 2025-12-04T08:42:43.9219664Z [163054] URL: https://github.com/pytorch/pytorch/pull/163054 2025-12-04T08:42:43.9220532Z [163054] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9221302Z [163054] Skipping because PR was updated recently 2025-12-04T08:42:43.9222223Z ##[endgroup] 2025-12-04T08:42:43.9222958Z ##[group]Processing PR #163058 2025-12-04T08:42:43.9223654Z [163058] URL: https://github.com/pytorch/pytorch/pull/163058 2025-12-04T08:42:43.9224529Z [163058] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9225596Z [163058] Skipping because PR was updated recently 2025-12-04T08:42:43.9226474Z ##[endgroup] 2025-12-04T08:42:43.9227185Z ##[group]Processing PR #163067 2025-12-04T08:42:43.9263017Z [163067] URL: https://github.com/pytorch/pytorch/pull/163067 2025-12-04T08:42:43.9264992Z [163067] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9265881Z [163067] Skipping because PR was updated recently 2025-12-04T08:42:43.9266990Z ##[endgroup] 2025-12-04T08:42:43.9267789Z ##[group]Processing PR #163089 2025-12-04T08:42:43.9268446Z [163089] URL: https://github.com/pytorch/pytorch/pull/163089 2025-12-04T08:42:43.9269324Z [163089] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9270143Z [163089] Skipping because PR was updated recently 2025-12-04T08:42:43.9271098Z ##[endgroup] 2025-12-04T08:42:43.9271798Z ##[group]Processing PR #163102 2025-12-04T08:42:43.9272465Z [163102] URL: https://github.com/pytorch/pytorch/pull/163102 2025-12-04T08:42:43.9273287Z [163102] Checking whether to label PR as stale. 2025-12-04T08:42:43.9274007Z [163102] Skipping because PR was updated recently 2025-12-04T08:42:43.9274916Z ##[endgroup] 2025-12-04T08:42:43.9275646Z ##[group]Processing PR #163114 2025-12-04T08:42:43.9276300Z [163114] URL: https://github.com/pytorch/pytorch/pull/163114 2025-12-04T08:42:43.9277484Z [163114] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9278318Z [163114] Skipping because PR was updated recently 2025-12-04T08:42:43.9279263Z ##[endgroup] 2025-12-04T08:42:43.9279970Z ##[group]Processing PR #163119 2025-12-04T08:42:43.9280670Z [163119] URL: https://github.com/pytorch/pytorch/pull/163119 2025-12-04T08:42:43.9281582Z [163119] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9282397Z [163119] Skipping because PR was updated recently 2025-12-04T08:42:43.9283336Z ##[endgroup] 2025-12-04T08:42:43.9284023Z ##[group]Processing PR #163124 2025-12-04T08:42:43.9284674Z [163124] URL: https://github.com/pytorch/pytorch/pull/163124 2025-12-04T08:42:43.9285569Z [163124] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9286379Z [163124] Skipping because PR was updated recently 2025-12-04T08:42:43.9287313Z ##[endgroup] 2025-12-04T08:42:43.9288044Z ##[group]Processing PR #163139 2025-12-04T08:42:43.9288752Z [163139] URL: https://github.com/pytorch/pytorch/pull/163139 2025-12-04T08:42:43.9289567Z [163139] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9290396Z [163139] Skipping because PR was updated recently 2025-12-04T08:42:43.9291434Z ##[endgroup] 2025-12-04T08:42:43.9292130Z ##[group]Processing PR #163151 2025-12-04T08:42:43.9292786Z [163151] URL: https://github.com/pytorch/pytorch/pull/163151 2025-12-04T08:42:43.9293593Z [163151] Checking whether to label PR as stale. 2025-12-04T08:42:43.9294280Z [163151] Skipping because PR was updated recently 2025-12-04T08:42:43.9295199Z ##[endgroup] 2025-12-04T08:42:43.9295932Z ##[group]Processing PR #163161 2025-12-04T08:42:43.9296588Z [163161] URL: https://github.com/pytorch/pytorch/pull/163161 2025-12-04T08:42:43.9297412Z [163161] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9298185Z [163161] Skipping because PR was updated recently 2025-12-04T08:42:43.9299098Z ##[endgroup] 2025-12-04T08:42:43.9299801Z ##[group]Processing PR #163176 2025-12-04T08:42:43.9300508Z [163176] URL: https://github.com/pytorch/pytorch/pull/163176 2025-12-04T08:42:43.9301361Z [163176] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9302152Z [163176] Skipping because PR was updated recently 2025-12-04T08:42:43.9303081Z ##[endgroup] 2025-12-04T08:42:43.9303797Z ##[group]Processing PR #163182 2025-12-04T08:42:43.9304499Z [163182] URL: https://github.com/pytorch/pytorch/pull/163182 2025-12-04T08:42:43.9305383Z [163182] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9306161Z [163182] Skipping because PR was updated recently 2025-12-04T08:42:43.9307361Z ##[endgroup] 2025-12-04T08:42:43.9308078Z ##[group]Processing PR #163183 2025-12-04T08:42:43.9308759Z [163183] URL: https://github.com/pytorch/pytorch/pull/163183 2025-12-04T08:42:43.9309677Z [163183] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9310498Z [163183] Skipping because PR was updated recently 2025-12-04T08:42:43.9311442Z ##[endgroup] 2025-12-04T08:42:43.9312162Z ##[group]Processing PR #163192 2025-12-04T08:42:43.9312839Z [163192] URL: https://github.com/pytorch/pytorch/pull/163192 2025-12-04T08:42:43.9313745Z [163192] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9314560Z [163192] Skipping because PR was updated recently 2025-12-04T08:42:43.9315466Z ##[endgroup] 2025-12-04T08:42:43.9316181Z ##[group]Processing PR #163195 2025-12-04T08:42:43.9316845Z [163195] URL: https://github.com/pytorch/pytorch/pull/163195 2025-12-04T08:42:43.9317733Z [163195] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9318475Z [163195] Skipping because PR was updated recently 2025-12-04T08:42:43.9319309Z ##[endgroup] 2025-12-04T08:42:43.9320012Z ##[group]Processing PR #163198 2025-12-04T08:42:43.9320675Z [163198] URL: https://github.com/pytorch/pytorch/pull/163198 2025-12-04T08:42:43.9321554Z [163198] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9322482Z [163198] Skipping because PR was updated recently 2025-12-04T08:42:43.9323224Z ##[endgroup] 2025-12-04T08:42:43.9323652Z ##[group]Processing PR #163199 2025-12-04T08:42:43.9324028Z [163199] URL: https://github.com/pytorch/pytorch/pull/163199 2025-12-04T08:42:43.9324496Z [163199] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9324935Z [163199] Skipping because PR was updated recently 2025-12-04T08:42:43.9325426Z ##[endgroup] 2025-12-04T08:42:43.9325805Z ##[group]Processing PR #163200 2025-12-04T08:42:43.9326172Z [163200] URL: https://github.com/pytorch/pytorch/pull/163200 2025-12-04T08:42:43.9326592Z [163200] Checking whether to label PR as stale. 2025-12-04T08:42:43.9326975Z [163200] Skipping because PR was updated recently 2025-12-04T08:42:43.9327464Z ##[endgroup] 2025-12-04T08:42:43.9327849Z ##[group]Processing PR #163201 2025-12-04T08:42:43.9328204Z [163201] URL: https://github.com/pytorch/pytorch/pull/163201 2025-12-04T08:42:43.9328684Z [163201] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9329110Z [163201] Skipping because PR was updated recently 2025-12-04T08:42:43.9329598Z ##[endgroup] 2025-12-04T08:42:43.9329984Z ##[group]Processing PR #163204 2025-12-04T08:42:43.9330349Z [163204] URL: https://github.com/pytorch/pytorch/pull/163204 2025-12-04T08:42:43.9330808Z [163204] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9331243Z [163204] Skipping because PR was updated recently 2025-12-04T08:42:43.9331864Z ##[endgroup] 2025-12-04T08:42:43.9332962Z ##[group]Processing PR #163206 2025-12-04T08:42:43.9333671Z [163206] URL: https://github.com/pytorch/pytorch/pull/163206 2025-12-04T08:42:43.9334999Z [163206] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9335440Z [163206] Skipping because PR was updated recently 2025-12-04T08:42:43.9335956Z ##[endgroup] 2025-12-04T08:42:43.9336347Z ##[group]Processing PR #163237 2025-12-04T08:42:43.9336710Z [163237] URL: https://github.com/pytorch/pytorch/pull/163237 2025-12-04T08:42:43.9337483Z [163237] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9338151Z [163237] Skipping because PR was updated recently 2025-12-04T08:42:43.9338887Z ##[endgroup] 2025-12-04T08:42:43.9339513Z ##[group]Processing PR #163245 2025-12-04T08:42:43.9340112Z [163245] URL: https://github.com/pytorch/pytorch/pull/163245 2025-12-04T08:42:43.9340739Z [163245] Checking whether to label PR as stale. 2025-12-04T08:42:43.9341329Z [163245] Skipping because PR was updated recently 2025-12-04T08:42:43.9342081Z ##[endgroup] 2025-12-04T08:42:43.9342709Z ##[group]Processing PR #163251 2025-12-04T08:42:43.9343512Z [163251] URL: https://github.com/pytorch/pytorch/pull/163251 2025-12-04T08:42:43.9344151Z [163251] Checking whether to label PR as stale. 2025-12-04T08:42:43.9344760Z [163251] Skipping because PR was updated recently 2025-12-04T08:42:43.9345498Z ##[endgroup] 2025-12-04T08:42:43.9346116Z ##[group]Processing PR #163254 2025-12-04T08:42:43.9346711Z [163254] URL: https://github.com/pytorch/pytorch/pull/163254 2025-12-04T08:42:43.9347416Z [163254] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9348053Z [163254] Skipping because PR was updated recently 2025-12-04T08:42:43.9348794Z ##[endgroup] 2025-12-04T08:42:43.9349417Z ##[group]Processing PR #163260 2025-12-04T08:42:43.9350016Z [163260] URL: https://github.com/pytorch/pytorch/pull/163260 2025-12-04T08:42:43.9350631Z [163260] Checking whether to label PR as stale. 2025-12-04T08:42:43.9351256Z [163260] Skipping because PR was updated recently 2025-12-04T08:42:43.9351986Z ##[endgroup] 2025-12-04T08:42:43.9352623Z ##[group]Processing PR #163261 2025-12-04T08:42:43.9353203Z [163261] URL: https://github.com/pytorch/pytorch/pull/163261 2025-12-04T08:42:43.9353924Z [163261] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9354560Z [163261] Skipping because PR was updated recently 2025-12-04T08:42:43.9355297Z ##[endgroup] 2025-12-04T08:42:43.9356044Z ##[group]Processing PR #163285 2025-12-04T08:42:43.9356661Z [163285] URL: https://github.com/pytorch/pytorch/pull/163285 2025-12-04T08:42:43.9357355Z [163285] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9358007Z [163285] Skipping because PR was updated recently 2025-12-04T08:42:43.9358947Z ##[endgroup] 2025-12-04T08:42:43.9359575Z ##[group]Processing PR #163291 2025-12-04T08:42:43.9360162Z [163291] URL: https://github.com/pytorch/pytorch/pull/163291 2025-12-04T08:42:43.9360797Z [163291] Checking whether to label PR as stale. 2025-12-04T08:42:43.9361390Z [163291] Skipping because PR was updated recently 2025-12-04T08:42:43.9362144Z ##[endgroup] 2025-12-04T08:42:43.9362764Z ##[group]Processing PR #163301 2025-12-04T08:42:43.9363366Z [163301] URL: https://github.com/pytorch/pytorch/pull/163301 2025-12-04T08:42:43.9364058Z [163301] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9364716Z [163301] Skipping because PR was updated recently 2025-12-04T08:42:43.9365461Z ##[endgroup] 2025-12-04T08:42:43.9366085Z ##[group]Processing PR #163320 2025-12-04T08:42:43.9366664Z [163320] URL: https://github.com/pytorch/pytorch/pull/163320 2025-12-04T08:42:43.9367375Z [163320] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9368051Z [163320] Skipping because PR was updated recently 2025-12-04T08:42:43.9368786Z ##[endgroup] 2025-12-04T08:42:43.9369402Z ##[group]Processing PR #163335 2025-12-04T08:42:43.9370000Z [163335] URL: https://github.com/pytorch/pytorch/pull/163335 2025-12-04T08:42:43.9370634Z [163335] Checking whether to label PR as stale. 2025-12-04T08:42:43.9371233Z [163335] Skipping because PR was updated recently 2025-12-04T08:42:43.9372065Z ##[endgroup] 2025-12-04T08:42:43.9372712Z ##[group]Processing PR #163348 2025-12-04T08:42:43.9373313Z [163348] URL: https://github.com/pytorch/pytorch/pull/163348 2025-12-04T08:42:43.9374007Z [163348] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9374672Z [163348] Skipping because PR was updated recently 2025-12-04T08:42:43.9375410Z ##[endgroup] 2025-12-04T08:42:43.9376034Z ##[group]Processing PR #163355 2025-12-04T08:42:43.9376612Z [163355] URL: https://github.com/pytorch/pytorch/pull/163355 2025-12-04T08:42:43.9377246Z [163355] Checking whether to label PR as stale. 2025-12-04T08:42:43.9377844Z [163355] Skipping because PR was updated recently 2025-12-04T08:42:43.9378584Z ##[endgroup] 2025-12-04T08:42:43.9379210Z ##[group]Processing PR #163356 2025-12-04T08:42:43.9379806Z [163356] URL: https://github.com/pytorch/pytorch/pull/163356 2025-12-04T08:42:43.9380510Z [163356] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9381284Z [163356] Skipping because PR was updated recently 2025-12-04T08:42:43.9391137Z ##[endgroup] 2025-12-04T08:42:43.9391807Z ##[group]Processing PR #163377 2025-12-04T08:42:43.9392437Z [163377] URL: https://github.com/pytorch/pytorch/pull/163377 2025-12-04T08:42:43.9393068Z [163377] Checking whether to label PR as stale. 2025-12-04T08:42:43.9393698Z [163377] Skipping because PR was updated recently 2025-12-04T08:42:43.9394448Z ##[endgroup] 2025-12-04T08:42:43.9395070Z ##[group]Processing PR #163406 2025-12-04T08:42:43.9395668Z [163406] URL: https://github.com/pytorch/pytorch/pull/163406 2025-12-04T08:42:43.9396381Z [163406] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9397028Z [163406] Skipping because PR was updated recently 2025-12-04T08:42:43.9397775Z ##[endgroup] 2025-12-04T08:42:43.9398404Z ##[group]Processing PR #163407 2025-12-04T08:42:43.9399001Z [163407] URL: https://github.com/pytorch/pytorch/pull/163407 2025-12-04T08:42:43.9399703Z [163407] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9400368Z [163407] Skipping because PR was updated recently 2025-12-04T08:42:43.9401108Z ##[endgroup] 2025-12-04T08:42:43.9401734Z ##[group]Processing PR #163410 2025-12-04T08:42:43.9402319Z [163410] URL: https://github.com/pytorch/pytorch/pull/163410 2025-12-04T08:42:43.9403167Z [163410] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9403812Z [163410] Skipping because PR was updated recently 2025-12-04T08:42:43.9404556Z ##[endgroup] 2025-12-04T08:42:43.9405209Z ##[group]Processing PR #163418 2025-12-04T08:42:43.9405836Z [163418] URL: https://github.com/pytorch/pytorch/pull/163418 2025-12-04T08:42:43.9406531Z [163418] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9407184Z [163418] Skipping because PR was updated recently 2025-12-04T08:42:43.9407924Z ##[endgroup] 2025-12-04T08:42:43.9408548Z ##[group]Processing PR #163431 2025-12-04T08:42:43.9409137Z [163431] URL: https://github.com/pytorch/pytorch/pull/163431 2025-12-04T08:42:43.9409768Z [163431] Checking whether to label PR as stale. 2025-12-04T08:42:43.9410386Z [163431] Skipping because PR was updated recently 2025-12-04T08:42:43.9411110Z ##[endgroup] 2025-12-04T08:42:43.9411824Z ##[group]Processing PR #163453 2025-12-04T08:42:43.9412431Z [163453] URL: https://github.com/pytorch/pytorch/pull/163453 2025-12-04T08:42:43.9413135Z [163453] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9413799Z [163453] Skipping because PR was updated recently 2025-12-04T08:42:43.9414541Z ##[endgroup] 2025-12-04T08:42:43.9415163Z ##[group]Processing PR #163464 2025-12-04T08:42:43.9415750Z [163464] URL: https://github.com/pytorch/pytorch/pull/163464 2025-12-04T08:42:43.9416381Z [163464] Checking whether to label PR as stale. 2025-12-04T08:42:43.9416995Z [163464] Skipping because PR was updated recently 2025-12-04T08:42:43.9417714Z ##[endgroup] 2025-12-04T08:42:43.9418345Z ##[group]Processing PR #163466 2025-12-04T08:42:43.9418937Z [163466] URL: https://github.com/pytorch/pytorch/pull/163466 2025-12-04T08:42:43.9419572Z [163466] Checking whether to label PR as stale. 2025-12-04T08:42:43.9420164Z [163466] Skipping because PR was updated recently 2025-12-04T08:42:43.9421170Z ##[endgroup] 2025-12-04T08:42:43.9421836Z ##[group]Processing PR #163479 2025-12-04T08:42:43.9422449Z [163479] URL: https://github.com/pytorch/pytorch/pull/163479 2025-12-04T08:42:43.9423142Z [163479] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9423805Z [163479] Skipping because PR was updated recently 2025-12-04T08:42:43.9424542Z ##[endgroup] 2025-12-04T08:42:43.9425153Z ##[group]Processing PR #163480 2025-12-04T08:42:43.9425753Z [163480] URL: https://github.com/pytorch/pytorch/pull/163480 2025-12-04T08:42:43.9426464Z [163480] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9427109Z [163480] Skipping because PR was updated recently 2025-12-04T08:42:43.9427995Z ##[endgroup] 2025-12-04T08:42:43.9428629Z ##[group]Processing PR #163484 2025-12-04T08:42:43.9429232Z [163484] URL: https://github.com/pytorch/pytorch/pull/163484 2025-12-04T08:42:43.9429929Z [163484] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9430865Z [163484] Skipping because PR was updated recently 2025-12-04T08:42:43.9431740Z ##[endgroup] 2025-12-04T08:42:43.9432798Z ##[group]Processing PR #163487 2025-12-04T08:42:43.9433396Z [163487] URL: https://github.com/pytorch/pytorch/pull/163487 2025-12-04T08:42:43.9434332Z [163487] Checking whether to label PR as stale. 2025-12-04T08:42:43.9435102Z [163487] Skipping because PR was updated recently 2025-12-04T08:42:43.9435980Z ##[endgroup] 2025-12-04T08:42:43.9436727Z ##[group]Processing PR #163492 2025-12-04T08:42:43.9437422Z [163492] URL: https://github.com/pytorch/pytorch/pull/163492 2025-12-04T08:42:43.9438206Z [163492] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9438923Z [163492] Skipping because PR was updated recently 2025-12-04T08:42:43.9439797Z ##[endgroup] 2025-12-04T08:42:43.9440511Z ##[group]Processing PR #163503 2025-12-04T08:42:43.9441181Z [163503] URL: https://github.com/pytorch/pytorch/pull/163503 2025-12-04T08:42:43.9441870Z [163503] Checking whether to label PR as stale. 2025-12-04T08:42:43.9442584Z [163503] Skipping because PR was updated recently 2025-12-04T08:42:43.9443634Z ##[endgroup] 2025-12-04T08:42:43.9444383Z ##[group]Processing PR #163508 2025-12-04T08:42:43.9445073Z [163508] URL: https://github.com/pytorch/pytorch/pull/163508 2025-12-04T08:42:43.9446102Z [163508] Checking whether to label PR as stale. 2025-12-04T08:42:43.9446816Z [163508] Skipping because PR was updated recently 2025-12-04T08:42:43.9447707Z ##[endgroup] 2025-12-04T08:42:43.9448425Z ##[group]Processing PR #163527 2025-12-04T08:42:43.9449126Z [163527] URL: https://github.com/pytorch/pytorch/pull/163527 2025-12-04T08:42:43.9449791Z [163527] Checking whether to label PR as stale. 2025-12-04T08:42:43.9450503Z [163527] Skipping because PR was updated recently 2025-12-04T08:42:43.9451441Z ##[endgroup] 2025-12-04T08:42:43.9452381Z ##[group]Processing PR #163531 2025-12-04T08:42:43.9453166Z [163531] URL: https://github.com/pytorch/pytorch/pull/163531 2025-12-04T08:42:43.9453931Z [163531] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9454583Z [163531] Skipping because PR was updated recently 2025-12-04T08:42:43.9455344Z ##[endgroup] 2025-12-04T08:42:43.9455968Z ##[group]Processing PR #163538 2025-12-04T08:42:43.9456566Z [163538] URL: https://github.com/pytorch/pytorch/pull/163538 2025-12-04T08:42:43.9457267Z [163538] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9458114Z [163538] Skipping because PR was updated recently 2025-12-04T08:42:43.9458888Z ##[endgroup] 2025-12-04T08:42:43.9459511Z ##[group]Processing PR #163573 2025-12-04T08:42:43.9460097Z [163573] URL: https://github.com/pytorch/pytorch/pull/163573 2025-12-04T08:42:43.9460747Z [163573] Checking whether to label PR as stale. 2025-12-04T08:42:43.9461371Z [163573] Skipping because PR was updated recently 2025-12-04T08:42:43.9462109Z ##[endgroup] 2025-12-04T08:42:43.9462736Z ##[group]Processing PR #163582 2025-12-04T08:42:43.9463711Z [163582] URL: https://github.com/pytorch/pytorch/pull/163582 2025-12-04T08:42:43.9464574Z [163582] Checking whether to label PR as stale. 2025-12-04T08:42:43.9464960Z [163582] Skipping because PR was updated recently 2025-12-04T08:42:43.9465463Z ##[endgroup] 2025-12-04T08:42:43.9465851Z ##[group]Processing PR #163586 2025-12-04T08:42:43.9466206Z [163586] URL: https://github.com/pytorch/pytorch/pull/163586 2025-12-04T08:42:43.9466688Z [163586] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9467113Z [163586] Skipping because PR was updated recently 2025-12-04T08:42:43.9467599Z ##[endgroup] 2025-12-04T08:42:43.9467983Z ##[group]Processing PR #163605 2025-12-04T08:42:43.9468351Z [163605] URL: https://github.com/pytorch/pytorch/pull/163605 2025-12-04T08:42:43.9468955Z [163605] Checking whether to label PR as stale. 2025-12-04T08:42:43.9469608Z [163605] Skipping because PR was updated recently 2025-12-04T08:42:43.9470198Z ##[endgroup] 2025-12-04T08:42:43.9470577Z ##[group]Processing PR #163615 2025-12-04T08:42:43.9471168Z [163615] URL: https://github.com/pytorch/pytorch/pull/163615 2025-12-04T08:42:43.9471966Z [163615] Checking whether to label PR as stale. 2025-12-04T08:42:43.9472628Z [163615] Skipping because PR was updated recently 2025-12-04T08:42:43.9473482Z ##[endgroup] 2025-12-04T08:42:43.9474173Z ##[group]Processing PR #163618 2025-12-04T08:42:43.9474841Z [163618] URL: https://github.com/pytorch/pytorch/pull/163618 2025-12-04T08:42:43.9475497Z [163618] Checking whether to label PR as stale. 2025-12-04T08:42:43.9476166Z [163618] Skipping because PR was updated recently 2025-12-04T08:42:43.9477006Z ##[endgroup] 2025-12-04T08:42:43.9477693Z ##[group]Processing PR #163625 2025-12-04T08:42:43.9478342Z [163625] URL: https://github.com/pytorch/pytorch/pull/163625 2025-12-04T08:42:43.9479008Z [163625] Checking whether to label PR as stale. 2025-12-04T08:42:43.9479676Z [163625] Skipping because PR was updated recently 2025-12-04T08:42:43.9480519Z ##[endgroup] 2025-12-04T08:42:43.9481206Z ##[group]Processing PR #163631 2025-12-04T08:42:43.9481875Z [163631] URL: https://github.com/pytorch/pytorch/pull/163631 2025-12-04T08:42:43.9482894Z [163631] Checking whether to label PR as stale. 2025-12-04T08:42:43.9483541Z [163631] Skipping because PR was updated recently 2025-12-04T08:42:43.9484400Z ##[endgroup] 2025-12-04T08:42:43.9485089Z ##[group]Processing PR #163635 2025-12-04T08:42:43.9485703Z [163635] URL: https://github.com/pytorch/pytorch/pull/163635 2025-12-04T08:42:43.9486396Z [163635] Checking whether to label PR as stale. 2025-12-04T08:42:43.9487069Z [163635] Skipping because PR was updated recently 2025-12-04T08:42:43.9487918Z ##[endgroup] 2025-12-04T08:42:43.9488607Z ##[group]Processing PR #163636 2025-12-04T08:42:43.9489286Z [163636] URL: https://github.com/pytorch/pytorch/pull/163636 2025-12-04T08:42:43.9489943Z [163636] Checking whether to label PR as stale. 2025-12-04T08:42:43.9490619Z [163636] Skipping because PR was updated recently 2025-12-04T08:42:43.9491552Z ##[endgroup] 2025-12-04T08:42:43.9492251Z ##[group]Processing PR #163656 2025-12-04T08:42:43.9492891Z [163656] URL: https://github.com/pytorch/pytorch/pull/163656 2025-12-04T08:42:43.9493566Z [163656] Checking whether to label PR as stale. 2025-12-04T08:42:43.9494235Z [163656] Skipping because PR was updated recently 2025-12-04T08:42:43.9495070Z ##[endgroup] 2025-12-04T08:42:43.9495756Z ##[group]Processing PR #163708 2025-12-04T08:42:43.9496418Z [163708] URL: https://github.com/pytorch/pytorch/pull/163708 2025-12-04T08:42:43.9497183Z [163708] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9497865Z [163708] Skipping because PR was updated recently 2025-12-04T08:42:43.9498721Z ##[endgroup] 2025-12-04T08:42:43.9499408Z ##[group]Processing PR #163726 2025-12-04T08:42:43.9500060Z [163726] URL: https://github.com/pytorch/pytorch/pull/163726 2025-12-04T08:42:43.9500840Z [163726] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9501531Z [163726] Skipping because PR was updated recently 2025-12-04T08:42:43.9502373Z ##[endgroup] 2025-12-04T08:42:43.9503051Z ##[group]Processing PR #163727 2025-12-04T08:42:43.9503724Z [163727] URL: https://github.com/pytorch/pytorch/pull/163727 2025-12-04T08:42:43.9504509Z [163727] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:43.9505178Z [163727] Skipping because PR was updated recently 2025-12-04T08:42:43.9505952Z ##[endgroup] 2025-12-04T08:42:45.0001705Z ##[group]Processing PR #163760 2025-12-04T08:42:45.0002818Z [163760] URL: https://github.com/pytorch/pytorch/pull/163760 2025-12-04T08:42:45.0004026Z [163760] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0005152Z [163760] Skipping because PR was updated recently 2025-12-04T08:42:45.0006746Z ##[endgroup] 2025-12-04T08:42:45.0014546Z ##[group]Processing PR #163767 2025-12-04T08:42:45.0015470Z [163767] URL: https://github.com/pytorch/pytorch/pull/163767 2025-12-04T08:42:45.0016353Z [163767] Checking whether to label PR as stale. 2025-12-04T08:42:45.0017227Z [163767] Skipping because PR was updated recently 2025-12-04T08:42:45.0018296Z ##[endgroup] 2025-12-04T08:42:45.0019282Z ##[group]Processing PR #163772 2025-12-04T08:42:45.0020060Z [163772] URL: https://github.com/pytorch/pytorch/pull/163772 2025-12-04T08:42:45.0020971Z [163772] Checking whether to label PR as stale. 2025-12-04T08:42:45.0021786Z [163772] Skipping because PR was updated recently 2025-12-04T08:42:45.0022730Z ##[endgroup] 2025-12-04T08:42:45.0023687Z ##[group]Processing PR #163780 2025-12-04T08:42:45.0024496Z [163780] URL: https://github.com/pytorch/pytorch/pull/163780 2025-12-04T08:42:45.0025415Z [163780] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0026406Z [163780] Skipping because PR was updated recently 2025-12-04T08:42:45.0027471Z ##[endgroup] 2025-12-04T08:42:45.0028265Z ##[group]Processing PR #163806 2025-12-04T08:42:45.0029064Z [163806] URL: https://github.com/pytorch/pytorch/pull/163806 2025-12-04T08:42:45.0030004Z [163806] Checking whether to label PR as stale. 2025-12-04T08:42:45.0030714Z [163806] Skipping because PR was updated recently 2025-12-04T08:42:45.0064875Z ##[endgroup] 2025-12-04T08:42:45.0066195Z ##[group]Processing PR #163814 2025-12-04T08:42:45.0067023Z [163814] URL: https://github.com/pytorch/pytorch/pull/163814 2025-12-04T08:42:45.0067816Z [163814] Checking whether to label PR as stale. 2025-12-04T08:42:45.0068638Z [163814] Skipping because PR was updated recently 2025-12-04T08:42:45.0069669Z ##[endgroup] 2025-12-04T08:42:45.0070474Z ##[group]Processing PR #163815 2025-12-04T08:42:45.0071188Z [163815] URL: https://github.com/pytorch/pytorch/pull/163815 2025-12-04T08:42:45.0072015Z [163815] Checking whether to label PR as stale. 2025-12-04T08:42:45.0072737Z [163815] Skipping because PR was updated recently 2025-12-04T08:42:45.0073657Z ##[endgroup] 2025-12-04T08:42:45.0074726Z ##[group]Processing PR #163826 2025-12-04T08:42:45.0075408Z [163826] URL: https://github.com/pytorch/pytorch/pull/163826 2025-12-04T08:42:45.0076321Z [163826] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0077120Z [163826] Skipping because PR was updated recently 2025-12-04T08:42:45.0077794Z ##[endgroup] 2025-12-04T08:42:45.0078187Z ##[group]Processing PR #163827 2025-12-04T08:42:45.0078544Z [163827] URL: https://github.com/pytorch/pytorch/pull/163827 2025-12-04T08:42:45.0079022Z [163827] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0079445Z [163827] Skipping because PR was updated recently 2025-12-04T08:42:45.0079934Z ##[endgroup] 2025-12-04T08:42:45.0080317Z ##[group]Processing PR #163830 2025-12-04T08:42:45.0080681Z [163830] URL: https://github.com/pytorch/pytorch/pull/163830 2025-12-04T08:42:45.0081088Z [163830] Checking whether to label PR as stale. 2025-12-04T08:42:45.0081477Z [163830] Skipping because PR was updated recently 2025-12-04T08:42:45.0081962Z ##[endgroup] 2025-12-04T08:42:45.0082332Z ##[group]Processing PR #163831 2025-12-04T08:42:45.0082695Z [163831] URL: https://github.com/pytorch/pytorch/pull/163831 2025-12-04T08:42:45.0083115Z [163831] Checking whether to label PR as stale. 2025-12-04T08:42:45.0083479Z [163831] Skipping because PR was updated recently 2025-12-04T08:42:45.0083960Z ##[endgroup] 2025-12-04T08:42:45.0084341Z ##[group]Processing PR #163832 2025-12-04T08:42:45.0084690Z [163832] URL: https://github.com/pytorch/pytorch/pull/163832 2025-12-04T08:42:45.0085161Z [163832] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0085584Z [163832] Skipping because PR was updated recently 2025-12-04T08:42:45.0086334Z ##[endgroup] 2025-12-04T08:42:45.0086812Z ##[group]Processing PR #163838 2025-12-04T08:42:45.0087180Z [163838] URL: https://github.com/pytorch/pytorch/pull/163838 2025-12-04T08:42:45.0087928Z [163838] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0088365Z [163838] Skipping because PR was updated recently 2025-12-04T08:42:45.0088852Z ##[endgroup] 2025-12-04T08:42:45.0089239Z ##[group]Processing PR #163841 2025-12-04T08:42:45.0089610Z [163841] URL: https://github.com/pytorch/pytorch/pull/163841 2025-12-04T08:42:45.0090023Z [163841] Checking whether to label PR as stale. 2025-12-04T08:42:45.0090398Z [163841] Skipping because PR was updated recently 2025-12-04T08:42:45.0090880Z ##[endgroup] 2025-12-04T08:42:45.0091354Z ##[group]Processing PR #163884 2025-12-04T08:42:45.0091713Z [163884] URL: https://github.com/pytorch/pytorch/pull/163884 2025-12-04T08:42:45.0092190Z [163884] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0092613Z [163884] Skipping because PR was updated recently 2025-12-04T08:42:45.0093101Z ##[endgroup] 2025-12-04T08:42:45.0093486Z ##[group]Processing PR #163906 2025-12-04T08:42:45.0093836Z [163906] URL: https://github.com/pytorch/pytorch/pull/163906 2025-12-04T08:42:45.0094269Z [163906] Checking whether to label PR as stale. 2025-12-04T08:42:45.0094642Z [163906] Skipping because PR was updated recently 2025-12-04T08:42:45.0095116Z ##[endgroup] 2025-12-04T08:42:45.0095497Z ##[group]Processing PR #163909 2025-12-04T08:42:45.0095868Z [163909] URL: https://github.com/pytorch/pytorch/pull/163909 2025-12-04T08:42:45.0096421Z [163909] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0096861Z [163909] Skipping because PR was updated recently 2025-12-04T08:42:45.0097348Z ##[endgroup] 2025-12-04T08:42:45.0097736Z ##[group]Processing PR #163911 2025-12-04T08:42:45.0098095Z [163911] URL: https://github.com/pytorch/pytorch/pull/163911 2025-12-04T08:42:45.0098514Z [163911] Checking whether to label PR as stale. 2025-12-04T08:42:45.0098878Z [163911] Skipping because PR was updated recently 2025-12-04T08:42:45.0099365Z ##[endgroup] 2025-12-04T08:42:45.0099753Z ##[group]Processing PR #163934 2025-12-04T08:42:45.0100113Z [163934] URL: https://github.com/pytorch/pytorch/pull/163934 2025-12-04T08:42:45.0100591Z [163934] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0101030Z [163934] Skipping because PR was updated recently 2025-12-04T08:42:45.0101505Z ##[endgroup] 2025-12-04T08:42:45.0101886Z ##[group]Processing PR #163942 2025-12-04T08:42:45.0102253Z [163942] URL: https://github.com/pytorch/pytorch/pull/163942 2025-12-04T08:42:45.0102658Z [163942] Checking whether to label PR as stale. 2025-12-04T08:42:45.0103034Z [163942] Skipping because PR was updated recently 2025-12-04T08:42:45.0103517Z ##[endgroup] 2025-12-04T08:42:45.0103885Z ##[group]Processing PR #163943 2025-12-04T08:42:45.0104249Z [163943] URL: https://github.com/pytorch/pytorch/pull/163943 2025-12-04T08:42:45.0104670Z [163943] Checking whether to label PR as stale. 2025-12-04T08:42:45.0105031Z [163943] Skipping because PR was updated recently 2025-12-04T08:42:45.0105513Z ##[endgroup] 2025-12-04T08:42:45.0105899Z ##[group]Processing PR #163952 2025-12-04T08:42:45.0106247Z [163952] URL: https://github.com/pytorch/pytorch/pull/163952 2025-12-04T08:42:45.0106665Z [163952] Checking whether to label PR as stale. 2025-12-04T08:42:45.0107027Z [163952] Skipping because PR was updated recently 2025-12-04T08:42:45.0107507Z ##[endgroup] 2025-12-04T08:42:45.0107891Z ##[group]Processing PR #163961 2025-12-04T08:42:45.0108257Z [163961] URL: https://github.com/pytorch/pytorch/pull/163961 2025-12-04T08:42:45.0108661Z [163961] Checking whether to label PR as stale. 2025-12-04T08:42:45.0109035Z [163961] Skipping because PR was updated recently 2025-12-04T08:42:45.0109520Z ##[endgroup] 2025-12-04T08:42:45.0109889Z ##[group]Processing PR #163968 2025-12-04T08:42:45.0110254Z [163968] URL: https://github.com/pytorch/pytorch/pull/163968 2025-12-04T08:42:45.0110735Z [163968] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0111158Z [163968] Skipping because PR was updated recently 2025-12-04T08:42:45.0111741Z ##[endgroup] 2025-12-04T08:42:45.0112127Z ##[group]Processing PR #163975 2025-12-04T08:42:45.0112484Z [163975] URL: https://github.com/pytorch/pytorch/pull/163975 2025-12-04T08:42:45.0112901Z [163975] Checking whether to label PR as stale. 2025-12-04T08:42:45.0113261Z [163975] Skipping because PR was updated recently 2025-12-04T08:42:45.0113742Z ##[endgroup] 2025-12-04T08:42:45.0114129Z ##[group]Processing PR #163976 2025-12-04T08:42:45.0114497Z [163976] URL: https://github.com/pytorch/pytorch/pull/163976 2025-12-04T08:42:45.0114956Z [163976] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0115388Z [163976] Skipping because PR was updated recently 2025-12-04T08:42:45.0115873Z ##[endgroup] 2025-12-04T08:42:45.0116245Z ##[group]Processing PR #163992 2025-12-04T08:42:45.0116613Z [163992] URL: https://github.com/pytorch/pytorch/pull/163992 2025-12-04T08:42:45.0117074Z [163992] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0117514Z [163992] Skipping because PR was updated recently 2025-12-04T08:42:45.0118005Z ##[endgroup] 2025-12-04T08:42:45.0118389Z ##[group]Processing PR #163995 2025-12-04T08:42:45.0118739Z [163995] URL: https://github.com/pytorch/pytorch/pull/163995 2025-12-04T08:42:45.0119211Z [163995] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0119632Z [163995] Skipping because PR was updated recently 2025-12-04T08:42:45.0120215Z ##[endgroup] 2025-12-04T08:42:45.0120600Z ##[group]Processing PR #163998 2025-12-04T08:42:45.0120971Z [163998] URL: https://github.com/pytorch/pytorch/pull/163998 2025-12-04T08:42:45.0121432Z [163998] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0121981Z [163998] Skipping because PR was updated recently 2025-12-04T08:42:45.0122465Z ##[endgroup] 2025-12-04T08:42:45.0122875Z ##[group]Processing PR #164001 2025-12-04T08:42:45.0123232Z [164001] URL: https://github.com/pytorch/pytorch/pull/164001 2025-12-04T08:42:45.0123658Z [164001] Checking whether to label PR as stale. 2025-12-04T08:42:45.0124024Z [164001] Skipping because PR was updated recently 2025-12-04T08:42:45.0124510Z ##[endgroup] 2025-12-04T08:42:45.0124903Z ##[group]Processing PR #164006 2025-12-04T08:42:45.0125259Z [164006] URL: https://github.com/pytorch/pytorch/pull/164006 2025-12-04T08:42:45.0125739Z [164006] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0126184Z [164006] Skipping because PR was updated recently 2025-12-04T08:42:45.0126662Z ##[endgroup] 2025-12-04T08:42:45.0127180Z ##[group]Processing PR #164011 2025-12-04T08:42:45.0127623Z [164011] URL: https://github.com/pytorch/pytorch/pull/164011 2025-12-04T08:42:45.0128088Z [164011] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0128525Z [164011] Skipping because PR was updated recently 2025-12-04T08:42:45.0129023Z ##[endgroup] 2025-12-04T08:42:45.0129407Z ##[group]Processing PR #164014 2025-12-04T08:42:45.0129758Z [164014] URL: https://github.com/pytorch/pytorch/pull/164014 2025-12-04T08:42:45.0130239Z [164014] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0130658Z [164014] Skipping because PR was updated recently 2025-12-04T08:42:45.0131145Z ##[endgroup] 2025-12-04T08:42:45.0131630Z ##[group]Processing PR #164024 2025-12-04T08:42:45.0131980Z [164024] URL: https://github.com/pytorch/pytorch/pull/164024 2025-12-04T08:42:45.0132455Z [164024] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0132887Z [164024] Skipping because PR was updated recently 2025-12-04T08:42:45.0133357Z ##[endgroup] 2025-12-04T08:42:45.0134283Z ##[group]Processing PR #164033 2025-12-04T08:42:45.0134846Z [164033] URL: https://github.com/pytorch/pytorch/pull/164033 2025-12-04T08:42:45.0135410Z [164033] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0135855Z [164033] Skipping because PR was updated recently 2025-12-04T08:42:45.0136355Z ##[endgroup] 2025-12-04T08:42:45.0136728Z ##[group]Processing PR #164050 2025-12-04T08:42:45.0137318Z [164050] URL: https://github.com/pytorch/pytorch/pull/164050 2025-12-04T08:42:45.0137795Z [164050] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0138221Z [164050] Skipping because PR was updated recently 2025-12-04T08:42:45.0138840Z ##[endgroup] 2025-12-04T08:42:45.0139231Z ##[group]Processing PR #164051 2025-12-04T08:42:45.0139594Z [164051] URL: https://github.com/pytorch/pytorch/pull/164051 2025-12-04T08:42:45.0140012Z [164051] Checking whether to label PR as stale. 2025-12-04T08:42:45.0140376Z [164051] Skipping because PR was updated recently 2025-12-04T08:42:45.0140863Z ##[endgroup] 2025-12-04T08:42:45.0141246Z ##[group]Processing PR #164052 2025-12-04T08:42:45.0141613Z [164052] URL: https://github.com/pytorch/pytorch/pull/164052 2025-12-04T08:42:45.0142075Z [164052] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0142516Z [164052] Skipping because PR was updated recently 2025-12-04T08:42:45.0143005Z ##[endgroup] 2025-12-04T08:42:45.0143381Z ##[group]Processing PR #164060 2025-12-04T08:42:45.0143746Z [164060] URL: https://github.com/pytorch/pytorch/pull/164060 2025-12-04T08:42:45.0144163Z [164060] Checking whether to label PR as stale. 2025-12-04T08:42:45.0144525Z [164060] Skipping because PR was updated recently 2025-12-04T08:42:45.0145008Z ##[endgroup] 2025-12-04T08:42:45.0145389Z ##[group]Processing PR #164064 2025-12-04T08:42:45.0145862Z [164064] URL: https://github.com/pytorch/pytorch/pull/164064 2025-12-04T08:42:45.0146344Z [164064] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0146770Z [164064] Skipping because PR was updated recently 2025-12-04T08:42:45.0147259Z ##[endgroup] 2025-12-04T08:42:45.0147647Z ##[group]Processing PR #164069 2025-12-04T08:42:45.0148010Z [164069] URL: https://github.com/pytorch/pytorch/pull/164069 2025-12-04T08:42:45.0148414Z [164069] Checking whether to label PR as stale. 2025-12-04T08:42:45.0148788Z [164069] Skipping because PR was updated recently 2025-12-04T08:42:45.0149280Z ##[endgroup] 2025-12-04T08:42:45.0149646Z ##[group]Processing PR #164077 2025-12-04T08:42:45.0150011Z [164077] URL: https://github.com/pytorch/pytorch/pull/164077 2025-12-04T08:42:45.0150416Z [164077] Checking whether to label PR as stale. 2025-12-04T08:42:45.0150792Z [164077] Skipping because PR was updated recently 2025-12-04T08:42:45.0151277Z ##[endgroup] 2025-12-04T08:42:45.0151663Z ##[group]Processing PR #164078 2025-12-04T08:42:45.0152015Z [164078] URL: https://github.com/pytorch/pytorch/pull/164078 2025-12-04T08:42:45.0152430Z [164078] Checking whether to label PR as stale. 2025-12-04T08:42:45.0152791Z [164078] Skipping because PR was updated recently 2025-12-04T08:42:45.0153273Z ##[endgroup] 2025-12-04T08:42:45.0153652Z ##[group]Processing PR #164087 2025-12-04T08:42:45.0154020Z [164087] URL: https://github.com/pytorch/pytorch/pull/164087 2025-12-04T08:42:45.0154482Z [164087] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0154925Z [164087] Skipping because PR was updated recently 2025-12-04T08:42:45.0155411Z ##[endgroup] 2025-12-04T08:42:45.0155796Z ##[group]Processing PR #164107 2025-12-04T08:42:45.0156161Z [164107] URL: https://github.com/pytorch/pytorch/pull/164107 2025-12-04T08:42:45.0156627Z [164107] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0157062Z [164107] Skipping because PR was updated recently 2025-12-04T08:42:45.0157548Z ##[endgroup] 2025-12-04T08:42:45.0157928Z ##[group]Processing PR #164114 2025-12-04T08:42:45.0158280Z [164114] URL: https://github.com/pytorch/pytorch/pull/164114 2025-12-04T08:42:45.0158752Z [164114] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0159177Z [164114] Skipping because PR was updated recently 2025-12-04T08:42:45.0159664Z ##[endgroup] 2025-12-04T08:42:45.0160058Z ##[group]Processing PR #164115 2025-12-04T08:42:45.0160426Z [164115] URL: https://github.com/pytorch/pytorch/pull/164115 2025-12-04T08:42:45.0160890Z [164115] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0161416Z [164115] Skipping because PR was updated recently 2025-12-04T08:42:45.0161892Z ##[endgroup] 2025-12-04T08:42:45.0162285Z ##[group]Processing PR #164118 2025-12-04T08:42:45.0162654Z [164118] URL: https://github.com/pytorch/pytorch/pull/164118 2025-12-04T08:42:45.0163117Z [164118] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0163563Z [164118] Skipping because PR was updated recently 2025-12-04T08:42:45.0164054Z ##[endgroup] 2025-12-04T08:42:45.0164447Z ##[group]Processing PR #164120 2025-12-04T08:42:45.0164797Z [164120] URL: https://github.com/pytorch/pytorch/pull/164120 2025-12-04T08:42:45.0165216Z [164120] Checking whether to label PR as stale. 2025-12-04T08:42:45.0165577Z [164120] Skipping because PR was updated recently 2025-12-04T08:42:45.0166058Z ##[endgroup] 2025-12-04T08:42:45.0166441Z ##[group]Processing PR #164121 2025-12-04T08:42:45.0166791Z [164121] URL: https://github.com/pytorch/pytorch/pull/164121 2025-12-04T08:42:45.0167215Z [164121] Checking whether to label PR as stale. 2025-12-04T08:42:45.0167587Z [164121] Skipping because PR was updated recently 2025-12-04T08:42:45.0168216Z ##[endgroup] 2025-12-04T08:42:45.0168787Z ##[group]Processing PR #164123 2025-12-04T08:42:45.0169457Z [164123] URL: https://github.com/pytorch/pytorch/pull/164123 2025-12-04T08:42:45.0170068Z [164123] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0170618Z [164123] Skipping because PR was updated recently 2025-12-04T08:42:45.0171116Z ##[endgroup] 2025-12-04T08:42:45.0171606Z ##[group]Processing PR #164126 2025-12-04T08:42:45.0171961Z [164126] URL: https://github.com/pytorch/pytorch/pull/164126 2025-12-04T08:42:45.0172385Z [164126] Checking whether to label PR as stale. 2025-12-04T08:42:45.0172750Z [164126] Skipping because PR was updated recently 2025-12-04T08:42:45.0173248Z ##[endgroup] 2025-12-04T08:42:45.0173634Z ##[group]Processing PR #164128 2025-12-04T08:42:45.0173985Z [164128] URL: https://github.com/pytorch/pytorch/pull/164128 2025-12-04T08:42:45.0174465Z [164128] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0174898Z [164128] Skipping because PR was updated recently 2025-12-04T08:42:45.0175376Z ##[endgroup] 2025-12-04T08:42:45.0175760Z ##[group]Processing PR #164134 2025-12-04T08:42:45.0176123Z [164134] URL: https://github.com/pytorch/pytorch/pull/164134 2025-12-04T08:42:45.0176589Z [164134] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0177024Z [164134] Skipping because PR was updated recently 2025-12-04T08:42:45.0177509Z ##[endgroup] 2025-12-04T08:42:45.0177878Z ##[group]Processing PR #164153 2025-12-04T08:42:45.0178244Z [164153] URL: https://github.com/pytorch/pytorch/pull/164153 2025-12-04T08:42:45.0178719Z [164153] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0179142Z [164153] Skipping because PR was updated recently 2025-12-04T08:42:45.0179629Z ##[endgroup] 2025-12-04T08:42:45.0180011Z ##[group]Processing PR #164164 2025-12-04T08:42:45.0180368Z [164164] URL: https://github.com/pytorch/pytorch/pull/164164 2025-12-04T08:42:45.0180787Z [164164] Checking whether to label PR as stale. 2025-12-04T08:42:45.0181149Z [164164] Skipping because PR was updated recently 2025-12-04T08:42:45.0181638Z ##[endgroup] 2025-12-04T08:42:45.0182017Z ##[group]Processing PR #164178 2025-12-04T08:42:45.0182384Z [164178] URL: https://github.com/pytorch/pytorch/pull/164178 2025-12-04T08:42:45.0182787Z [164178] Checking whether to label PR as stale. 2025-12-04T08:42:45.0183158Z [164178] Skipping because PR was updated recently 2025-12-04T08:42:45.0183642Z ##[endgroup] 2025-12-04T08:42:45.0184011Z ##[group]Processing PR #164181 2025-12-04T08:42:45.0184373Z [164181] URL: https://github.com/pytorch/pytorch/pull/164181 2025-12-04T08:42:45.0184791Z [164181] Checking whether to label PR as stale. 2025-12-04T08:42:45.0185150Z [164181] Skipping because PR was updated recently 2025-12-04T08:42:45.0185628Z ##[endgroup] 2025-12-04T08:42:45.0186008Z ##[group]Processing PR #164213 2025-12-04T08:42:45.0186467Z [164213] URL: https://github.com/pytorch/pytorch/pull/164213 2025-12-04T08:42:45.0186944Z [164213] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0187364Z [164213] Skipping because PR was updated recently 2025-12-04T08:42:45.0187849Z ##[endgroup] 2025-12-04T08:42:45.0188237Z ##[group]Processing PR #164222 2025-12-04T08:42:45.0188607Z [164222] URL: https://github.com/pytorch/pytorch/pull/164222 2025-12-04T08:42:45.0189009Z [164222] Checking whether to label PR as stale. 2025-12-04T08:42:45.0189383Z [164222] Skipping because PR was updated recently 2025-12-04T08:42:45.0189869Z ##[endgroup] 2025-12-04T08:42:45.0190239Z ##[group]Processing PR #164223 2025-12-04T08:42:45.0190609Z [164223] URL: https://github.com/pytorch/pytorch/pull/164223 2025-12-04T08:42:45.0191075Z [164223] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0191508Z [164223] Skipping because PR was updated recently 2025-12-04T08:42:45.0191995Z ##[endgroup] 2025-12-04T08:42:45.0192376Z ##[group]Processing PR #164227 2025-12-04T08:42:45.0192726Z [164227] URL: https://github.com/pytorch/pytorch/pull/164227 2025-12-04T08:42:45.0193195Z [164227] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0193617Z [164227] Skipping because PR was updated recently 2025-12-04T08:42:45.0194099Z ##[endgroup] 2025-12-04T08:42:45.0194541Z ##[group]Processing PR #164228 2025-12-04T08:42:45.0194933Z [164228] URL: https://github.com/pytorch/pytorch/pull/164228 2025-12-04T08:42:45.0195343Z [164228] Checking whether to label PR as stale. 2025-12-04T08:42:45.0195725Z [164228] Skipping because PR was updated recently 2025-12-04T08:42:45.0196219Z ##[endgroup] 2025-12-04T08:42:45.0196598Z ##[group]Processing PR #164246 2025-12-04T08:42:45.0196967Z [164246] URL: https://github.com/pytorch/pytorch/pull/164246 2025-12-04T08:42:45.0197377Z [164246] Checking whether to label PR as stale. 2025-12-04T08:42:45.0197758Z [164246] Skipping because PR was updated recently 2025-12-04T08:42:45.0198253Z ##[endgroup] 2025-12-04T08:42:45.0198642Z ##[group]Processing PR #164252 2025-12-04T08:42:45.0198999Z [164252] URL: https://github.com/pytorch/pytorch/pull/164252 2025-12-04T08:42:45.0199421Z [164252] Checking whether to label PR as stale. 2025-12-04T08:42:45.0199785Z [164252] Skipping because PR was updated recently 2025-12-04T08:42:45.0200272Z ##[endgroup] 2025-12-04T08:42:45.0200657Z ##[group]Processing PR #164255 2025-12-04T08:42:45.0201026Z [164255] URL: https://github.com/pytorch/pytorch/pull/164255 2025-12-04T08:42:45.0201487Z [164255] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0201920Z [164255] Skipping because PR was updated recently 2025-12-04T08:42:45.0202388Z ##[endgroup] 2025-12-04T08:42:45.0202768Z ##[group]Processing PR #164265 2025-12-04T08:42:45.0213372Z [164265] URL: https://github.com/pytorch/pytorch/pull/164265 2025-12-04T08:42:45.0214018Z [164265] Checking whether to label PR as stale. 2025-12-04T08:42:45.0214435Z [164265] Skipping because PR was updated recently 2025-12-04T08:42:45.0214986Z ##[endgroup] 2025-12-04T08:42:45.0215375Z ##[group]Processing PR #164267 2025-12-04T08:42:45.0215754Z [164267] URL: https://github.com/pytorch/pytorch/pull/164267 2025-12-04T08:42:45.0216225Z [164267] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0216672Z [164267] Skipping because PR was updated recently 2025-12-04T08:42:45.0217176Z ##[endgroup] 2025-12-04T08:42:45.0217568Z ##[group]Processing PR #164270 2025-12-04T08:42:45.0217923Z [164270] URL: https://github.com/pytorch/pytorch/pull/164270 2025-12-04T08:42:45.0218404Z [164270] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0218834Z [164270] Skipping because PR was updated recently 2025-12-04T08:42:45.0219327Z ##[endgroup] 2025-12-04T08:42:45.0219718Z ##[group]Processing PR #164273 2025-12-04T08:42:45.0220088Z [164273] URL: https://github.com/pytorch/pytorch/pull/164273 2025-12-04T08:42:45.0220497Z [164273] Checking whether to label PR as stale. 2025-12-04T08:42:45.0221052Z [164273] Skipping because PR was updated recently 2025-12-04T08:42:45.0221531Z ##[endgroup] 2025-12-04T08:42:45.0221924Z ##[group]Processing PR #164278 2025-12-04T08:42:45.0222294Z [164278] URL: https://github.com/pytorch/pytorch/pull/164278 2025-12-04T08:42:45.0222755Z [164278] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0223202Z [164278] Skipping because PR was updated recently 2025-12-04T08:42:45.0223690Z ##[endgroup] 2025-12-04T08:42:45.0224080Z ##[group]Processing PR #164314 2025-12-04T08:42:45.0224434Z [164314] URL: https://github.com/pytorch/pytorch/pull/164314 2025-12-04T08:42:45.0225048Z [164314] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0225497Z [164314] Skipping because PR was updated recently 2025-12-04T08:42:45.0225995Z ##[endgroup] 2025-12-04T08:42:45.0226383Z ##[group]Processing PR #164322 2025-12-04T08:42:45.0226755Z [164322] URL: https://github.com/pytorch/pytorch/pull/164322 2025-12-04T08:42:45.0227170Z [164322] Checking whether to label PR as stale. 2025-12-04T08:42:45.0227547Z [164322] Skipping because PR was updated recently 2025-12-04T08:42:45.0228024Z ##[endgroup] 2025-12-04T08:42:45.0228412Z ##[group]Processing PR #164328 2025-12-04T08:42:45.0228778Z [164328] URL: https://github.com/pytorch/pytorch/pull/164328 2025-12-04T08:42:45.0229287Z [164328] Checking whether to label PR as stale. 2025-12-04T08:42:45.0229670Z [164328] Skipping because PR was updated recently 2025-12-04T08:42:45.0230164Z ##[endgroup] 2025-12-04T08:42:45.0230555Z ##[group]Processing PR #164357 2025-12-04T08:42:45.0230910Z [164357] URL: https://github.com/pytorch/pytorch/pull/164357 2025-12-04T08:42:45.0231387Z [164357] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0231813Z [164357] Skipping because PR was updated recently 2025-12-04T08:42:45.0232302Z ##[endgroup] 2025-12-04T08:42:45.0232690Z ##[group]Processing PR #164359 2025-12-04T08:42:45.0233041Z [164359] URL: https://github.com/pytorch/pytorch/pull/164359 2025-12-04T08:42:45.0233474Z [164359] Checking whether to label PR as stale. 2025-12-04T08:42:45.0234422Z [164359] Skipping because PR was updated recently 2025-12-04T08:42:45.0234916Z ##[endgroup] 2025-12-04T08:42:45.0235312Z ##[group]Processing PR #164373 2025-12-04T08:42:45.0235683Z [164373] URL: https://github.com/pytorch/pytorch/pull/164373 2025-12-04T08:42:45.0236156Z [164373] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0236596Z [164373] Skipping because PR was updated recently 2025-12-04T08:42:45.0237089Z ##[endgroup] 2025-12-04T08:42:45.0237475Z ##[group]Processing PR #164379 2025-12-04T08:42:45.0237827Z [164379] URL: https://github.com/pytorch/pytorch/pull/164379 2025-12-04T08:42:45.0238304Z [164379] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0238729Z [164379] Skipping because PR was updated recently 2025-12-04T08:42:45.0239221Z ##[endgroup] 2025-12-04T08:42:45.0239610Z ##[group]Processing PR #164384 2025-12-04T08:42:45.0239969Z [164384] URL: https://github.com/pytorch/pytorch/pull/164384 2025-12-04T08:42:45.0240388Z [164384] Checking whether to label PR as stale. 2025-12-04T08:42:45.0240772Z [164384] Skipping because PR was updated recently 2025-12-04T08:42:45.0241241Z ##[endgroup] 2025-12-04T08:42:45.0241625Z ##[group]Processing PR #164386 2025-12-04T08:42:45.0241997Z [164386] URL: https://github.com/pytorch/pytorch/pull/164386 2025-12-04T08:42:45.0242457Z [164386] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0242896Z [164386] Skipping because PR was updated recently 2025-12-04T08:42:45.0243388Z ##[endgroup] 2025-12-04T08:42:45.0243759Z ##[group]Processing PR #164388 2025-12-04T08:42:45.0244125Z [164388] URL: https://github.com/pytorch/pytorch/pull/164388 2025-12-04T08:42:45.0244599Z [164388] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0245023Z [164388] Skipping because PR was updated recently 2025-12-04T08:42:45.0245718Z ##[endgroup] 2025-12-04T08:42:45.0246108Z ##[group]Processing PR #164410 2025-12-04T08:42:45.0246465Z [164410] URL: https://github.com/pytorch/pytorch/pull/164410 2025-12-04T08:42:45.0246943Z [164410] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0247369Z [164410] Skipping because PR was updated recently 2025-12-04T08:42:45.0247859Z ##[endgroup] 2025-12-04T08:42:45.0248253Z ##[group]Processing PR #164417 2025-12-04T08:42:45.0248624Z [164417] URL: https://github.com/pytorch/pytorch/pull/164417 2025-12-04T08:42:45.0249035Z [164417] Checking whether to label PR as stale. 2025-12-04T08:42:45.0249414Z [164417] Skipping because PR was updated recently 2025-12-04T08:42:45.0249904Z ##[endgroup] 2025-12-04T08:42:45.0250275Z ##[group]Processing PR #164439 2025-12-04T08:42:45.0250647Z [164439] URL: https://github.com/pytorch/pytorch/pull/164439 2025-12-04T08:42:45.0251068Z [164439] Checking whether to label PR as stale. 2025-12-04T08:42:45.0251541Z [164439] Skipping because PR was updated recently 2025-12-04T08:42:45.0252040Z ##[endgroup] 2025-12-04T08:42:45.0252428Z ##[group]Processing PR #164442 2025-12-04T08:42:45.0252796Z [164442] URL: https://github.com/pytorch/pytorch/pull/164442 2025-12-04T08:42:45.0253261Z [164442] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0253694Z [164442] Skipping because PR was updated recently 2025-12-04T08:42:45.0254290Z ##[endgroup] 2025-12-04T08:42:45.0254662Z ##[group]Processing PR #164474 2025-12-04T08:42:45.0255029Z [164474] URL: https://github.com/pytorch/pytorch/pull/164474 2025-12-04T08:42:45.0255436Z [164474] Checking whether to label PR as stale. 2025-12-04T08:42:45.0255813Z [164474] Skipping because PR was updated recently 2025-12-04T08:42:45.0256296Z ##[endgroup] 2025-12-04T08:42:45.0256680Z ##[group]Processing PR #164476 2025-12-04T08:42:45.0257029Z [164476] URL: https://github.com/pytorch/pytorch/pull/164476 2025-12-04T08:42:45.0257444Z [164476] Checking whether to label PR as stale. 2025-12-04T08:42:45.0257808Z [164476] Skipping because PR was updated recently 2025-12-04T08:42:45.0258284Z ##[endgroup] 2025-12-04T08:42:45.0258663Z ##[group]Processing PR #164479 2025-12-04T08:42:45.0259029Z [164479] URL: https://github.com/pytorch/pytorch/pull/164479 2025-12-04T08:42:45.0259434Z [164479] Checking whether to label PR as stale. 2025-12-04T08:42:45.0259806Z [164479] Skipping because PR was updated recently 2025-12-04T08:42:45.0260279Z ##[endgroup] 2025-12-04T08:42:45.0260663Z ##[group]Processing PR #164488 2025-12-04T08:42:45.0261025Z [164488] URL: https://github.com/pytorch/pytorch/pull/164488 2025-12-04T08:42:45.0261487Z [164488] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0261922Z [164488] Skipping because PR was updated recently 2025-12-04T08:42:45.0262409Z ##[endgroup] 2025-12-04T08:42:45.0262794Z ##[group]Processing PR #164495 2025-12-04T08:42:45.0263146Z [164495] URL: https://github.com/pytorch/pytorch/pull/164495 2025-12-04T08:42:45.0263565Z [164495] Checking whether to label PR as stale. 2025-12-04T08:42:45.0263935Z [164495] Skipping because PR was updated recently 2025-12-04T08:42:45.0264417Z ##[endgroup] 2025-12-04T08:42:45.0264801Z ##[group]Processing PR #164497 2025-12-04T08:42:45.0265150Z [164497] URL: https://github.com/pytorch/pytorch/pull/164497 2025-12-04T08:42:45.0265624Z [164497] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0266061Z [164497] Skipping because PR was updated recently 2025-12-04T08:42:45.0266534Z ##[endgroup] 2025-12-04T08:42:45.0266920Z ##[group]Processing PR #164498 2025-12-04T08:42:45.0267284Z [164498] URL: https://github.com/pytorch/pytorch/pull/164498 2025-12-04T08:42:45.0267745Z [164498] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0268179Z [164498] Skipping because PR was updated recently 2025-12-04T08:42:45.0268663Z ##[endgroup] 2025-12-04T08:42:45.0269047Z ##[group]Processing PR #164519 2025-12-04T08:42:45.0269396Z [164519] URL: https://github.com/pytorch/pytorch/pull/164519 2025-12-04T08:42:45.0269887Z [164519] Checking whether to label PR as stale. 2025-12-04T08:42:45.0270250Z [164519] Skipping because PR was updated recently 2025-12-04T08:42:45.0270738Z ##[endgroup] 2025-12-04T08:42:45.0271121Z ##[group]Processing PR #164524 2025-12-04T08:42:45.0271472Z [164524] URL: https://github.com/pytorch/pytorch/pull/164524 2025-12-04T08:42:45.0271950Z [164524] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0272385Z [164524] Skipping because PR was updated recently 2025-12-04T08:42:45.0272857Z ##[endgroup] 2025-12-04T08:42:45.0273235Z ##[group]Processing PR #164528 2025-12-04T08:42:45.0273596Z [164528] URL: https://github.com/pytorch/pytorch/pull/164528 2025-12-04T08:42:45.0274057Z [164528] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0274493Z [164528] Skipping because PR was updated recently 2025-12-04T08:42:45.0274973Z ##[endgroup] 2025-12-04T08:42:45.0275352Z ##[group]Processing PR #164540 2025-12-04T08:42:45.0275699Z [164540] URL: https://github.com/pytorch/pytorch/pull/164540 2025-12-04T08:42:45.0276119Z [164540] Checking whether to label PR as stale. 2025-12-04T08:42:45.0276480Z [164540] Skipping because PR was updated recently 2025-12-04T08:42:45.0276965Z ##[endgroup] 2025-12-04T08:42:45.0277346Z ##[group]Processing PR #164541 2025-12-04T08:42:45.0277695Z [164541] URL: https://github.com/pytorch/pytorch/pull/164541 2025-12-04T08:42:45.0278391Z [164541] Checking whether to label PR as stale. 2025-12-04T08:42:45.0278769Z [164541] Skipping because PR was updated recently 2025-12-04T08:42:45.0279239Z ##[endgroup] 2025-12-04T08:42:45.0279630Z ##[group]Processing PR #164542 2025-12-04T08:42:45.0280000Z [164542] URL: https://github.com/pytorch/pytorch/pull/164542 2025-12-04T08:42:45.0280462Z [164542] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:45.0280897Z [164542] Skipping because PR was updated recently 2025-12-04T08:42:45.0281383Z ##[endgroup] 2025-12-04T08:42:45.0281752Z ##[group]Processing PR #164548 2025-12-04T08:42:45.0282117Z [164548] URL: https://github.com/pytorch/pytorch/pull/164548 2025-12-04T08:42:45.0282536Z [164548] Checking whether to label PR as stale. 2025-12-04T08:42:45.0282899Z [164548] Skipping because PR was updated recently 2025-12-04T08:42:45.0283383Z ##[endgroup] 2025-12-04T08:42:45.0283767Z ##[group]Processing PR #164557 2025-12-04T08:42:45.0284126Z [164557] URL: https://github.com/pytorch/pytorch/pull/164557 2025-12-04T08:42:45.0284550Z [164557] Checking whether to label PR as stale. 2025-12-04T08:42:45.0284914Z [164557] Skipping because PR was updated recently 2025-12-04T08:42:45.0285402Z ##[endgroup] 2025-12-04T08:42:46.0589790Z ##[group]Processing PR #164560 2025-12-04T08:42:46.0590929Z [164560] URL: https://github.com/pytorch/pytorch/pull/164560 2025-12-04T08:42:46.0592056Z [164560] Checking whether to label PR as stale. 2025-12-04T08:42:46.0592970Z [164560] Skipping because PR was updated recently 2025-12-04T08:42:46.0594165Z ##[endgroup] 2025-12-04T08:42:46.0595120Z ##[group]Processing PR #164564 2025-12-04T08:42:46.0596025Z [164564] URL: https://github.com/pytorch/pytorch/pull/164564 2025-12-04T08:42:46.0597019Z [164564] Checking whether to label PR as stale. 2025-12-04T08:42:46.0597882Z [164564] Skipping because PR was updated recently 2025-12-04T08:42:46.0598780Z ##[endgroup] 2025-12-04T08:42:46.0599486Z ##[group]Processing PR #164571 2025-12-04T08:42:46.0600171Z [164571] URL: https://github.com/pytorch/pytorch/pull/164571 2025-12-04T08:42:46.0600843Z [164571] Checking whether to label PR as stale. 2025-12-04T08:42:46.0601428Z [164571] Skipping because PR was updated recently 2025-12-04T08:42:46.0602272Z ##[endgroup] 2025-12-04T08:42:46.0602926Z ##[group]Processing PR #164586 2025-12-04T08:42:46.0603536Z [164586] URL: https://github.com/pytorch/pytorch/pull/164586 2025-12-04T08:42:46.0604260Z [164586] Checking whether to label PR as stale. 2025-12-04T08:42:46.0604904Z [164586] Skipping because PR was updated recently 2025-12-04T08:42:46.0605693Z ##[endgroup] 2025-12-04T08:42:46.0606783Z ##[group]Processing PR #164597 2025-12-04T08:42:46.0607416Z [164597] URL: https://github.com/pytorch/pytorch/pull/164597 2025-12-04T08:42:46.0608121Z [164597] Checking whether to label PR as stale. 2025-12-04T08:42:46.0608761Z [164597] Skipping because PR was updated recently 2025-12-04T08:42:46.0609567Z ##[endgroup] 2025-12-04T08:42:46.0610109Z ##[group]Processing PR #164604 2025-12-04T08:42:46.0610746Z [164604] URL: https://github.com/pytorch/pytorch/pull/164604 2025-12-04T08:42:46.0611659Z [164604] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:46.0612481Z [164604] Skipping because PR was updated recently 2025-12-04T08:42:46.0613266Z ##[endgroup] 2025-12-04T08:42:46.0613881Z ##[group]Processing PR #164609 2025-12-04T08:42:46.0614495Z [164609] URL: https://github.com/pytorch/pytorch/pull/164609 2025-12-04T08:42:46.0615168Z [164609] Checking whether to label PR as stale. 2025-12-04T08:42:46.0615779Z [164609] Skipping because PR was updated recently 2025-12-04T08:42:46.0616614Z ##[endgroup] 2025-12-04T08:42:46.0617232Z ##[group]Processing PR #164614 2025-12-04T08:42:46.0617843Z [164614] URL: https://github.com/pytorch/pytorch/pull/164614 2025-12-04T08:42:46.0618639Z [164614] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:46.0619345Z [164614] Skipping because PR was updated recently 2025-12-04T08:42:46.0620163Z ##[endgroup] 2025-12-04T08:42:46.0621146Z ##[group]Processing PR #164621 2025-12-04T08:42:46.0621754Z [164621] URL: https://github.com/pytorch/pytorch/pull/164621 2025-12-04T08:42:46.0622551Z [164621] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:46.0623270Z [164621] Skipping because PR was updated recently 2025-12-04T08:42:46.0624058Z ##[endgroup] 2025-12-04T08:42:46.0742872Z ##[group]Processing PR #164626 2025-12-04T08:42:46.0743521Z [164626] URL: https://github.com/pytorch/pytorch/pull/164626 2025-12-04T08:42:46.0744332Z [164626] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:46.0745095Z [164626] Skipping because PR was updated recently 2025-12-04T08:42:46.0745853Z ##[endgroup] 2025-12-04T08:42:46.0746572Z ##[group]Processing PR #164629 2025-12-04T08:42:46.0747406Z [164629] URL: https://github.com/pytorch/pytorch/pull/164629 2025-12-04T08:42:46.0748362Z [164629] Checking whether to label PR as stale. 2025-12-04T08:42:46.0749229Z [164629] Skipping because PR was updated recently 2025-12-04T08:42:46.0750370Z ##[endgroup] 2025-12-04T08:42:46.0751246Z ##[group]Processing PR #164632 2025-12-04T08:42:46.0752056Z [164632] URL: https://github.com/pytorch/pytorch/pull/164632 2025-12-04T08:42:46.0753014Z [164632] Checking whether to label PR as stale. 2025-12-04T08:42:46.0753716Z [164632] Skipping because PR was updated recently 2025-12-04T08:42:46.0754837Z ##[endgroup] 2025-12-04T08:42:46.0755699Z ##[group]Processing PR #164633 2025-12-04T08:42:46.0756526Z [164633] URL: https://github.com/pytorch/pytorch/pull/164633 2025-12-04T08:42:46.0757594Z [164633] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:46.0758619Z [164633] Skipping because PR was updated recently 2025-12-04T08:42:46.0759724Z ##[endgroup] 2025-12-04T08:42:46.0760598Z ##[group]Processing PR #164634 2025-12-04T08:42:46.0761422Z [164634] URL: https://github.com/pytorch/pytorch/pull/164634 2025-12-04T08:42:46.0762484Z [164634] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:46.0763419Z [164634] Skipping because PR was updated recently 2025-12-04T08:42:46.0764456Z ##[endgroup] 2025-12-04T08:42:46.0765317Z ##[group]Processing PR #164635 2025-12-04T08:42:46.0766121Z [164635] URL: https://github.com/pytorch/pytorch/pull/164635 2025-12-04T08:42:46.0767204Z [164635] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:46.0768152Z [164635] Skipping because PR was updated recently 2025-12-04T08:42:46.0769220Z ##[endgroup] 2025-12-04T08:42:46.0770079Z ##[group]Processing PR #164641 2025-12-04T08:42:46.0770899Z [164641] URL: https://github.com/pytorch/pytorch/pull/164641 2025-12-04T08:42:46.0772479Z [164641] Checking whether to label PR as stale. 2025-12-04T08:42:46.0773334Z [164641] Skipping because PR was updated recently 2025-12-04T08:42:46.0774288Z ##[endgroup] 2025-12-04T08:42:46.0774974Z ##[group]Processing PR #164643 2025-12-04T08:42:46.0775806Z [164643] URL: https://github.com/pytorch/pytorch/pull/164643 2025-12-04T08:42:46.0776752Z [164643] Checking whether to label PR as stale. 2025-12-04T08:42:46.0777610Z [164643] Skipping because PR was updated recently 2025-12-04T08:42:46.0778719Z ##[endgroup] 2025-12-04T08:42:46.0779585Z ##[group]Processing PR #164648 2025-12-04T08:42:46.0780390Z [164648] URL: https://github.com/pytorch/pytorch/pull/164648 2025-12-04T08:42:46.0781474Z [164648] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:46.0782449Z [164648] Skipping because PR was updated recently 2025-12-04T08:42:46.0783551Z ##[endgroup] 2025-12-04T08:42:46.0784419Z ##[group]Processing PR #164657 2025-12-04T08:42:46.0785227Z [164657] URL: https://github.com/pytorch/pytorch/pull/164657 2025-12-04T08:42:46.0786201Z [164657] Checking whether to label PR as stale. 2025-12-04T08:42:46.0787059Z [164657] Skipping because PR was updated recently 2025-12-04T08:42:46.0787798Z ##[endgroup] 2025-12-04T08:42:46.0788328Z ##[group]Processing PR #164659 2025-12-04T08:42:46.0789583Z [164659] URL: https://github.com/pytorch/pytorch/pull/164659 2025-12-04T08:42:46.0790679Z [164659] Checking whether to label PR as stale. 2025-12-04T08:42:46.0791296Z [164659] Skipping because PR was updated recently 2025-12-04T08:42:46.0792106Z ##[endgroup] 2025-12-04T08:42:46.0792749Z ##[group]Processing PR #164661 2025-12-04T08:42:46.0793358Z [164661] URL: https://github.com/pytorch/pytorch/pull/164661 2025-12-04T08:42:46.0794166Z [164661] PR is labeled stale, checking whether we should close it. 2025-12-04T08:42:46.0794843Z [164661] Skipping because PR was updated recently 2025-12-04T08:42:46.0795816Z ##[endgroup] 2025-12-04T08:42:46.0796467Z ##[group]Processing PR #164679 2025-12-04T08:42:46.0797090Z [164679] URL: https://github.com/pytorch/pytorch/pull/164679 2025-12-04T08:42:46.0797806Z [164679] Checking whether to label PR as stale. 2025-12-04T08:42:46.0798447Z [164679] Skipping because PR was updated recently 2025-12-04T08:42:46.0799258Z ##[endgroup] 2025-12-04T08:42:46.0799903Z ##[group]Processing PR #164680 2025-12-04T08:42:46.0800539Z [164680] URL: https://github.com/pytorch/pytorch/pull/164680 2025-12-04T08:42:46.0801258Z [164680] Checking whether to label PR as stale. 2025-12-04T08:42:46.0801878Z [164680] Skipping because PR was updated recently 2025-12-04T08:42:46.0802712Z ##[endgroup] 2025-12-04T08:42:46.0803350Z ##[group]Processing PR #164690 2025-12-04T08:42:46.0803945Z [164690] URL: https://github.com/pytorch/pytorch/pull/164690 2025-12-04T08:42:46.0804673Z [164690] Checking whether to label PR as stale. 2025-12-04T08:42:46.0805303Z [164690] Skipping because PR was updated recently 2025-12-04T08:42:46.0806150Z ##[endgroup] 2025-12-04T08:42:46.0806811Z ##[group]Processing PR #164713 2025-12-04T08:42:46.0807402Z [164713] URL: https://github.com/pytorch/pytorch/pull/164713 2025-12-04T08:42:46.0808079Z [164713] Checking whether to label PR as stale. 2025-12-04T08:42:46.0808693Z [164713] Skipping because PR was updated recently 2025-12-04T08:42:46.0809530Z ##[endgroup] 2025-12-04T08:42:46.0810183Z ##[group]Processing PR #164714 2025-12-04T08:42:46.0810827Z [164714] URL: https://github.com/pytorch/pytorch/pull/164714 2025-12-04T08:42:46.0811655Z [164714] Checking whether to label PR as stale. 2025-12-04T08:42:46.0812288Z [164714] Skipping because PR was updated recently 2025-12-04T08:42:46.0813089Z ##[endgroup] 2025-12-04T08:42:46.0816240Z ##[group]Processing PR #164724 2025-12-04T08:42:46.0816870Z [164724] URL: https://github.com/pytorch/pytorch/pull/164724 2025-12-04T08:42:46.0817609Z [164724] Checking whether to label PR as stale. 2025-12-04T08:42:46.0818179Z [164724] Skipping because PR was updated recently 2025-12-04T08:42:46.0819054Z ##[endgroup] 2025-12-04T08:42:46.0819702Z ##[group]Processing PR #164733 2025-12-04T08:42:46.0820499Z [164733] URL: https://github.com/pytorch/pytorch/pull/164733 2025-12-04T08:42:46.0821267Z [164733] Checking whether to label PR as stale. 2025-12-04T08:42:46.0821963Z [164733] Skipping because PR was updated recently 2025-12-04T08:42:46.0822902Z ##[endgroup] 2025-12-04T08:42:46.0823639Z ##[group]Processing PR #164734 2025-12-04T08:42:46.0824350Z [164734] URL: https://github.com/pytorch/pytorch/pull/164734 2025-12-04T08:42:46.0825155Z [164734] Checking whether to label PR as stale. 2025-12-04T08:42:46.0825890Z [164734] Skipping because PR was updated recently 2025-12-04T08:42:46.0826839Z ##[endgroup] 2025-12-04T08:42:46.0827593Z ##[group]Processing PR #164737 2025-12-04T08:42:46.0828280Z [164737] URL: https://github.com/pytorch/pytorch/pull/164737 2025-12-04T08:42:46.0829090Z [164737] Checking whether to label PR as stale. 2025-12-04T08:42:46.0829801Z [164737] Skipping because PR was updated recently 2025-12-04T08:42:46.0830742Z ##[endgroup] 2025-12-04T08:42:46.0831482Z ##[group]Processing PR #164739 2025-12-04T08:42:46.0832169Z [164739] URL: https://github.com/pytorch/pytorch/pull/164739 2025-12-04T08:42:46.0832989Z [164739] Checking whether to label PR as stale. 2025-12-04T08:42:46.0833726Z [164739] Skipping because PR was updated recently 2025-12-04T08:42:46.0835139Z ##[endgroup] 2025-12-04T08:42:46.0835846Z ##[group]Processing PR #164740 2025-12-04T08:42:46.0836703Z [164740] URL: https://github.com/pytorch/pytorch/pull/164740 2025-12-04T08:42:46.0837449Z [164740] Checking whether to label PR as stale. 2025-12-04T08:42:46.0838076Z [164740] Skipping because PR was updated recently 2025-12-04T08:42:46.0839090Z ##[endgroup] 2025-12-04T08:42:46.0839615Z ##[group]Processing PR #164743 2025-12-04T08:42:46.0840108Z [164743] URL: https://github.com/pytorch/pytorch/pull/164743 2025-12-04T08:42:46.0840775Z [164743] Checking whether to label PR as stale. 2025-12-04T08:42:46.0841346Z [164743] Skipping because PR was updated recently 2025-12-04T08:42:46.0842143Z ##[endgroup] 2025-12-04T08:42:46.0842786Z ##[group]Processing PR #164767 2025-12-04T08:42:46.0843365Z [164767] URL: https://github.com/pytorch/pytorch/pull/164767 2025-12-04T08:42:46.0845831Z [164767] Checking whether to label PR as stale. 2025-12-04T08:42:46.0846462Z [164767] Skipping because PR was updated recently 2025-12-04T08:42:46.0885904Z ##[endgroup] 2025-12-04T08:42:46.0886969Z ##[group]Processing PR #164771 2025-12-04T08:42:46.0887698Z [164771] URL: https://github.com/pytorch/pytorch/pull/164771 2025-12-04T08:42:46.0888501Z [164771] Checking whether to label PR as stale. 2025-12-04T08:42:46.0889207Z [164771] Skipping because PR was updated recently 2025-12-04T08:42:46.0890110Z ##[endgroup] 2025-12-04T08:42:46.0890826Z ##[group]Processing PR #164778 2025-12-04T08:42:46.0891620Z [164778] URL: https://github.com/pytorch/pytorch/pull/164778 2025-12-04T08:42:46.0892224Z [164778] Checking whether to label PR as stale. 2025-12-04T08:42:46.0892787Z [164778] Skipping because PR was updated recently 2025-12-04T08:42:46.0893587Z ##[endgroup] 2025-12-04T08:42:46.0894228Z ##[group]Processing PR #164792 2025-12-04T08:42:46.0894872Z [164792] URL: https://github.com/pytorch/pytorch/pull/164792 2025-12-04T08:42:46.0895615Z [164792] Checking whether to label PR as stale. 2025-12-04T08:42:46.0896309Z [164792] Skipping because PR was updated recently 2025-12-04T08:42:46.0897207Z ##[endgroup] 2025-12-04T08:42:46.0897899Z ##[group]Processing PR #164794 2025-12-04T08:42:46.0898579Z [164794] URL: https://github.com/pytorch/pytorch/pull/164794 2025-12-04T08:42:46.0899360Z [164794] Checking whether to label PR as stale. 2025-12-04T08:42:46.0900051Z [164794] Skipping because PR was updated recently 2025-12-04T08:42:46.0900905Z ##[endgroup] 2025-12-04T08:42:46.0901618Z ##[group]Processing PR #164807 2025-12-04T08:42:46.0902272Z [164807] URL: https://github.com/pytorch/pytorch/pull/164807 2025-12-04T08:42:46.0903037Z [164807] Checking whether to label PR as stale. 2025-12-04T08:42:46.0903742Z [164807] Skipping because PR was updated recently 2025-12-04T08:42:46.0905035Z ##[endgroup] 2025-12-04T08:42:46.0905716Z ##[group]Processing PR #164810 2025-12-04T08:42:46.0906385Z [164810] URL: https://github.com/pytorch/pytorch/pull/164810 2025-12-04T08:42:46.0907163Z [164810] Checking whether to label PR as stale. 2025-12-04T08:42:46.0907785Z [164810] Skipping because PR was updated recently 2025-12-04T08:42:46.0908712Z ##[endgroup] 2025-12-04T08:42:46.0909417Z ##[group]Processing PR #164811 2025-12-04T08:42:46.0910094Z [164811] URL: https://github.com/pytorch/pytorch/pull/164811 2025-12-04T08:42:46.0910905Z [164811] Checking whether to label PR as stale. 2025-12-04T08:42:46.0911619Z [164811] Skipping because PR was updated recently 2025-12-04T08:42:46.0912528Z ##[endgroup] 2025-12-04T08:42:46.0913225Z ##[group]Processing PR #164812 2025-12-04T08:42:46.0913811Z [164812] URL: https://github.com/pytorch/pytorch/pull/164812 2025-12-04T08:42:46.0914512Z [164812] Checking whether to label PR as stale. 2025-12-04T08:42:46.0915193Z [164812] Skipping because PR was updated recently 2025-12-04T08:42:46.0916016Z ##[endgroup] 2025-12-04T08:42:46.0916459Z ##[group]Processing PR #164838 2025-12-04T08:42:46.0916820Z [164838] URL: https://github.com/pytorch/pytorch/pull/164838 2025-12-04T08:42:46.0917247Z [164838] Checking whether to label PR as stale. 2025-12-04T08:42:46.0917612Z [164838] Skipping because PR was updated recently 2025-12-04T08:42:46.0918104Z ##[endgroup] 2025-12-04T08:42:46.0918672Z ##[group]Processing PR #164841 2025-12-04T08:42:46.0919028Z [164841] URL: https://github.com/pytorch/pytorch/pull/164841 2025-12-04T08:42:46.0919453Z [164841] Checking whether to label PR as stale. 2025-12-04T08:42:46.0919833Z [164841] Skipping because PR was updated recently 2025-12-04T08:42:46.0920309Z ##[endgroup] 2025-12-04T08:42:46.0920700Z ##[group]Processing PR #164842 2025-12-04T08:42:46.0921063Z [164842] URL: https://github.com/pytorch/pytorch/pull/164842 2025-12-04T08:42:46.0921472Z [164842] Checking whether to label PR as stale. 2025-12-04T08:42:46.0921847Z [164842] Skipping because PR was updated recently 2025-12-04T08:42:46.0922337Z ##[endgroup] 2025-12-04T08:42:46.0922705Z ##[group]Processing PR #164848 2025-12-04T08:42:46.0923071Z [164848] URL: https://github.com/pytorch/pytorch/pull/164848 2025-12-04T08:42:46.0923493Z [164848] Checking whether to label PR as stale. 2025-12-04T08:42:46.0923856Z [164848] Skipping because PR was updated recently 2025-12-04T08:42:46.0924348Z ##[endgroup] 2025-12-04T08:42:46.0924738Z ##[group]Processing PR #164852 2025-12-04T08:42:46.0925093Z [164852] URL: https://github.com/pytorch/pytorch/pull/164852 2025-12-04T08:42:46.0925517Z [164852] Checking whether to label PR as stale. 2025-12-04T08:42:46.0925883Z [164852] Skipping because PR was updated recently 2025-12-04T08:42:46.0926373Z ##[endgroup] 2025-12-04T08:42:46.0926761Z ##[group]Processing PR #164859 2025-12-04T08:42:46.0927130Z [164859] URL: https://github.com/pytorch/pytorch/pull/164859 2025-12-04T08:42:46.0927537Z [164859] Checking whether to label PR as stale. 2025-12-04T08:42:46.0927924Z [164859] Skipping because PR was updated recently 2025-12-04T08:42:46.0928423Z ##[endgroup] 2025-12-04T08:42:46.0928801Z ##[group]Processing PR #164863 2025-12-04T08:42:46.0929168Z [164863] URL: https://github.com/pytorch/pytorch/pull/164863 2025-12-04T08:42:46.0929591Z [164863] Checking whether to label PR as stale. 2025-12-04T08:42:46.0929955Z [164863] Skipping because PR was updated recently 2025-12-04T08:42:46.0930442Z ##[endgroup] 2025-12-04T08:42:46.0930823Z ##[group]Processing PR #164864 2025-12-04T08:42:46.0931173Z [164864] URL: https://github.com/pytorch/pytorch/pull/164864 2025-12-04T08:42:46.0931768Z [164864] Checking whether to label PR as stale. 2025-12-04T08:42:46.0932132Z [164864] Skipping because PR was updated recently 2025-12-04T08:42:46.0932622Z ##[endgroup] 2025-12-04T08:42:46.0933005Z ##[group]Processing PR #164865 2025-12-04T08:42:46.0933369Z [164865] URL: https://github.com/pytorch/pytorch/pull/164865 2025-12-04T08:42:46.0934299Z [164865] Checking whether to label PR as stale. 2025-12-04T08:42:46.0934919Z [164865] Skipping because PR was updated recently 2025-12-04T08:42:46.0935418Z ##[endgroup] 2025-12-04T08:42:46.0935793Z ##[group]Processing PR #164866 2025-12-04T08:42:46.0936163Z [164866] URL: https://github.com/pytorch/pytorch/pull/164866 2025-12-04T08:42:46.0936570Z [164866] Checking whether to label PR as stale. 2025-12-04T08:42:46.0936952Z [164866] Skipping because PR was updated recently 2025-12-04T08:42:46.0937443Z ##[endgroup] 2025-12-04T08:42:46.0937830Z ##[group]Processing PR #164867 2025-12-04T08:42:46.0938185Z [164867] URL: https://github.com/pytorch/pytorch/pull/164867 2025-12-04T08:42:46.0938601Z [164867] Checking whether to label PR as stale. 2025-12-04T08:42:46.0938963Z [164867] Skipping because PR was updated recently 2025-12-04T08:42:46.0939448Z ##[endgroup] 2025-12-04T08:42:46.0939828Z ##[group]Processing PR #164869 2025-12-04T08:42:46.0940183Z [164869] URL: https://github.com/pytorch/pytorch/pull/164869 2025-12-04T08:42:46.0940600Z [164869] Checking whether to label PR as stale. 2025-12-04T08:42:46.0940979Z [164869] Skipping because PR was updated recently 2025-12-04T08:42:46.0941452Z ##[endgroup] 2025-12-04T08:42:46.0941839Z ##[group]Processing PR #164874 2025-12-04T08:42:46.0942204Z [164874] URL: https://github.com/pytorch/pytorch/pull/164874 2025-12-04T08:42:46.0942611Z [164874] Checking whether to label PR as stale. 2025-12-04T08:42:46.0943094Z [164874] Skipping because PR was updated recently 2025-12-04T08:42:46.0943593Z ##[endgroup] 2025-12-04T08:42:46.0943986Z ##[group]Processing PR #164903 2025-12-04T08:42:46.0944340Z [164903] URL: https://github.com/pytorch/pytorch/pull/164903 2025-12-04T08:42:46.0944763Z [164903] Checking whether to label PR as stale. 2025-12-04T08:42:46.0945126Z [164903] Skipping because PR was updated recently 2025-12-04T08:42:46.0945614Z ##[endgroup] 2025-12-04T08:42:46.0945996Z ##[group]Processing PR #164914 2025-12-04T08:42:46.0946345Z [164914] URL: https://github.com/pytorch/pytorch/pull/164914 2025-12-04T08:42:46.0946761Z [164914] Checking whether to label PR as stale. 2025-12-04T08:42:46.0947137Z [164914] Skipping because PR was updated recently 2025-12-04T08:42:46.0947608Z ##[endgroup] 2025-12-04T08:42:46.0947987Z ##[group]Processing PR #164917 2025-12-04T08:42:46.0948351Z [164917] URL: https://github.com/pytorch/pytorch/pull/164917 2025-12-04T08:42:46.0948759Z [164917] Checking whether to label PR as stale. 2025-12-04T08:42:46.0949133Z [164917] Skipping because PR was updated recently 2025-12-04T08:42:46.0949614Z ##[endgroup] 2025-12-04T08:42:46.0949981Z ##[group]Processing PR #164919 2025-12-04T08:42:46.0950342Z [164919] URL: https://github.com/pytorch/pytorch/pull/164919 2025-12-04T08:42:46.0950757Z [164919] Checking whether to label PR as stale. 2025-12-04T08:42:46.0951117Z [164919] Skipping because PR was updated recently 2025-12-04T08:42:46.0951600Z ##[endgroup] 2025-12-04T08:42:46.0951983Z ##[group]Processing PR #164921 2025-12-04T08:42:46.0952336Z [164921] URL: https://github.com/pytorch/pytorch/pull/164921 2025-12-04T08:42:46.0952760Z [164921] Checking whether to label PR as stale. 2025-12-04T08:42:46.0953120Z [164921] Skipping because PR was updated recently 2025-12-04T08:42:46.0953603Z ##[endgroup] 2025-12-04T08:42:46.0953987Z ##[group]Processing PR #164927 2025-12-04T08:42:46.0954359Z [164927] URL: https://github.com/pytorch/pytorch/pull/164927 2025-12-04T08:42:46.0954769Z [164927] Checking whether to label PR as stale. 2025-12-04T08:42:46.0955148Z [164927] Skipping because PR was updated recently 2025-12-04T08:42:46.0955629Z ##[endgroup] 2025-12-04T08:42:46.0955997Z ##[group]Processing PR #164928 2025-12-04T08:42:46.0956358Z [164928] URL: https://github.com/pytorch/pytorch/pull/164928 2025-12-04T08:42:46.0956774Z [164928] Checking whether to label PR as stale. 2025-12-04T08:42:46.0957134Z [164928] Skipping because PR was updated recently 2025-12-04T08:42:46.0957618Z ##[endgroup] 2025-12-04T08:42:46.0958000Z ##[group]Processing PR #164930 2025-12-04T08:42:46.0958376Z [164930] URL: https://github.com/pytorch/pytorch/pull/164930 2025-12-04T08:42:46.0958901Z [164930] Checking whether to label PR as stale. 2025-12-04T08:42:46.0959267Z [164930] Skipping because PR was updated recently 2025-12-04T08:42:46.0959762Z ##[endgroup] 2025-12-04T08:42:46.0960153Z ##[group]Processing PR #164931 2025-12-04T08:42:46.0960522Z [164931] URL: https://github.com/pytorch/pytorch/pull/164931 2025-12-04T08:42:46.0960934Z [164931] Checking whether to label PR as stale. 2025-12-04T08:42:46.0961314Z [164931] Skipping because PR was updated recently 2025-12-04T08:42:46.0961810Z ##[endgroup] 2025-12-04T08:42:46.0962179Z ##[group]Processing PR #164933 2025-12-04T08:42:46.0962550Z [164933] URL: https://github.com/pytorch/pytorch/pull/164933 2025-12-04T08:42:46.0962958Z [164933] Checking whether to label PR as stale. 2025-12-04T08:42:46.0963337Z [164933] Skipping because PR was updated recently 2025-12-04T08:42:46.0963827Z ##[endgroup] 2025-12-04T08:42:46.0964212Z ##[group]Processing PR #164935 2025-12-04T08:42:46.0964565Z [164935] URL: https://github.com/pytorch/pytorch/pull/164935 2025-12-04T08:42:46.0964989Z [164935] Checking whether to label PR as stale. 2025-12-04T08:42:46.0965348Z [164935] Skipping because PR was updated recently 2025-12-04T08:42:46.0965833Z ##[endgroup] 2025-12-04T08:42:46.0966213Z ##[group]Processing PR #164947 2025-12-04T08:42:46.0966580Z [164947] URL: https://github.com/pytorch/pytorch/pull/164947 2025-12-04T08:42:46.0967054Z [164947] Checking whether to label PR as stale. 2025-12-04T08:42:46.0977967Z [164947] Skipping because PR was updated recently 2025-12-04T08:42:46.0978548Z ##[endgroup] 2025-12-04T08:42:46.0978943Z ##[group]Processing PR #164952 2025-12-04T08:42:46.0979327Z [164952] URL: https://github.com/pytorch/pytorch/pull/164952 2025-12-04T08:42:46.0979759Z [164952] Checking whether to label PR as stale. 2025-12-04T08:42:46.0980128Z [164952] Skipping because PR was updated recently 2025-12-04T08:42:46.0980623Z ##[endgroup] 2025-12-04T08:42:46.0981015Z ##[group]Processing PR #164960 2025-12-04T08:42:46.0981374Z [164960] URL: https://github.com/pytorch/pytorch/pull/164960 2025-12-04T08:42:46.0981825Z [164960] Checking whether to label PR as stale. 2025-12-04T08:42:46.0982189Z [164960] Skipping because PR was updated recently 2025-12-04T08:42:46.0982676Z ##[endgroup] 2025-12-04T08:42:46.0983066Z ##[group]Processing PR #164963 2025-12-04T08:42:46.0983434Z [164963] URL: https://github.com/pytorch/pytorch/pull/164963 2025-12-04T08:42:46.0983852Z [164963] Checking whether to label PR as stale. 2025-12-04T08:42:46.0984233Z [164963] Skipping because PR was updated recently 2025-12-04T08:42:46.0984725Z ##[endgroup] 2025-12-04T08:42:46.0985101Z ##[group]Processing PR #164964 2025-12-04T08:42:46.0985470Z [164964] URL: https://github.com/pytorch/pytorch/pull/164964 2025-12-04T08:42:46.0985882Z [164964] Checking whether to label PR as stale. 2025-12-04T08:42:46.0986259Z [164964] Skipping because PR was updated recently 2025-12-04T08:42:46.0986741Z ##[endgroup] 2025-12-04T08:42:46.0987124Z ##[group]Processing PR #164977 2025-12-04T08:42:46.0987482Z [164977] URL: https://github.com/pytorch/pytorch/pull/164977 2025-12-04T08:42:46.0987904Z [164977] Checking whether to label PR as stale. 2025-12-04T08:42:46.0988268Z [164977] Skipping because PR was updated recently 2025-12-04T08:42:46.0988755Z ##[endgroup] 2025-12-04T08:42:46.0989139Z ##[group]Processing PR #164979 2025-12-04T08:42:46.0989507Z [164979] URL: https://github.com/pytorch/pytorch/pull/164979 2025-12-04T08:42:46.0989919Z [164979] Checking whether to label PR as stale. 2025-12-04T08:42:46.0990295Z [164979] Skipping because PR was updated recently 2025-12-04T08:42:46.0990771Z ##[endgroup] 2025-12-04T08:42:46.0991162Z ##[group]Processing PR #164980 2025-12-04T08:42:46.0991529Z [164980] URL: https://github.com/pytorch/pytorch/pull/164980 2025-12-04T08:42:46.0991937Z [164980] Checking whether to label PR as stale. 2025-12-04T08:42:46.0992317Z [164980] Skipping because PR was updated recently 2025-12-04T08:42:46.0992809Z ##[endgroup] 2025-12-04T08:42:46.0993198Z ##[group]Processing PR #164986 2025-12-04T08:42:46.0993739Z [164986] URL: https://github.com/pytorch/pytorch/pull/164986 2025-12-04T08:42:46.0994165Z [164986] Checking whether to label PR as stale. 2025-12-04T08:42:46.0994530Z [164986] Skipping because PR was updated recently 2025-12-04T08:42:46.0995027Z ##[endgroup] 2025-12-04T08:42:46.0995421Z ##[group]Processing PR #164994 2025-12-04T08:42:46.0995784Z [164994] URL: https://github.com/pytorch/pytorch/pull/164994 2025-12-04T08:42:46.0996207Z [164994] Checking whether to label PR as stale. 2025-12-04T08:42:46.0996586Z [164994] Skipping because PR was updated recently 2025-12-04T08:42:46.0997063Z ##[endgroup] 2025-12-04T08:42:46.0997454Z ##[group]Processing PR #164995 2025-12-04T08:42:46.0997820Z [164995] URL: https://github.com/pytorch/pytorch/pull/164995 2025-12-04T08:42:46.0998225Z [164995] Checking whether to label PR as stale. 2025-12-04T08:42:46.0998601Z [164995] Skipping because PR was updated recently 2025-12-04T08:42:46.0999090Z ##[endgroup] 2025-12-04T08:42:46.0999477Z ##[group]Processing PR #164996 2025-12-04T08:42:46.0999836Z [164996] URL: https://github.com/pytorch/pytorch/pull/164996 2025-12-04T08:42:46.1000260Z [164996] Checking whether to label PR as stale. 2025-12-04T08:42:46.1000623Z [164996] Skipping because PR was updated recently 2025-12-04T08:42:46.1001111Z ##[endgroup] 2025-12-04T08:42:46.1001502Z ##[group]Processing PR #165008 2025-12-04T08:42:46.1001930Z [165008] URL: https://github.com/pytorch/pytorch/pull/165008 2025-12-04T08:42:46.1002351Z [165008] Checking whether to label PR as stale. 2025-12-04T08:42:46.1002718Z [165008] Skipping because PR was updated recently 2025-12-04T08:42:46.1003206Z ##[endgroup] 2025-12-04T08:42:46.1003592Z ##[group]Processing PR #165012 2025-12-04T08:42:46.1004225Z [165012] URL: https://github.com/pytorch/pytorch/pull/165012 2025-12-04T08:42:46.1004708Z [165012] Checking whether to label PR as stale. 2025-12-04T08:42:46.1005086Z [165012] Skipping because PR was updated recently 2025-12-04T08:42:46.1005587Z ##[endgroup] 2025-12-04T08:42:46.1005975Z ##[group]Processing PR #165014 2025-12-04T08:42:46.1006340Z [165014] URL: https://github.com/pytorch/pytorch/pull/165014 2025-12-04T08:42:46.1006761Z [165014] Checking whether to label PR as stale. 2025-12-04T08:42:46.1007123Z [165014] Skipping because PR was updated recently 2025-12-04T08:42:46.1007612Z ##[endgroup] 2025-12-04T08:42:46.1008000Z ##[group]Processing PR #165015 2025-12-04T08:42:46.1008359Z [165015] URL: https://github.com/pytorch/pytorch/pull/165015 2025-12-04T08:42:46.1008781Z [165015] Checking whether to label PR as stale. 2025-12-04T08:42:46.1009146Z [165015] Skipping because PR was updated recently 2025-12-04T08:42:46.1009636Z ##[endgroup] 2025-12-04T08:42:46.1010025Z ##[group]Processing PR #165019 2025-12-04T08:42:46.1010395Z [165019] URL: https://github.com/pytorch/pytorch/pull/165019 2025-12-04T08:42:46.1010802Z [165019] Checking whether to label PR as stale. 2025-12-04T08:42:46.1011181Z [165019] Skipping because PR was updated recently 2025-12-04T08:42:46.1011795Z ##[endgroup] 2025-12-04T08:42:46.1012180Z ##[group]Processing PR #165048 2025-12-04T08:42:46.1012557Z [165048] URL: https://github.com/pytorch/pytorch/pull/165048 2025-12-04T08:42:46.1012969Z [165048] Checking whether to label PR as stale. 2025-12-04T08:42:46.1013351Z [165048] Skipping because PR was updated recently 2025-12-04T08:42:46.1013829Z ##[endgroup] 2025-12-04T08:42:46.1014211Z ##[group]Processing PR #165049 2025-12-04T08:42:46.1014576Z [165049] URL: https://github.com/pytorch/pytorch/pull/165049 2025-12-04T08:42:46.1014980Z [165049] Checking whether to label PR as stale. 2025-12-04T08:42:46.1015350Z [165049] Skipping because PR was updated recently 2025-12-04T08:42:46.1015822Z ##[endgroup] 2025-12-04T08:42:46.1016204Z ##[group]Processing PR #165052 2025-12-04T08:42:46.1016567Z [165052] URL: https://github.com/pytorch/pytorch/pull/165052 2025-12-04T08:42:46.1016970Z [165052] Checking whether to label PR as stale. 2025-12-04T08:42:46.1017341Z [165052] Skipping because PR was updated recently 2025-12-04T08:42:46.1017950Z ##[endgroup] 2025-12-04T08:42:46.1018331Z ##[group]Processing PR #165068 2025-12-04T08:42:46.1018681Z [165068] URL: https://github.com/pytorch/pytorch/pull/165068 2025-12-04T08:42:46.1019097Z [165068] Checking whether to label PR as stale. 2025-12-04T08:42:46.1019458Z [165068] Skipping because PR was updated recently 2025-12-04T08:42:46.1019941Z ##[endgroup] 2025-12-04T08:42:46.1020328Z ##[group]Processing PR #165072 2025-12-04T08:42:46.1020682Z [165072] URL: https://github.com/pytorch/pytorch/pull/165072 2025-12-04T08:42:46.1021101Z [165072] Checking whether to label PR as stale. 2025-12-04T08:42:46.1021479Z [165072] Skipping because PR was updated recently 2025-12-04T08:42:46.1021951Z ##[endgroup] 2025-12-04T08:42:46.1022333Z ##[group]Processing PR #165083 2025-12-04T08:42:46.1022696Z [165083] URL: https://github.com/pytorch/pytorch/pull/165083 2025-12-04T08:42:46.1023105Z [165083] Checking whether to label PR as stale. 2025-12-04T08:42:46.1023481Z [165083] Skipping because PR was updated recently 2025-12-04T08:42:46.1023969Z ##[endgroup] 2025-12-04T08:42:46.1024355Z ##[group]Processing PR #165092 2025-12-04T08:42:46.1024705Z [165092] URL: https://github.com/pytorch/pytorch/pull/165092 2025-12-04T08:42:46.1025122Z [165092] Checking whether to label PR as stale. 2025-12-04T08:42:46.1025479Z [165092] Skipping because PR was updated recently 2025-12-04T08:42:46.1025967Z ##[endgroup] 2025-12-04T08:42:46.1026416Z ##[group]Processing PR #165099 2025-12-04T08:42:46.1026768Z [165099] URL: https://github.com/pytorch/pytorch/pull/165099 2025-12-04T08:42:46.1027184Z [165099] Checking whether to label PR as stale. 2025-12-04T08:42:46.1027546Z [165099] Skipping because PR was updated recently 2025-12-04T08:42:46.1028034Z ##[endgroup] 2025-12-04T08:42:46.1028419Z ##[group]Processing PR #165101 2025-12-04T08:42:46.1028782Z [165101] URL: https://github.com/pytorch/pytorch/pull/165101 2025-12-04T08:42:46.1029187Z [165101] Checking whether to label PR as stale. 2025-12-04T08:42:46.1029558Z [165101] Skipping because PR was updated recently 2025-12-04T08:42:46.1030042Z ##[endgroup] 2025-12-04T08:42:46.1030402Z ##[group]Processing PR #165108 2025-12-04T08:42:46.1030765Z [165108] URL: https://github.com/pytorch/pytorch/pull/165108 2025-12-04T08:42:46.1031181Z [165108] Checking whether to label PR as stale. 2025-12-04T08:42:46.1031543Z [165108] Skipping because PR was updated recently 2025-12-04T08:42:46.1032023Z ##[endgroup] 2025-12-04T08:42:46.1032407Z ##[group]Processing PR #165127 2025-12-04T08:42:46.1032758Z [165127] URL: https://github.com/pytorch/pytorch/pull/165127 2025-12-04T08:42:46.1033176Z [165127] Checking whether to label PR as stale. 2025-12-04T08:42:46.1033539Z [165127] Skipping because PR was updated recently 2025-12-04T08:42:46.1034496Z ##[endgroup] 2025-12-04T08:42:46.1034885Z ##[group]Processing PR #165140 2025-12-04T08:42:46.1035250Z [165140] URL: https://github.com/pytorch/pytorch/pull/165140 2025-12-04T08:42:46.1035656Z [165140] Checking whether to label PR as stale. 2025-12-04T08:42:46.1036032Z [165140] Skipping because PR was updated recently 2025-12-04T08:42:46.1036519Z ##[endgroup] 2025-12-04T08:42:46.1036888Z ##[group]Processing PR #165148 2025-12-04T08:42:46.1037254Z [165148] URL: https://github.com/pytorch/pytorch/pull/165148 2025-12-04T08:42:46.1037662Z [165148] Checking whether to label PR as stale. 2025-12-04T08:42:46.1038035Z [165148] Skipping because PR was updated recently 2025-12-04T08:42:46.1038523Z ##[endgroup] 2025-12-04T08:42:46.1038902Z ##[group]Processing PR #165150 2025-12-04T08:42:46.1039254Z [165150] URL: https://github.com/pytorch/pytorch/pull/165150 2025-12-04T08:42:46.1039675Z [165150] Checking whether to label PR as stale. 2025-12-04T08:42:46.1040038Z [165150] Skipping because PR was updated recently 2025-12-04T08:42:46.1040524Z ##[endgroup] 2025-12-04T08:42:46.1040906Z ##[group]Processing PR #165157 2025-12-04T08:42:46.1041272Z [165157] URL: https://github.com/pytorch/pytorch/pull/165157 2025-12-04T08:42:46.1041675Z [165157] Checking whether to label PR as stale. 2025-12-04T08:42:46.1042252Z [165157] Skipping because PR was updated recently 2025-12-04T08:42:46.1042727Z ##[endgroup] 2025-12-04T08:42:46.1043122Z ##[group]Processing PR #165161 2025-12-04T08:42:46.1043490Z [165161] URL: https://github.com/pytorch/pytorch/pull/165161 2025-12-04T08:42:46.1043895Z [165161] Checking whether to label PR as stale. 2025-12-04T08:42:46.1044266Z [165161] Skipping because PR was updated recently 2025-12-04T08:42:46.1044753Z ##[endgroup] 2025-12-04T08:42:46.1045137Z ##[group]Processing PR #165174 2025-12-04T08:42:46.1045491Z [165174] URL: https://github.com/pytorch/pytorch/pull/165174 2025-12-04T08:42:46.1045912Z [165174] Checking whether to label PR as stale. 2025-12-04T08:42:46.1046274Z [165174] Skipping because PR was updated recently 2025-12-04T08:42:46.1046764Z ##[endgroup] 2025-12-04T08:42:47.3043979Z ##[group]Processing PR #165175 2025-12-04T08:42:47.3044913Z [165175] URL: https://github.com/pytorch/pytorch/pull/165175 2025-12-04T08:42:47.3045676Z [165175] Checking whether to label PR as stale. 2025-12-04T08:42:47.3046441Z [165175] Skipping because PR was updated recently 2025-12-04T08:42:47.3047471Z ##[endgroup] 2025-12-04T08:42:47.3048232Z ##[group]Processing PR #165182 2025-12-04T08:42:47.3048944Z [165182] URL: https://github.com/pytorch/pytorch/pull/165182 2025-12-04T08:42:47.3049801Z [165182] Checking whether to label PR as stale. 2025-12-04T08:42:47.3050952Z [165182] Skipping because PR was updated recently 2025-12-04T08:42:47.3052309Z ##[endgroup] 2025-12-04T08:42:47.3053408Z ##[group]Processing PR #165187 2025-12-04T08:42:47.3054251Z [165187] URL: https://github.com/pytorch/pytorch/pull/165187 2025-12-04T08:42:47.3055123Z [165187] Checking whether to label PR as stale. 2025-12-04T08:42:47.3055870Z [165187] Skipping because PR was updated recently 2025-12-04T08:42:47.3056804Z ##[endgroup] 2025-12-04T08:42:47.3057599Z ##[group]Processing PR #165190 2025-12-04T08:42:47.3058303Z [165190] URL: https://github.com/pytorch/pytorch/pull/165190 2025-12-04T08:42:47.3060751Z [165190] Checking whether to label PR as stale. 2025-12-04T08:42:47.3062732Z [165190] Skipping because PR was updated recently 2025-12-04T08:42:47.3065008Z ##[endgroup] 2025-12-04T08:42:47.3066366Z ##[group]Processing PR #165197 2025-12-04T08:42:47.3067141Z [165197] URL: https://github.com/pytorch/pytorch/pull/165197 2025-12-04T08:42:47.3067941Z [165197] Checking whether to label PR as stale. 2025-12-04T08:42:47.3069118Z [165197] Skipping because PR was updated recently 2025-12-04T08:42:47.3071123Z ##[endgroup] 2025-12-04T08:42:47.3071777Z ##[group]Processing PR #165198 2025-12-04T08:42:47.3072395Z [165198] URL: https://github.com/pytorch/pytorch/pull/165198 2025-12-04T08:42:47.3073080Z [165198] Checking whether to label PR as stale. 2025-12-04T08:42:47.3073702Z [165198] Skipping because PR was updated recently 2025-12-04T08:42:47.3074505Z ##[endgroup] 2025-12-04T08:42:47.3075127Z ##[group]Processing PR #165206 2025-12-04T08:42:47.3075726Z [165206] URL: https://github.com/pytorch/pytorch/pull/165206 2025-12-04T08:42:47.3076395Z [165206] Checking whether to label PR as stale. 2025-12-04T08:42:47.3077017Z [165206] Skipping because PR was updated recently 2025-12-04T08:42:47.3077819Z ##[endgroup] 2025-12-04T08:42:47.3078445Z ##[group]Processing PR #165217 2025-12-04T08:42:47.3079028Z [165217] URL: https://github.com/pytorch/pytorch/pull/165217 2025-12-04T08:42:47.3079720Z [165217] Checking whether to label PR as stale. 2025-12-04T08:42:47.3080338Z [165217] Skipping because PR was updated recently 2025-12-04T08:42:47.3081140Z ##[endgroup] 2025-12-04T08:42:47.3081749Z ##[group]Processing PR #165218 2025-12-04T08:42:47.3082327Z [165218] URL: https://github.com/pytorch/pytorch/pull/165218 2025-12-04T08:42:47.3083019Z [165218] Checking whether to label PR as stale. 2025-12-04T08:42:47.3083642Z [165218] Skipping because PR was updated recently 2025-12-04T08:42:47.3084437Z ##[endgroup] 2025-12-04T08:42:47.3085068Z ##[group]Processing PR #165222 2025-12-04T08:42:47.3085671Z [165222] URL: https://github.com/pytorch/pytorch/pull/165222 2025-12-04T08:42:47.3086716Z [165222] Checking whether to label PR as stale. 2025-12-04T08:42:47.3087334Z [165222] Skipping because PR was updated recently 2025-12-04T08:42:47.3088149Z ##[endgroup] 2025-12-04T08:42:47.3088778Z ##[group]Processing PR #165223 2025-12-04T08:42:47.3089370Z [165223] URL: https://github.com/pytorch/pytorch/pull/165223 2025-12-04T08:42:47.3090062Z [165223] Checking whether to label PR as stale. 2025-12-04T08:42:47.3090683Z [165223] Skipping because PR was updated recently 2025-12-04T08:42:47.3091668Z ##[endgroup] 2025-12-04T08:42:47.3092284Z ##[group]Processing PR #165224 2025-12-04T08:42:47.3092781Z [165224] URL: https://github.com/pytorch/pytorch/pull/165224 2025-12-04T08:42:47.3093395Z [165224] Checking whether to label PR as stale. 2025-12-04T08:42:47.3093919Z [165224] Skipping because PR was updated recently 2025-12-04T08:42:47.3094655Z ##[endgroup] 2025-12-04T08:42:47.3095256Z ##[group]Processing PR #165236 2025-12-04T08:42:47.3095830Z [165236] URL: https://github.com/pytorch/pytorch/pull/165236 2025-12-04T08:42:47.3096473Z [165236] Checking whether to label PR as stale. 2025-12-04T08:42:47.3097047Z [165236] Skipping because PR was updated recently 2025-12-04T08:42:47.3097774Z ##[endgroup] 2025-12-04T08:42:47.3098321Z ##[group]Processing PR #165246 2025-12-04T08:42:47.3098863Z [165246] URL: https://github.com/pytorch/pytorch/pull/165246 2025-12-04T08:42:47.3099787Z [165246] Checking whether to label PR as stale. 2025-12-04T08:42:47.3100394Z [165246] Skipping because PR was updated recently 2025-12-04T08:42:47.3101134Z ##[endgroup] 2025-12-04T08:42:47.3101689Z ##[group]Processing PR #165252 2025-12-04T08:42:47.3102248Z [165252] URL: https://github.com/pytorch/pytorch/pull/165252 2025-12-04T08:42:47.3102880Z [165252] Checking whether to label PR as stale. 2025-12-04T08:42:47.3103444Z [165252] Skipping because PR was updated recently 2025-12-04T08:42:47.3104244Z ##[endgroup] 2025-12-04T08:42:47.3104868Z ##[group]Processing PR #165253 2025-12-04T08:42:47.3105418Z [165253] URL: https://github.com/pytorch/pytorch/pull/165253 2025-12-04T08:42:47.3106089Z [165253] Checking whether to label PR as stale. 2025-12-04T08:42:47.3106639Z [165253] Skipping because PR was updated recently 2025-12-04T08:42:47.3107397Z ##[endgroup] 2025-12-04T08:42:47.3107933Z ##[group]Processing PR #165255 2025-12-04T08:42:47.3108429Z [165255] URL: https://github.com/pytorch/pytorch/pull/165255 2025-12-04T08:42:47.3109071Z [165255] Checking whether to label PR as stale. 2025-12-04T08:42:47.3109661Z [165255] Skipping because PR was updated recently 2025-12-04T08:42:47.3110450Z ##[endgroup] 2025-12-04T08:42:47.3111002Z ##[group]Processing PR #165258 2025-12-04T08:42:47.3111516Z [165258] URL: https://github.com/pytorch/pytorch/pull/165258 2025-12-04T08:42:47.3111948Z [165258] Checking whether to label PR as stale. 2025-12-04T08:42:47.3112312Z [165258] Skipping because PR was updated recently 2025-12-04T08:42:47.3112805Z ##[endgroup] 2025-12-04T08:42:47.3113190Z ##[group]Processing PR #165269 2025-12-04T08:42:47.3113541Z [165269] URL: https://github.com/pytorch/pytorch/pull/165269 2025-12-04T08:42:47.3113975Z [165269] Checking whether to label PR as stale. 2025-12-04T08:42:47.3114338Z [165269] Skipping because PR was updated recently 2025-12-04T08:42:47.3114948Z ##[endgroup] 2025-12-04T08:42:47.3115880Z ##[group]Processing PR #165270 2025-12-04T08:42:47.3116493Z [165270] URL: https://github.com/pytorch/pytorch/pull/165270 2025-12-04T08:42:47.3117118Z [165270] Checking whether to label PR as stale. 2025-12-04T08:42:47.3117727Z [165270] Skipping because PR was updated recently 2025-12-04T08:42:47.3118464Z ##[endgroup] 2025-12-04T08:42:47.3119074Z ##[group]Processing PR #165271 2025-12-04T08:42:47.3119646Z [165271] URL: https://github.com/pytorch/pytorch/pull/165271 2025-12-04T08:42:47.3120269Z [165271] Checking whether to label PR as stale. 2025-12-04T08:42:47.3120854Z [165271] Skipping because PR was updated recently 2025-12-04T08:42:47.3121581Z ##[endgroup] 2025-12-04T08:42:47.3122188Z ##[group]Processing PR #165274 2025-12-04T08:42:47.3122780Z [165274] URL: https://github.com/pytorch/pytorch/pull/165274 2025-12-04T08:42:47.3123557Z [165274] Checking whether to label PR as stale. 2025-12-04T08:42:47.3125560Z [165274] Skipping because PR was updated recently 2025-12-04T08:42:47.3126328Z ##[endgroup] 2025-12-04T08:42:47.3126927Z ##[group]Processing PR #165278 2025-12-04T08:42:47.3127479Z [165278] URL: https://github.com/pytorch/pytorch/pull/165278 2025-12-04T08:42:47.3128158Z [165278] Checking whether to label PR as stale. 2025-12-04T08:42:47.3128791Z [165278] Skipping because PR was updated recently 2025-12-04T08:42:47.3129553Z ##[endgroup] 2025-12-04T08:42:47.3130212Z ##[group]Processing PR #165283 2025-12-04T08:42:47.3130810Z [165283] URL: https://github.com/pytorch/pytorch/pull/165283 2025-12-04T08:42:47.3131641Z [165283] Checking whether to label PR as stale. 2025-12-04T08:42:47.3132244Z [165283] Skipping because PR was updated recently 2025-12-04T08:42:47.3133050Z ##[endgroup] 2025-12-04T08:42:47.3133693Z ##[group]Processing PR #165284 2025-12-04T08:42:47.3134725Z [165284] URL: https://github.com/pytorch/pytorch/pull/165284 2025-12-04T08:42:47.3135351Z [165284] Checking whether to label PR as stale. 2025-12-04T08:42:47.3135884Z [165284] Skipping because PR was updated recently 2025-12-04T08:42:47.3136643Z ##[endgroup] 2025-12-04T08:42:47.3137235Z ##[group]Processing PR #165285 2025-12-04T08:42:47.3138067Z [165285] URL: https://github.com/pytorch/pytorch/pull/165285 2025-12-04T08:42:47.3138725Z [165285] Checking whether to label PR as stale. 2025-12-04T08:42:47.3139323Z [165285] Skipping because PR was updated recently 2025-12-04T08:42:47.3140106Z ##[endgroup] 2025-12-04T08:42:47.3140719Z ##[group]Processing PR #165300 2025-12-04T08:42:47.3141303Z [165300] URL: https://github.com/pytorch/pytorch/pull/165300 2025-12-04T08:42:47.3141967Z [165300] Checking whether to label PR as stale. 2025-12-04T08:42:47.3142589Z [165300] Skipping because PR was updated recently 2025-12-04T08:42:47.3143410Z ##[endgroup] 2025-12-04T08:42:47.3144048Z ##[group]Processing PR #165303 2025-12-04T08:42:47.3144676Z [165303] URL: https://github.com/pytorch/pytorch/pull/165303 2025-12-04T08:42:47.3145408Z [165303] Checking whether to label PR as stale. 2025-12-04T08:42:47.3146070Z [165303] Skipping because PR was updated recently 2025-12-04T08:42:47.3146970Z ##[endgroup] 2025-12-04T08:42:47.3147638Z ##[group]Processing PR #165309 2025-12-04T08:42:47.3148298Z [165309] URL: https://github.com/pytorch/pytorch/pull/165309 2025-12-04T08:42:47.3149052Z [165309] Checking whether to label PR as stale. 2025-12-04T08:42:47.3149733Z [165309] Skipping because PR was updated recently 2025-12-04T08:42:47.3150640Z ##[endgroup] 2025-12-04T08:42:47.3151338Z ##[group]Processing PR #165313 2025-12-04T08:42:47.3152001Z [165313] URL: https://github.com/pytorch/pytorch/pull/165313 2025-12-04T08:42:47.3152748Z [165313] Checking whether to label PR as stale. 2025-12-04T08:42:47.3153434Z [165313] Skipping because PR was updated recently 2025-12-04T08:42:47.3154346Z ##[endgroup] 2025-12-04T08:42:47.3155044Z ##[group]Processing PR #165322 2025-12-04T08:42:47.3155706Z [165322] URL: https://github.com/pytorch/pytorch/pull/165322 2025-12-04T08:42:47.3156473Z [165322] Checking whether to label PR as stale. 2025-12-04T08:42:47.3157144Z [165322] Skipping because PR was updated recently 2025-12-04T08:42:47.3157983Z ##[endgroup] 2025-12-04T08:42:47.3158687Z ##[group]Processing PR #165355 2025-12-04T08:42:47.3159361Z [165355] URL: https://github.com/pytorch/pytorch/pull/165355 2025-12-04T08:42:47.3160112Z [165355] Checking whether to label PR as stale. 2025-12-04T08:42:47.3160796Z [165355] Skipping because PR was updated recently 2025-12-04T08:42:47.3161709Z ##[endgroup] 2025-12-04T08:42:47.3162363Z ##[group]Processing PR #165361 2025-12-04T08:42:47.3163023Z [165361] URL: https://github.com/pytorch/pytorch/pull/165361 2025-12-04T08:42:47.3163713Z [165361] Checking whether to label PR as stale. 2025-12-04T08:42:47.3164368Z [165361] Skipping because PR was updated recently 2025-12-04T08:42:47.3165219Z ##[endgroup] 2025-12-04T08:42:47.3166193Z ##[group]Processing PR #165363 2025-12-04T08:42:47.3166754Z [165363] URL: https://github.com/pytorch/pytorch/pull/165363 2025-12-04T08:42:47.3167443Z [165363] Checking whether to label PR as stale. 2025-12-04T08:42:47.3168051Z [165363] Skipping because PR was updated recently 2025-12-04T08:42:47.3168842Z ##[endgroup] 2025-12-04T08:42:47.3169439Z ##[group]Processing PR #165367 2025-12-04T08:42:47.3170028Z [165367] URL: https://github.com/pytorch/pytorch/pull/165367 2025-12-04T08:42:47.3170689Z [165367] Checking whether to label PR as stale. 2025-12-04T08:42:47.3171410Z [165367] Skipping because PR was updated recently 2025-12-04T08:42:47.3172224Z ##[endgroup] 2025-12-04T08:42:47.3172892Z ##[group]Processing PR #165371 2025-12-04T08:42:47.3173533Z [165371] URL: https://github.com/pytorch/pytorch/pull/165371 2025-12-04T08:42:47.3174263Z [165371] Checking whether to label PR as stale. 2025-12-04T08:42:47.3174924Z [165371] Skipping because PR was updated recently 2025-12-04T08:42:47.3175782Z ##[endgroup] 2025-12-04T08:42:47.3176447Z ##[group]Processing PR #165384 2025-12-04T08:42:47.3177045Z [165384] URL: https://github.com/pytorch/pytorch/pull/165384 2025-12-04T08:42:47.3177709Z [165384] Checking whether to label PR as stale. 2025-12-04T08:42:47.3178297Z [165384] Skipping because PR was updated recently 2025-12-04T08:42:47.3179097Z ##[endgroup] 2025-12-04T08:42:47.3179715Z ##[group]Processing PR #165390 2025-12-04T08:42:47.3180518Z [165390] URL: https://github.com/pytorch/pytorch/pull/165390 2025-12-04T08:42:47.3181283Z [165390] Checking whether to label PR as stale. 2025-12-04T08:42:47.3181938Z [165390] Skipping because PR was updated recently 2025-12-04T08:42:47.3182814Z ##[endgroup] 2025-12-04T08:42:47.3183460Z ##[group]Processing PR #165391 2025-12-04T08:42:47.3183963Z [165391] URL: https://github.com/pytorch/pytorch/pull/165391 2025-12-04T08:42:47.3184384Z [165391] Checking whether to label PR as stale. 2025-12-04T08:42:47.3184767Z [165391] Skipping because PR was updated recently 2025-12-04T08:42:47.3185278Z ##[endgroup] 2025-12-04T08:42:47.3185656Z ##[group]Processing PR #165429 2025-12-04T08:42:47.3186386Z [165429] URL: https://github.com/pytorch/pytorch/pull/165429 2025-12-04T08:42:47.3186804Z [165429] Checking whether to label PR as stale. 2025-12-04T08:42:47.3187185Z [165429] Skipping because PR was updated recently 2025-12-04T08:42:47.3187684Z ##[endgroup] 2025-12-04T08:42:47.3188084Z ##[group]Processing PR #165431 2025-12-04T08:42:47.3188438Z [165431] URL: https://github.com/pytorch/pytorch/pull/165431 2025-12-04T08:42:47.3188861Z [165431] Checking whether to label PR as stale. 2025-12-04T08:42:47.3189224Z [165431] Skipping because PR was updated recently 2025-12-04T08:42:47.3189707Z ##[endgroup] 2025-12-04T08:42:47.3190093Z ##[group]Processing PR #165435 2025-12-04T08:42:47.3190461Z [165435] URL: https://github.com/pytorch/pytorch/pull/165435 2025-12-04T08:42:47.3190865Z [165435] Checking whether to label PR as stale. 2025-12-04T08:42:47.3191242Z [165435] Skipping because PR was updated recently 2025-12-04T08:42:47.3191722Z ##[endgroup] 2025-12-04T08:42:47.3192108Z ##[group]Processing PR #165440 2025-12-04T08:42:47.3192471Z [165440] URL: https://github.com/pytorch/pytorch/pull/165440 2025-12-04T08:42:47.3192877Z [165440] Checking whether to label PR as stale. 2025-12-04T08:42:47.3193460Z [165440] Skipping because PR was updated recently 2025-12-04T08:42:47.3193954Z ##[endgroup] 2025-12-04T08:42:47.3194346Z ##[group]Processing PR #165442 2025-12-04T08:42:47.3194700Z [165442] URL: https://github.com/pytorch/pytorch/pull/165442 2025-12-04T08:42:47.3195121Z [165442] Checking whether to label PR as stale. 2025-12-04T08:42:47.3195486Z [165442] Skipping because PR was updated recently 2025-12-04T08:42:47.3195976Z ##[endgroup] 2025-12-04T08:42:47.3196368Z ##[group]Processing PR #165452 2025-12-04T08:42:47.3196740Z [165452] URL: https://github.com/pytorch/pytorch/pull/165452 2025-12-04T08:42:47.3197454Z [165452] Checking whether to label PR as stale. 2025-12-04T08:42:47.3197835Z [165452] Skipping because PR was updated recently 2025-12-04T08:42:47.3198469Z ##[endgroup] 2025-12-04T08:42:47.3198855Z ##[group]Processing PR #165456 2025-12-04T08:42:47.3199220Z [165456] URL: https://github.com/pytorch/pytorch/pull/165456 2025-12-04T08:42:47.3199631Z [165456] Checking whether to label PR as stale. 2025-12-04T08:42:47.3200005Z [165456] Skipping because PR was updated recently 2025-12-04T08:42:47.3200491Z ##[endgroup] 2025-12-04T08:42:47.3200882Z ##[group]Processing PR #165472 2025-12-04T08:42:47.3201238Z [165472] URL: https://github.com/pytorch/pytorch/pull/165472 2025-12-04T08:42:47.3201661Z [165472] Checking whether to label PR as stale. 2025-12-04T08:42:47.3202025Z [165472] Skipping because PR was updated recently 2025-12-04T08:42:47.3202514Z ##[endgroup] 2025-12-04T08:42:47.3202905Z ##[group]Processing PR #165473 2025-12-04T08:42:47.3203261Z [165473] URL: https://github.com/pytorch/pytorch/pull/165473 2025-12-04T08:42:47.3203685Z [165473] Checking whether to label PR as stale. 2025-12-04T08:42:47.3204051Z [165473] Skipping because PR was updated recently 2025-12-04T08:42:47.3204548Z ##[endgroup] 2025-12-04T08:42:47.3204944Z ##[group]Processing PR #165475 2025-12-04T08:42:47.3205315Z [165475] URL: https://github.com/pytorch/pytorch/pull/165475 2025-12-04T08:42:47.3205725Z [165475] Checking whether to label PR as stale. 2025-12-04T08:42:47.3206104Z [165475] Skipping because PR was updated recently 2025-12-04T08:42:47.3206665Z ##[endgroup] 2025-12-04T08:42:47.3207036Z ##[group]Processing PR #165476 2025-12-04T08:42:47.3207398Z [165476] URL: https://github.com/pytorch/pytorch/pull/165476 2025-12-04T08:42:47.3207817Z [165476] Checking whether to label PR as stale. 2025-12-04T08:42:47.3208178Z [165476] Skipping because PR was updated recently 2025-12-04T08:42:47.3208668Z ##[endgroup] 2025-12-04T08:42:47.3209048Z ##[group]Processing PR #165481 2025-12-04T08:42:47.3209399Z [165481] URL: https://github.com/pytorch/pytorch/pull/165481 2025-12-04T08:42:47.3209817Z [165481] Checking whether to label PR as stale. 2025-12-04T08:42:47.3210179Z [165481] Skipping because PR was updated recently 2025-12-04T08:42:47.3210661Z ##[endgroup] 2025-12-04T08:42:47.3211041Z ##[group]Processing PR #165482 2025-12-04T08:42:47.3211519Z [165482] URL: https://github.com/pytorch/pytorch/pull/165482 2025-12-04T08:42:47.3211927Z [165482] Checking whether to label PR as stale. 2025-12-04T08:42:47.3212302Z [165482] Skipping because PR was updated recently 2025-12-04T08:42:47.3212801Z ##[endgroup] 2025-12-04T08:42:47.3213172Z ##[group]Processing PR #165483 2025-12-04T08:42:47.3213537Z [165483] URL: https://github.com/pytorch/pytorch/pull/165483 2025-12-04T08:42:47.3213947Z [165483] Checking whether to label PR as stale. 2025-12-04T08:42:47.3214323Z [165483] Skipping because PR was updated recently 2025-12-04T08:42:47.3214814Z ##[endgroup] 2025-12-04T08:42:47.3215199Z ##[group]Processing PR #165485 2025-12-04T08:42:47.3215550Z [165485] URL: https://github.com/pytorch/pytorch/pull/165485 2025-12-04T08:42:47.3215968Z [165485] Checking whether to label PR as stale. 2025-12-04T08:42:47.3216340Z [165485] Skipping because PR was updated recently 2025-12-04T08:42:47.3216823Z ##[endgroup] 2025-12-04T08:42:47.3217204Z ##[group]Processing PR #165502 2025-12-04T08:42:47.3217571Z [165502] URL: https://github.com/pytorch/pytorch/pull/165502 2025-12-04T08:42:47.3217978Z [165502] Checking whether to label PR as stale. 2025-12-04T08:42:47.3218360Z [165502] Skipping because PR was updated recently 2025-12-04T08:42:47.3218833Z ##[endgroup] 2025-12-04T08:42:47.3219220Z ##[group]Processing PR #165504 2025-12-04T08:42:47.3219584Z [165504] URL: https://github.com/pytorch/pytorch/pull/165504 2025-12-04T08:42:47.3219988Z [165504] Checking whether to label PR as stale. 2025-12-04T08:42:47.3220363Z [165504] Skipping because PR was updated recently 2025-12-04T08:42:47.3220845Z ##[endgroup] 2025-12-04T08:42:47.3221229Z ##[group]Processing PR #165505 2025-12-04T08:42:47.3221577Z [165505] URL: https://github.com/pytorch/pytorch/pull/165505 2025-12-04T08:42:47.3221992Z [165505] Checking whether to label PR as stale. 2025-12-04T08:42:47.3222522Z [165505] Skipping because PR was updated recently 2025-12-04T08:42:47.3223013Z ##[endgroup] 2025-12-04T08:42:47.3223403Z ##[group]Processing PR #165507 2025-12-04T08:42:47.3223756Z [165507] URL: https://github.com/pytorch/pytorch/pull/165507 2025-12-04T08:42:47.3224176Z [165507] Checking whether to label PR as stale. 2025-12-04T08:42:47.3224562Z [165507] Skipping because PR was updated recently 2025-12-04T08:42:47.3225033Z ##[endgroup] 2025-12-04T08:42:47.3225416Z ##[group]Processing PR #165516 2025-12-04T08:42:47.3225782Z [165516] URL: https://github.com/pytorch/pytorch/pull/165516 2025-12-04T08:42:47.3226185Z [165516] Checking whether to label PR as stale. 2025-12-04T08:42:47.3226556Z [165516] Skipping because PR was updated recently 2025-12-04T08:42:47.3227041Z ##[endgroup] 2025-12-04T08:42:47.3227424Z ##[group]Processing PR #165522 2025-12-04T08:42:47.3227777Z [165522] URL: https://github.com/pytorch/pytorch/pull/165522 2025-12-04T08:42:47.3228197Z [165522] Checking whether to label PR as stale. 2025-12-04T08:42:47.3228563Z [165522] Skipping because PR was updated recently 2025-12-04T08:42:47.3229053Z ##[endgroup] 2025-12-04T08:42:47.3229435Z ##[group]Processing PR #165526 2025-12-04T08:42:47.3229786Z [165526] URL: https://github.com/pytorch/pytorch/pull/165526 2025-12-04T08:42:47.3230202Z [165526] Checking whether to label PR as stale. 2025-12-04T08:42:47.3230672Z [165526] Skipping because PR was updated recently 2025-12-04T08:42:47.3231149Z ##[endgroup] 2025-12-04T08:42:47.3231530Z ##[group]Processing PR #165527 2025-12-04T08:42:47.3231896Z [165527] URL: https://github.com/pytorch/pytorch/pull/165527 2025-12-04T08:42:47.3232303Z [165527] Checking whether to label PR as stale. 2025-12-04T08:42:47.3232681Z [165527] Skipping because PR was updated recently 2025-12-04T08:42:47.3233167Z ##[endgroup] 2025-12-04T08:42:47.3233535Z ##[group]Processing PR #165534 2025-12-04T08:42:47.3234366Z [165534] URL: https://github.com/pytorch/pytorch/pull/165534 2025-12-04T08:42:47.3234804Z [165534] Checking whether to label PR as stale. 2025-12-04T08:42:47.3235192Z [165534] Skipping because PR was updated recently 2025-12-04T08:42:47.3235690Z ##[endgroup] 2025-12-04T08:42:47.3236083Z ##[group]Processing PR #165535 2025-12-04T08:42:47.3236439Z [165535] URL: https://github.com/pytorch/pytorch/pull/165535 2025-12-04T08:42:47.3236858Z [165535] Checking whether to label PR as stale. 2025-12-04T08:42:47.3237228Z [165535] Skipping because PR was updated recently 2025-12-04T08:42:47.3237720Z ##[endgroup] 2025-12-04T08:42:47.3238109Z ##[group]Processing PR #165540 2025-12-04T08:42:47.3238475Z [165540] URL: https://github.com/pytorch/pytorch/pull/165540 2025-12-04T08:42:47.3238882Z [165540] Checking whether to label PR as stale. 2025-12-04T08:42:47.3239262Z [165540] Skipping because PR was updated recently 2025-12-04T08:42:47.3239754Z ##[endgroup] 2025-12-04T08:42:47.3240126Z ##[group]Processing PR #165543 2025-12-04T08:42:47.3240492Z [165543] URL: https://github.com/pytorch/pytorch/pull/165543 2025-12-04T08:42:47.3240901Z [165543] Checking whether to label PR as stale. 2025-12-04T08:42:47.3241273Z [165543] Skipping because PR was updated recently 2025-12-04T08:42:47.3241755Z ##[endgroup] 2025-12-04T08:42:47.3242135Z ##[group]Processing PR #165545 2025-12-04T08:42:47.3242487Z [165545] URL: https://github.com/pytorch/pytorch/pull/165545 2025-12-04T08:42:47.3242910Z [165545] Checking whether to label PR as stale. 2025-12-04T08:42:47.3243269Z [165545] Skipping because PR was updated recently 2025-12-04T08:42:47.3253784Z ##[endgroup] 2025-12-04T08:42:47.3254430Z ##[group]Processing PR #165546 2025-12-04T08:42:47.3254829Z [165546] URL: https://github.com/pytorch/pytorch/pull/165546 2025-12-04T08:42:47.3255265Z [165546] Checking whether to label PR as stale. 2025-12-04T08:42:47.3255636Z [165546] Skipping because PR was updated recently 2025-12-04T08:42:47.3256141Z ##[endgroup] 2025-12-04T08:42:47.3256535Z ##[group]Processing PR #165553 2025-12-04T08:42:47.3256894Z [165553] URL: https://github.com/pytorch/pytorch/pull/165553 2025-12-04T08:42:47.3257562Z [165553] Checking whether to label PR as stale. 2025-12-04T08:42:47.3257933Z [165553] Skipping because PR was updated recently 2025-12-04T08:42:47.3258428Z ##[endgroup] 2025-12-04T08:42:47.3258821Z ##[group]Processing PR #165558 2025-12-04T08:42:47.3259194Z [165558] URL: https://github.com/pytorch/pytorch/pull/165558 2025-12-04T08:42:47.3259612Z [165558] Checking whether to label PR as stale. 2025-12-04T08:42:47.3259991Z [165558] Skipping because PR was updated recently 2025-12-04T08:42:47.3260486Z ##[endgroup] 2025-12-04T08:42:47.3260863Z ##[group]Processing PR #165561 2025-12-04T08:42:47.3261230Z [165561] URL: https://github.com/pytorch/pytorch/pull/165561 2025-12-04T08:42:47.3261653Z [165561] Checking whether to label PR as stale. 2025-12-04T08:42:47.3262018Z [165561] Skipping because PR was updated recently 2025-12-04T08:42:47.3262511Z ##[endgroup] 2025-12-04T08:42:47.3262895Z ##[group]Processing PR #165571 2025-12-04T08:42:47.3263247Z [165571] URL: https://github.com/pytorch/pytorch/pull/165571 2025-12-04T08:42:47.3263672Z [165571] Checking whether to label PR as stale. 2025-12-04T08:42:47.3264033Z [165571] Skipping because PR was updated recently 2025-12-04T08:42:47.3264518Z ##[endgroup] 2025-12-04T08:42:47.3264903Z ##[group]Processing PR #165572 2025-12-04T08:42:47.3265272Z [165572] URL: https://github.com/pytorch/pytorch/pull/165572 2025-12-04T08:42:47.3265830Z [165572] Checking whether to label PR as stale. 2025-12-04T08:42:47.3266213Z [165572] Skipping because PR was updated recently 2025-12-04T08:42:47.3266706Z ##[endgroup] 2025-12-04T08:42:47.3267082Z ##[group]Processing PR #165575 2025-12-04T08:42:47.3267452Z [165575] URL: https://github.com/pytorch/pytorch/pull/165575 2025-12-04T08:42:47.3267859Z [165575] Checking whether to label PR as stale. 2025-12-04T08:42:47.3268238Z [165575] Skipping because PR was updated recently 2025-12-04T08:42:47.3268724Z ##[endgroup] 2025-12-04T08:42:47.3269114Z ##[group]Processing PR #165576 2025-12-04T08:42:47.3269469Z [165576] URL: https://github.com/pytorch/pytorch/pull/165576 2025-12-04T08:42:47.3269891Z [165576] Checking whether to label PR as stale. 2025-12-04T08:42:47.3270255Z [165576] Skipping because PR was updated recently 2025-12-04T08:42:47.3270744Z ##[endgroup] 2025-12-04T08:42:47.3271131Z ##[group]Processing PR #165586 2025-12-04T08:42:47.3271485Z [165586] URL: https://github.com/pytorch/pytorch/pull/165586 2025-12-04T08:42:47.3271910Z [165586] Checking whether to label PR as stale. 2025-12-04T08:42:47.3272285Z [165586] Skipping because PR was updated recently 2025-12-04T08:42:47.3272761Z ##[endgroup] 2025-12-04T08:42:47.3273153Z ##[group]Processing PR #165592 2025-12-04T08:42:47.3273520Z [165592] URL: https://github.com/pytorch/pytorch/pull/165592 2025-12-04T08:42:47.3273926Z [165592] Checking whether to label PR as stale. 2025-12-04T08:42:47.3274304Z [165592] Skipping because PR was updated recently 2025-12-04T08:42:47.3274793Z ##[endgroup] 2025-12-04T08:42:47.3275178Z ##[group]Processing PR #165597 2025-12-04T08:42:47.3275537Z [165597] URL: https://github.com/pytorch/pytorch/pull/165597 2025-12-04T08:42:47.3275956Z [165597] Checking whether to label PR as stale. 2025-12-04T08:42:47.3276320Z [165597] Skipping because PR was updated recently 2025-12-04T08:42:47.3276810Z ##[endgroup] 2025-12-04T08:42:47.3277199Z ##[group]Processing PR #165598 2025-12-04T08:42:47.3277555Z [165598] URL: https://github.com/pytorch/pytorch/pull/165598 2025-12-04T08:42:47.3277981Z [165598] Checking whether to label PR as stale. 2025-12-04T08:42:47.3278361Z [165598] Skipping because PR was updated recently 2025-12-04T08:42:47.3278836Z ##[endgroup] 2025-12-04T08:42:47.3279222Z ##[group]Processing PR #165607 2025-12-04T08:42:47.3279589Z [165607] URL: https://github.com/pytorch/pytorch/pull/165607 2025-12-04T08:42:47.3279995Z [165607] Checking whether to label PR as stale. 2025-12-04T08:42:47.3280371Z [165607] Skipping because PR was updated recently 2025-12-04T08:42:47.3280854Z ##[endgroup] 2025-12-04T08:42:47.3281223Z ##[group]Processing PR #165610 2025-12-04T08:42:47.3281675Z [165610] URL: https://github.com/pytorch/pytorch/pull/165610 2025-12-04T08:42:47.3282096Z [165610] Checking whether to label PR as stale. 2025-12-04T08:42:47.3282459Z [165610] Skipping because PR was updated recently 2025-12-04T08:42:47.3282949Z ##[endgroup] 2025-12-04T08:42:47.3283337Z ##[group]Processing PR #165611 2025-12-04T08:42:47.3283699Z [165611] URL: https://github.com/pytorch/pytorch/pull/165611 2025-12-04T08:42:47.3284122Z [165611] Checking whether to label PR as stale. 2025-12-04T08:42:47.3284486Z [165611] Skipping because PR was updated recently 2025-12-04T08:42:47.3284972Z ##[endgroup] 2025-12-04T08:42:47.3285361Z ##[group]Processing PR #165616 2025-12-04T08:42:47.3285728Z [165616] URL: https://github.com/pytorch/pytorch/pull/165616 2025-12-04T08:42:47.3286136Z [165616] Checking whether to label PR as stale. 2025-12-04T08:42:47.3286514Z [165616] Skipping because PR was updated recently 2025-12-04T08:42:47.3287006Z ##[endgroup] 2025-12-04T08:42:47.3287383Z ##[group]Processing PR #165617 2025-12-04T08:42:47.3288053Z [165617] URL: https://github.com/pytorch/pytorch/pull/165617 2025-12-04T08:42:47.3288490Z [165617] Checking whether to label PR as stale. 2025-12-04T08:42:47.3288856Z [165617] Skipping because PR was updated recently 2025-12-04T08:42:47.3289359Z ##[endgroup] 2025-12-04T08:42:47.3289755Z ##[group]Processing PR #165620 2025-12-04T08:42:47.3290212Z [165620] URL: https://github.com/pytorch/pytorch/pull/165620 2025-12-04T08:42:47.3290624Z [165620] Checking whether to label PR as stale. 2025-12-04T08:42:47.3291005Z [165620] Skipping because PR was updated recently 2025-12-04T08:42:47.3291605Z ##[endgroup] 2025-12-04T08:42:47.3291982Z ##[group]Processing PR #165644 2025-12-04T08:42:47.3292355Z [165644] URL: https://github.com/pytorch/pytorch/pull/165644 2025-12-04T08:42:47.3292762Z [165644] Checking whether to label PR as stale. 2025-12-04T08:42:47.3293143Z [165644] Skipping because PR was updated recently 2025-12-04T08:42:47.3293630Z ##[endgroup] 2025-12-04T08:42:47.3294132Z ##[group]Processing PR #165648 2025-12-04T08:42:47.3294506Z [165648] URL: https://github.com/pytorch/pytorch/pull/165648 2025-12-04T08:42:47.3294925Z [165648] Checking whether to label PR as stale. 2025-12-04T08:42:47.3295283Z [165648] Skipping because PR was updated recently 2025-12-04T08:42:47.3295771Z ##[endgroup] 2025-12-04T08:42:47.3296153Z ##[group]Processing PR #165651 2025-12-04T08:42:47.3296507Z [165651] URL: https://github.com/pytorch/pytorch/pull/165651 2025-12-04T08:42:47.3296922Z [165651] Checking whether to label PR as stale. 2025-12-04T08:42:47.3297293Z [165651] Skipping because PR was updated recently 2025-12-04T08:42:47.3297883Z ##[endgroup] 2025-12-04T08:42:47.3298267Z ##[group]Processing PR #165656 2025-12-04T08:42:47.3298630Z [165656] URL: https://github.com/pytorch/pytorch/pull/165656 2025-12-04T08:42:47.3299034Z [165656] Checking whether to label PR as stale. 2025-12-04T08:42:47.3299404Z [165656] Skipping because PR was updated recently 2025-12-04T08:42:47.3299892Z ##[endgroup] 2025-12-04T08:42:47.3300272Z ##[group]Processing PR #165661 2025-12-04T08:42:47.3300622Z [165661] URL: https://github.com/pytorch/pytorch/pull/165661 2025-12-04T08:42:47.3301043Z [165661] Checking whether to label PR as stale. 2025-12-04T08:42:47.3301405Z [165661] Skipping because PR was updated recently 2025-12-04T08:42:47.3301887Z ##[endgroup] 2025-12-04T08:42:47.3302275Z ##[group]Processing PR #165664 2025-12-04T08:42:47.3302625Z [165664] URL: https://github.com/pytorch/pytorch/pull/165664 2025-12-04T08:42:47.3303043Z [165664] Checking whether to label PR as stale. 2025-12-04T08:42:47.3303418Z [165664] Skipping because PR was updated recently 2025-12-04T08:42:47.3303888Z ##[endgroup] 2025-12-04T08:42:47.3304372Z ##[group]Processing PR #165672 2025-12-04T08:42:47.3304738Z [165672] URL: https://github.com/pytorch/pytorch/pull/165672 2025-12-04T08:42:47.3305145Z [165672] Checking whether to label PR as stale. 2025-12-04T08:42:47.3305517Z [165672] Skipping because PR was updated recently 2025-12-04T08:42:47.3306145Z ##[endgroup] 2025-12-04T08:42:47.3306523Z ##[group]Processing PR #165680 2025-12-04T08:42:47.3306892Z [165680] URL: https://github.com/pytorch/pytorch/pull/165680 2025-12-04T08:42:47.3307316Z [165680] Checking whether to label PR as stale. 2025-12-04T08:42:47.3307677Z [165680] Skipping because PR was updated recently 2025-12-04T08:42:47.3308164Z ##[endgroup] 2025-12-04T08:42:47.3308992Z ##[group]Processing PR #165682 2025-12-04T08:42:47.3309356Z [165682] URL: https://github.com/pytorch/pytorch/pull/165682 2025-12-04T08:42:47.3309779Z [165682] Checking whether to label PR as stale. 2025-12-04T08:42:47.3310140Z [165682] Skipping because PR was updated recently 2025-12-04T08:42:47.3310629Z ##[endgroup] 2025-12-04T08:42:47.3311012Z ##[group]Processing PR #165710 2025-12-04T08:42:47.3311375Z [165710] URL: https://github.com/pytorch/pytorch/pull/165710 2025-12-04T08:42:47.3311780Z [165710] Checking whether to label PR as stale. 2025-12-04T08:42:47.3312155Z [165710] Skipping because PR was updated recently 2025-12-04T08:42:47.3312643Z ##[endgroup] 2025-12-04T08:42:47.3313014Z ##[group]Processing PR #165711 2025-12-04T08:42:47.3313377Z [165711] URL: https://github.com/pytorch/pytorch/pull/165711 2025-12-04T08:42:47.3313794Z [165711] Checking whether to label PR as stale. 2025-12-04T08:42:47.3314154Z [165711] Skipping because PR was updated recently 2025-12-04T08:42:47.3314635Z ##[endgroup] 2025-12-04T08:42:47.3315109Z ##[group]Processing PR #165712 2025-12-04T08:42:47.3315463Z [165712] URL: https://github.com/pytorch/pytorch/pull/165712 2025-12-04T08:42:47.3315882Z [165712] Checking whether to label PR as stale. 2025-12-04T08:42:47.3316242Z [165712] Skipping because PR was updated recently 2025-12-04T08:42:47.3316728Z ##[endgroup] 2025-12-04T08:42:47.3317109Z ##[group]Processing PR #165728 2025-12-04T08:42:47.3317477Z [165728] URL: https://github.com/pytorch/pytorch/pull/165728 2025-12-04T08:42:47.3317882Z [165728] Checking whether to label PR as stale. 2025-12-04T08:42:47.3318255Z [165728] Skipping because PR was updated recently 2025-12-04T08:42:47.3318742Z ##[endgroup] 2025-12-04T08:42:47.3319113Z ##[group]Processing PR #165736 2025-12-04T08:42:47.3319478Z [165736] URL: https://github.com/pytorch/pytorch/pull/165736 2025-12-04T08:42:47.3319887Z [165736] Checking whether to label PR as stale. 2025-12-04T08:42:47.3320265Z [165736] Skipping because PR was updated recently 2025-12-04T08:42:47.3320756Z ##[endgroup] 2025-12-04T08:42:47.3321142Z ##[group]Processing PR #165754 2025-12-04T08:42:47.3321495Z [165754] URL: https://github.com/pytorch/pytorch/pull/165754 2025-12-04T08:42:47.3321915Z [165754] Checking whether to label PR as stale. 2025-12-04T08:42:47.3322276Z [165754] Skipping because PR was updated recently 2025-12-04T08:42:47.3322761Z ##[endgroup] 2025-12-04T08:42:48.7084593Z ##[group]Processing PR #165759 2025-12-04T08:42:48.7085268Z [165759] URL: https://github.com/pytorch/pytorch/pull/165759 2025-12-04T08:42:48.7085985Z [165759] Checking whether to label PR as stale. 2025-12-04T08:42:48.7086636Z [165759] Skipping because PR was updated recently 2025-12-04T08:42:48.7087514Z ##[endgroup] 2025-12-04T08:42:48.7088155Z ##[group]Processing PR #165766 2025-12-04T08:42:48.7089178Z [165766] URL: https://github.com/pytorch/pytorch/pull/165766 2025-12-04T08:42:48.7090021Z [165766] Checking whether to label PR as stale. 2025-12-04T08:42:48.7090760Z [165766] Skipping because PR was updated recently 2025-12-04T08:42:48.7091852Z ##[endgroup] 2025-12-04T08:42:48.7092662Z ##[group]Processing PR #165772 2025-12-04T08:42:48.7093414Z [165772] URL: https://github.com/pytorch/pytorch/pull/165772 2025-12-04T08:42:48.7094244Z [165772] Checking whether to label PR as stale. 2025-12-04T08:42:48.7094992Z [165772] Skipping because PR was updated recently 2025-12-04T08:42:48.7095940Z ##[endgroup] 2025-12-04T08:42:48.7096712Z ##[group]Processing PR #165773 2025-12-04T08:42:48.7097451Z [165773] URL: https://github.com/pytorch/pytorch/pull/165773 2025-12-04T08:42:48.7098269Z [165773] Checking whether to label PR as stale. 2025-12-04T08:42:48.7099485Z [165773] Skipping because PR was updated recently 2025-12-04T08:42:48.7100460Z ##[endgroup] 2025-12-04T08:42:48.7101243Z ##[group]Processing PR #165777 2025-12-04T08:42:48.7101976Z [165777] URL: https://github.com/pytorch/pytorch/pull/165777 2025-12-04T08:42:48.7102821Z [165777] Checking whether to label PR as stale. 2025-12-04T08:42:48.7103579Z [165777] Skipping because PR was updated recently 2025-12-04T08:42:48.7104539Z ##[endgroup] 2025-12-04T08:42:48.7105322Z ##[group]Processing PR #165779 2025-12-04T08:42:48.7106090Z [165779] URL: https://github.com/pytorch/pytorch/pull/165779 2025-12-04T08:42:48.7106898Z [165779] Checking whether to label PR as stale. 2025-12-04T08:42:48.7107642Z [165779] Skipping because PR was updated recently 2025-12-04T08:42:48.7108580Z ##[endgroup] 2025-12-04T08:42:48.7109391Z ##[group]Processing PR #165791 2025-12-04T08:42:48.7110113Z [165791] URL: https://github.com/pytorch/pytorch/pull/165791 2025-12-04T08:42:48.7110932Z [165791] Checking whether to label PR as stale. 2025-12-04T08:42:48.7111691Z [165791] Skipping because PR was updated recently 2025-12-04T08:42:48.7112653Z ##[endgroup] 2025-12-04T08:42:48.7113430Z ##[group]Processing PR #165793 2025-12-04T08:42:48.7114182Z [165793] URL: https://github.com/pytorch/pytorch/pull/165793 2025-12-04T08:42:48.7114999Z [165793] Checking whether to label PR as stale. 2025-12-04T08:42:48.7116034Z [165793] Skipping because PR was updated recently 2025-12-04T08:42:48.7117023Z ##[endgroup] 2025-12-04T08:42:48.7117801Z ##[group]Processing PR #165800 2025-12-04T08:42:48.7118534Z [165800] URL: https://github.com/pytorch/pytorch/pull/165800 2025-12-04T08:42:48.7119491Z [165800] Checking whether to label PR as stale. 2025-12-04T08:42:48.7120256Z [165800] Skipping because PR was updated recently 2025-12-04T08:42:48.7121194Z ##[endgroup] 2025-12-04T08:42:48.7121968Z ##[group]Processing PR #165803 2025-12-04T08:42:48.7122723Z [165803] URL: https://github.com/pytorch/pytorch/pull/165803 2025-12-04T08:42:48.7123544Z [165803] Checking whether to label PR as stale. 2025-12-04T08:42:48.7124325Z [165803] Skipping because PR was updated recently 2025-12-04T08:42:48.7125283Z ##[endgroup] 2025-12-04T08:42:48.7126059Z ##[group]Processing PR #165825 2025-12-04T08:42:48.7126791Z [165825] URL: https://github.com/pytorch/pytorch/pull/165825 2025-12-04T08:42:48.7127622Z [165825] Checking whether to label PR as stale. 2025-12-04T08:42:48.7128385Z [165825] Skipping because PR was updated recently 2025-12-04T08:42:48.7129354Z ##[endgroup] 2025-12-04T08:42:48.7130111Z ##[group]Processing PR #165835 2025-12-04T08:42:48.7130862Z [165835] URL: https://github.com/pytorch/pytorch/pull/165835 2025-12-04T08:42:48.7131781Z [165835] Checking whether to label PR as stale. 2025-12-04T08:42:48.7132513Z [165835] Skipping because PR was updated recently 2025-12-04T08:42:48.7133440Z ##[endgroup] 2025-12-04T08:42:48.7161703Z ##[group]Processing PR #165837 2025-12-04T08:42:48.7162607Z [165837] URL: https://github.com/pytorch/pytorch/pull/165837 2025-12-04T08:42:48.7163408Z [165837] Checking whether to label PR as stale. 2025-12-04T08:42:48.7164048Z [165837] Skipping because PR was updated recently 2025-12-04T08:42:48.7165413Z ##[endgroup] 2025-12-04T08:42:48.7166050Z ##[group]Processing PR #165839 2025-12-04T08:42:48.7166651Z [165839] URL: https://github.com/pytorch/pytorch/pull/165839 2025-12-04T08:42:48.7167343Z [165839] Checking whether to label PR as stale. 2025-12-04T08:42:48.7167955Z [165839] Skipping because PR was updated recently 2025-12-04T08:42:48.7168772Z ##[endgroup] 2025-12-04T08:42:48.7169395Z ##[group]Processing PR #165859 2025-12-04T08:42:48.7169971Z [165859] URL: https://github.com/pytorch/pytorch/pull/165859 2025-12-04T08:42:48.7170661Z [165859] Checking whether to label PR as stale. 2025-12-04T08:42:48.7171381Z [165859] Skipping because PR was updated recently 2025-12-04T08:42:48.7172238Z ##[endgroup] 2025-12-04T08:42:48.7172902Z ##[group]Processing PR #165862 2025-12-04T08:42:48.7173513Z [165862] URL: https://github.com/pytorch/pytorch/pull/165862 2025-12-04T08:42:48.7174553Z [165862] Checking whether to label PR as stale. 2025-12-04T08:42:48.7175189Z [165862] Skipping because PR was updated recently 2025-12-04T08:42:48.7176003Z ##[endgroup] 2025-12-04T08:42:48.7176696Z ##[group]Processing PR #165863 2025-12-04T08:42:48.7177312Z [165863] URL: https://github.com/pytorch/pytorch/pull/165863 2025-12-04T08:42:48.7178033Z [165863] Checking whether to label PR as stale. 2025-12-04T08:42:48.7178663Z [165863] Skipping because PR was updated recently 2025-12-04T08:42:48.7179497Z ##[endgroup] 2025-12-04T08:42:48.7180157Z ##[group]Processing PR #165869 2025-12-04T08:42:48.7180804Z [165869] URL: https://github.com/pytorch/pytorch/pull/165869 2025-12-04T08:42:48.7181548Z [165869] Checking whether to label PR as stale. 2025-12-04T08:42:48.7182198Z [165869] Skipping because PR was updated recently 2025-12-04T08:42:48.7183080Z ##[endgroup] 2025-12-04T08:42:48.7183787Z ##[group]Processing PR #165887 2025-12-04T08:42:48.7184420Z [165887] URL: https://github.com/pytorch/pytorch/pull/165887 2025-12-04T08:42:48.7185172Z [165887] Checking whether to label PR as stale. 2025-12-04T08:42:48.7185783Z [165887] Skipping because PR was updated recently 2025-12-04T08:42:48.7186624Z ##[endgroup] 2025-12-04T08:42:48.7187240Z ##[group]Processing PR #165888 2025-12-04T08:42:48.7187823Z [165888] URL: https://github.com/pytorch/pytorch/pull/165888 2025-12-04T08:42:48.7188720Z [165888] Checking whether to label PR as stale. 2025-12-04T08:42:48.7189360Z [165888] Skipping because PR was updated recently 2025-12-04T08:42:48.7190170Z ##[endgroup] 2025-12-04T08:42:48.7190767Z ##[group]Processing PR #165899 2025-12-04T08:42:48.7191409Z [165899] URL: https://github.com/pytorch/pytorch/pull/165899 2025-12-04T08:42:48.7192096Z [165899] Checking whether to label PR as stale. 2025-12-04T08:42:48.7192714Z [165899] Skipping because PR was updated recently 2025-12-04T08:42:48.7193543Z ##[endgroup] 2025-12-04T08:42:48.7194164Z ##[group]Processing PR #165919 2025-12-04T08:42:48.7194763Z [165919] URL: https://github.com/pytorch/pytorch/pull/165919 2025-12-04T08:42:48.7195498Z [165919] Checking whether to label PR as stale. 2025-12-04T08:42:48.7196108Z [165919] Skipping because PR was updated recently 2025-12-04T08:42:48.7196928Z ##[endgroup] 2025-12-04T08:42:48.7197571Z ##[group]Processing PR #165922 2025-12-04T08:42:48.7198193Z [165922] URL: https://github.com/pytorch/pytorch/pull/165922 2025-12-04T08:42:48.7198899Z [165922] Checking whether to label PR as stale. 2025-12-04T08:42:48.7199505Z [165922] Skipping because PR was updated recently 2025-12-04T08:42:48.7200291Z ##[endgroup] 2025-12-04T08:42:48.7200945Z ##[group]Processing PR #165925 2025-12-04T08:42:48.7201551Z [165925] URL: https://github.com/pytorch/pytorch/pull/165925 2025-12-04T08:42:48.7202246Z [165925] Checking whether to label PR as stale. 2025-12-04T08:42:48.7202864Z [165925] Skipping because PR was updated recently 2025-12-04T08:42:48.7203661Z ##[endgroup] 2025-12-04T08:42:48.7204289Z ##[group]Processing PR #165932 2025-12-04T08:42:48.7204863Z [165932] URL: https://github.com/pytorch/pytorch/pull/165932 2025-12-04T08:42:48.7205574Z [165932] Checking whether to label PR as stale. 2025-12-04T08:42:48.7206204Z [165932] Skipping because PR was updated recently 2025-12-04T08:42:48.7206992Z ##[endgroup] 2025-12-04T08:42:48.7207629Z ##[group]Processing PR #165940 2025-12-04T08:42:48.7208216Z [165940] URL: https://github.com/pytorch/pytorch/pull/165940 2025-12-04T08:42:48.7208969Z [165940] Checking whether to label PR as stale. 2025-12-04T08:42:48.7209580Z [165940] Skipping because PR was updated recently 2025-12-04T08:42:48.7210387Z ##[endgroup] 2025-12-04T08:42:48.7211031Z ##[group]Processing PR #165945 2025-12-04T08:42:48.7211756Z [165945] URL: https://github.com/pytorch/pytorch/pull/165945 2025-12-04T08:42:48.7212455Z [165945] Checking whether to label PR as stale. 2025-12-04T08:42:48.7213124Z [165945] Skipping because PR was updated recently 2025-12-04T08:42:48.7213892Z ##[endgroup] 2025-12-04T08:42:48.7214542Z ##[group]Processing PR #165947 2025-12-04T08:42:48.7215355Z [165947] URL: https://github.com/pytorch/pytorch/pull/165947 2025-12-04T08:42:48.7216060Z [165947] Checking whether to label PR as stale. 2025-12-04T08:42:48.7216692Z [165947] Skipping because PR was updated recently 2025-12-04T08:42:48.7217496Z ##[endgroup] 2025-12-04T08:42:48.7218128Z ##[group]Processing PR #165965 2025-12-04T08:42:48.7218733Z [165965] URL: https://github.com/pytorch/pytorch/pull/165965 2025-12-04T08:42:48.7219428Z [165965] Checking whether to label PR as stale. 2025-12-04T08:42:48.7220054Z [165965] Skipping because PR was updated recently 2025-12-04T08:42:48.7220882Z ##[endgroup] 2025-12-04T08:42:48.7221524Z ##[group]Processing PR #165969 2025-12-04T08:42:48.7222160Z [165969] URL: https://github.com/pytorch/pytorch/pull/165969 2025-12-04T08:42:48.7222824Z [165969] Checking whether to label PR as stale. 2025-12-04T08:42:48.7223438Z [165969] Skipping because PR was updated recently 2025-12-04T08:42:48.7224269Z ##[endgroup] 2025-12-04T08:42:48.7224898Z ##[group]Processing PR #165972 2025-12-04T08:42:48.7225499Z [165972] URL: https://github.com/pytorch/pytorch/pull/165972 2025-12-04T08:42:48.7226211Z [165972] Checking whether to label PR as stale. 2025-12-04T08:42:48.7226854Z [165972] Skipping because PR was updated recently 2025-12-04T08:42:48.7227729Z ##[endgroup] 2025-12-04T08:42:48.7228397Z ##[group]Processing PR #165975 2025-12-04T08:42:48.7229192Z [165975] URL: https://github.com/pytorch/pytorch/pull/165975 2025-12-04T08:42:48.7229889Z [165975] Checking whether to label PR as stale. 2025-12-04T08:42:48.7230572Z [165975] Skipping because PR was updated recently 2025-12-04T08:42:48.7231411Z ##[endgroup] 2025-12-04T08:42:48.7232069Z ##[group]Processing PR #165979 2025-12-04T08:42:48.7232683Z [165979] URL: https://github.com/pytorch/pytorch/pull/165979 2025-12-04T08:42:48.7233388Z [165979] Checking whether to label PR as stale. 2025-12-04T08:42:48.7281128Z [165979] Skipping because PR was updated recently 2025-12-04T08:42:48.7282299Z ##[endgroup] 2025-12-04T08:42:48.7283034Z ##[group]Processing PR #165986 2025-12-04T08:42:48.7283598Z [165986] URL: https://github.com/pytorch/pytorch/pull/165986 2025-12-04T08:42:48.7284297Z [165986] Checking whether to label PR as stale. 2025-12-04T08:42:48.7284919Z [165986] Skipping because PR was updated recently 2025-12-04T08:42:48.7285683Z ##[endgroup] 2025-12-04T08:42:48.7286331Z ##[group]Processing PR #165990 2025-12-04T08:42:48.7286944Z [165990] URL: https://github.com/pytorch/pytorch/pull/165990 2025-12-04T08:42:48.7287670Z [165990] Checking whether to label PR as stale. 2025-12-04T08:42:48.7288284Z [165990] Skipping because PR was updated recently 2025-12-04T08:42:48.7289085Z ##[endgroup] 2025-12-04T08:42:48.7289736Z ##[group]Processing PR #165991 2025-12-04T08:42:48.7290353Z [165991] URL: https://github.com/pytorch/pytorch/pull/165991 2025-12-04T08:42:48.7291074Z [165991] Checking whether to label PR as stale. 2025-12-04T08:42:48.7291797Z [165991] Skipping because PR was updated recently 2025-12-04T08:42:48.7292604Z ##[endgroup] 2025-12-04T08:42:48.7293229Z ##[group]Processing PR #165993 2025-12-04T08:42:48.7293808Z [165993] URL: https://github.com/pytorch/pytorch/pull/165993 2025-12-04T08:42:48.7294533Z [165993] Checking whether to label PR as stale. 2025-12-04T08:42:48.7295158Z [165993] Skipping because PR was updated recently 2025-12-04T08:42:48.7296004Z ##[endgroup] 2025-12-04T08:42:48.7296656Z ##[group]Processing PR #165997 2025-12-04T08:42:48.7297283Z [165997] URL: https://github.com/pytorch/pytorch/pull/165997 2025-12-04T08:42:48.7298028Z [165997] Checking whether to label PR as stale. 2025-12-04T08:42:48.7298668Z [165997] Skipping because PR was updated recently 2025-12-04T08:42:48.7299526Z ##[endgroup] 2025-12-04T08:42:48.7300186Z ##[group]Processing PR #166000 2025-12-04T08:42:48.7300819Z [166000] URL: https://github.com/pytorch/pytorch/pull/166000 2025-12-04T08:42:48.7301555Z [166000] Checking whether to label PR as stale. 2025-12-04T08:42:48.7302197Z [166000] Skipping because PR was updated recently 2025-12-04T08:42:48.7303037Z ##[endgroup] 2025-12-04T08:42:48.7304015Z ##[group]Processing PR #166007 2025-12-04T08:42:48.7304587Z [166007] URL: https://github.com/pytorch/pytorch/pull/166007 2025-12-04T08:42:48.7305267Z [166007] Checking whether to label PR as stale. 2025-12-04T08:42:48.7305876Z [166007] Skipping because PR was updated recently 2025-12-04T08:42:48.7306728Z ##[endgroup] 2025-12-04T08:42:48.7307388Z ##[group]Processing PR #166010 2025-12-04T08:42:48.7307995Z [166010] URL: https://github.com/pytorch/pytorch/pull/166010 2025-12-04T08:42:48.7308723Z [166010] Checking whether to label PR as stale. 2025-12-04T08:42:48.7309352Z [166010] Skipping because PR was updated recently 2025-12-04T08:42:48.7310205Z ##[endgroup] 2025-12-04T08:42:48.7310811Z ##[group]Processing PR #166030 2025-12-04T08:42:48.7311392Z [166030] URL: https://github.com/pytorch/pytorch/pull/166030 2025-12-04T08:42:48.7312009Z [166030] Checking whether to label PR as stale. 2025-12-04T08:42:48.7312658Z [166030] Skipping because PR was updated recently 2025-12-04T08:42:48.7313566Z ##[endgroup] 2025-12-04T08:42:48.7314249Z ##[group]Processing PR #166031 2025-12-04T08:42:48.7314808Z [166031] URL: https://github.com/pytorch/pytorch/pull/166031 2025-12-04T08:42:48.7315427Z [166031] Checking whether to label PR as stale. 2025-12-04T08:42:48.7316023Z [166031] Skipping because PR was updated recently 2025-12-04T08:42:48.7316776Z ##[endgroup] 2025-12-04T08:42:48.7317651Z ##[group]Processing PR #166038 2025-12-04T08:42:48.7318267Z [166038] URL: https://github.com/pytorch/pytorch/pull/166038 2025-12-04T08:42:48.7318920Z [166038] Checking whether to label PR as stale. 2025-12-04T08:42:48.7329859Z [166038] Skipping because PR was updated recently 2025-12-04T08:42:48.7330718Z ##[endgroup] 2025-12-04T08:42:48.7331374Z ##[group]Processing PR #166039 2025-12-04T08:42:48.7331939Z [166039] URL: https://github.com/pytorch/pytorch/pull/166039 2025-12-04T08:42:48.7332595Z [166039] Checking whether to label PR as stale. 2025-12-04T08:42:48.7333201Z [166039] Skipping because PR was updated recently 2025-12-04T08:42:48.7334436Z ##[endgroup] 2025-12-04T08:42:48.7335076Z ##[group]Processing PR #166055 2025-12-04T08:42:48.7335922Z [166055] URL: https://github.com/pytorch/pytorch/pull/166055 2025-12-04T08:42:48.7336564Z [166055] Checking whether to label PR as stale. 2025-12-04T08:42:48.7337114Z [166055] Skipping because PR was updated recently 2025-12-04T08:42:48.7337822Z ##[endgroup] 2025-12-04T08:42:48.7338403Z ##[group]Processing PR #166058 2025-12-04T08:42:48.7338932Z [166058] URL: https://github.com/pytorch/pytorch/pull/166058 2025-12-04T08:42:48.7339502Z [166058] Checking whether to label PR as stale. 2025-12-04T08:42:48.7340068Z [166058] Skipping because PR was updated recently 2025-12-04T08:42:48.7340799Z ##[endgroup] 2025-12-04T08:42:48.7341341Z ##[group]Processing PR #166062 2025-12-04T08:42:48.7341819Z [166062] URL: https://github.com/pytorch/pytorch/pull/166062 2025-12-04T08:42:48.7342593Z [166062] Checking whether to label PR as stale. 2025-12-04T08:42:48.7343302Z [166062] Skipping because PR was updated recently 2025-12-04T08:42:48.7344230Z ##[endgroup] 2025-12-04T08:42:48.7344944Z ##[group]Processing PR #166063 2025-12-04T08:42:48.7345623Z [166063] URL: https://github.com/pytorch/pytorch/pull/166063 2025-12-04T08:42:48.7346403Z [166063] Checking whether to label PR as stale. 2025-12-04T08:42:48.7347111Z [166063] Skipping because PR was updated recently 2025-12-04T08:42:48.7348040Z ##[endgroup] 2025-12-04T08:42:48.7348757Z ##[group]Processing PR #166075 2025-12-04T08:42:48.7349423Z [166075] URL: https://github.com/pytorch/pytorch/pull/166075 2025-12-04T08:42:48.7350209Z [166075] Checking whether to label PR as stale. 2025-12-04T08:42:48.7350894Z [166075] Skipping because PR was updated recently 2025-12-04T08:42:48.7351788Z ##[endgroup] 2025-12-04T08:42:48.7352485Z ##[group]Processing PR #166083 2025-12-04T08:42:48.7353140Z [166083] URL: https://github.com/pytorch/pytorch/pull/166083 2025-12-04T08:42:48.7353922Z [166083] Checking whether to label PR as stale. 2025-12-04T08:42:48.7354616Z [166083] Skipping because PR was updated recently 2025-12-04T08:42:48.7355804Z ##[endgroup] 2025-12-04T08:42:48.7356503Z ##[group]Processing PR #166086 2025-12-04T08:42:48.7357180Z [166086] URL: https://github.com/pytorch/pytorch/pull/166086 2025-12-04T08:42:48.7357944Z [166086] Checking whether to label PR as stale. 2025-12-04T08:42:48.7358641Z [166086] Skipping because PR was updated recently 2025-12-04T08:42:48.7359551Z ##[endgroup] 2025-12-04T08:42:48.7360245Z ##[group]Processing PR #166095 2025-12-04T08:42:48.7360920Z [166095] URL: https://github.com/pytorch/pytorch/pull/166095 2025-12-04T08:42:48.7361705Z [166095] Checking whether to label PR as stale. 2025-12-04T08:42:48.7362386Z [166095] Skipping because PR was updated recently 2025-12-04T08:42:48.7363291Z ##[endgroup] 2025-12-04T08:42:48.7363992Z ##[group]Processing PR #166099 2025-12-04T08:42:48.7364655Z [166099] URL: https://github.com/pytorch/pytorch/pull/166099 2025-12-04T08:42:48.7365440Z [166099] Checking whether to label PR as stale. 2025-12-04T08:42:48.7366135Z [166099] Skipping because PR was updated recently 2025-12-04T08:42:48.7367033Z ##[endgroup] 2025-12-04T08:42:48.7367748Z ##[group]Processing PR #166100 2025-12-04T08:42:48.7368419Z [166100] URL: https://github.com/pytorch/pytorch/pull/166100 2025-12-04T08:42:48.7369188Z [166100] Checking whether to label PR as stale. 2025-12-04T08:42:48.7369889Z [166100] Skipping because PR was updated recently 2025-12-04T08:42:48.7370986Z ##[endgroup] 2025-12-04T08:42:48.7371805Z ##[group]Processing PR #166115 2025-12-04T08:42:48.7372485Z [166115] URL: https://github.com/pytorch/pytorch/pull/166115 2025-12-04T08:42:48.7373254Z [166115] Checking whether to label PR as stale. 2025-12-04T08:42:48.7373959Z [166115] Skipping because PR was updated recently 2025-12-04T08:42:48.7374873Z ##[endgroup] 2025-12-04T08:42:48.7375584Z ##[group]Processing PR #166119 2025-12-04T08:42:48.7376250Z [166119] URL: https://github.com/pytorch/pytorch/pull/166119 2025-12-04T08:42:48.7377030Z [166119] Checking whether to label PR as stale. 2025-12-04T08:42:48.7377724Z [166119] Skipping because PR was updated recently 2025-12-04T08:42:48.7378626Z ##[endgroup] 2025-12-04T08:42:48.7379329Z ##[group]Processing PR #166125 2025-12-04T08:42:48.7380006Z [166125] URL: https://github.com/pytorch/pytorch/pull/166125 2025-12-04T08:42:48.7380784Z [166125] Checking whether to label PR as stale. 2025-12-04T08:42:48.7381497Z [166125] Skipping because PR was updated recently 2025-12-04T08:42:48.7382387Z ##[endgroup] 2025-12-04T08:42:48.7383094Z ##[group]Processing PR #166128 2025-12-04T08:42:48.7383766Z [166128] URL: https://github.com/pytorch/pytorch/pull/166128 2025-12-04T08:42:48.7384538Z [166128] Checking whether to label PR as stale. 2025-12-04T08:42:48.7385231Z [166128] Skipping because PR was updated recently 2025-12-04T08:42:48.7386134Z ##[endgroup] 2025-12-04T08:42:48.7386847Z ##[group]Processing PR #166134 2025-12-04T08:42:48.7387505Z [166134] URL: https://github.com/pytorch/pytorch/pull/166134 2025-12-04T08:42:48.7388289Z [166134] Checking whether to label PR as stale. 2025-12-04T08:42:48.7388983Z [166134] Skipping because PR was updated recently 2025-12-04T08:42:48.7389885Z ##[endgroup] 2025-12-04T08:42:48.7390591Z ##[group]Processing PR #166162 2025-12-04T08:42:48.7391255Z [166162] URL: https://github.com/pytorch/pytorch/pull/166162 2025-12-04T08:42:48.7392039Z [166162] Checking whether to label PR as stale. 2025-12-04T08:42:48.7437558Z [166162] Skipping because PR was updated recently 2025-12-04T08:42:48.7438655Z ##[endgroup] 2025-12-04T08:42:48.7439318Z ##[group]Processing PR #166165 2025-12-04T08:42:48.7440005Z [166165] URL: https://github.com/pytorch/pytorch/pull/166165 2025-12-04T08:42:48.7440815Z [166165] Checking whether to label PR as stale. 2025-12-04T08:42:48.7441492Z [166165] Skipping because PR was updated recently 2025-12-04T08:42:48.7442172Z ##[endgroup] 2025-12-04T08:42:48.7442582Z ##[group]Processing PR #166170 2025-12-04T08:42:48.7442942Z [166170] URL: https://github.com/pytorch/pytorch/pull/166170 2025-12-04T08:42:48.7443598Z [166170] Checking whether to label PR as stale. 2025-12-04T08:42:48.7443967Z [166170] Skipping because PR was updated recently 2025-12-04T08:42:48.7444466Z ##[endgroup] 2025-12-04T08:42:48.7444863Z ##[group]Processing PR #166174 2025-12-04T08:42:48.7445222Z [166174] URL: https://github.com/pytorch/pytorch/pull/166174 2025-12-04T08:42:48.7445648Z [166174] Checking whether to label PR as stale. 2025-12-04T08:42:48.7446036Z [166174] Skipping because PR was updated recently 2025-12-04T08:42:48.7446508Z ##[endgroup] 2025-12-04T08:42:48.7446899Z ##[group]Processing PR #166184 2025-12-04T08:42:48.7447270Z [166184] URL: https://github.com/pytorch/pytorch/pull/166184 2025-12-04T08:42:48.7447681Z [166184] Checking whether to label PR as stale. 2025-12-04T08:42:48.7448058Z [166184] Skipping because PR was updated recently 2025-12-04T08:42:48.7448546Z ##[endgroup] 2025-12-04T08:42:48.7448917Z ##[group]Processing PR #166185 2025-12-04T08:42:48.7449282Z [166185] URL: https://github.com/pytorch/pytorch/pull/166185 2025-12-04T08:42:48.7449706Z [166185] Checking whether to label PR as stale. 2025-12-04T08:42:48.7450066Z [166185] Skipping because PR was updated recently 2025-12-04T08:42:48.7450545Z ##[endgroup] 2025-12-04T08:42:48.7450925Z ##[group]Processing PR #166194 2025-12-04T08:42:48.7451365Z [166194] URL: https://github.com/pytorch/pytorch/pull/166194 2025-12-04T08:42:48.7451893Z [166194] Checking whether to label PR as stale. 2025-12-04T08:42:48.7463239Z [166194] Skipping because PR was updated recently 2025-12-04T08:42:48.7463940Z ##[endgroup] 2025-12-04T08:42:48.7464353Z ##[group]Processing PR #166198 2025-12-04T08:42:48.7464742Z [166198] URL: https://github.com/pytorch/pytorch/pull/166198 2025-12-04T08:42:48.7465167Z [166198] Checking whether to label PR as stale. 2025-12-04T08:42:48.7465551Z [166198] Skipping because PR was updated recently 2025-12-04T08:42:48.7466043Z ##[endgroup] 2025-12-04T08:42:48.7466434Z ##[group]Processing PR #166222 2025-12-04T08:42:48.7466792Z [166222] URL: https://github.com/pytorch/pytorch/pull/166222 2025-12-04T08:42:48.7467228Z [166222] Checking whether to label PR as stale. 2025-12-04T08:42:48.7467591Z [166222] Skipping because PR was updated recently 2025-12-04T08:42:48.7468080Z ##[endgroup] 2025-12-04T08:42:48.7468471Z ##[group]Processing PR #166226 2025-12-04T08:42:48.7468827Z [166226] URL: https://github.com/pytorch/pytorch/pull/166226 2025-12-04T08:42:48.7469260Z [166226] Checking whether to label PR as stale. 2025-12-04T08:42:48.7469639Z [166226] Skipping because PR was updated recently 2025-12-04T08:42:48.7470116Z ##[endgroup] 2025-12-04T08:42:48.7470505Z ##[group]Processing PR #166232 2025-12-04T08:42:48.7470874Z [166232] URL: https://github.com/pytorch/pytorch/pull/166232 2025-12-04T08:42:48.7471286Z [166232] Checking whether to label PR as stale. 2025-12-04T08:42:48.7471666Z [166232] Skipping because PR was updated recently 2025-12-04T08:42:48.7472150Z ##[endgroup] 2025-12-04T08:42:48.7472537Z ##[group]Processing PR #166250 2025-12-04T08:42:48.7472888Z [166250] URL: https://github.com/pytorch/pytorch/pull/166250 2025-12-04T08:42:48.7473311Z [166250] Checking whether to label PR as stale. 2025-12-04T08:42:48.7473674Z [166250] Skipping because PR was updated recently 2025-12-04T08:42:48.7474159Z ##[endgroup] 2025-12-04T08:42:48.7474545Z ##[group]Processing PR #166254 2025-12-04T08:42:48.7474896Z [166254] URL: https://github.com/pytorch/pytorch/pull/166254 2025-12-04T08:42:48.7475325Z [166254] Checking whether to label PR as stale. 2025-12-04T08:42:48.7475737Z [166254] Skipping because PR was updated recently 2025-12-04T08:42:48.7476389Z ##[endgroup] 2025-12-04T08:42:48.7476782Z ##[group]Processing PR #166259 2025-12-04T08:42:48.7477151Z [166259] URL: https://github.com/pytorch/pytorch/pull/166259 2025-12-04T08:42:48.7477562Z [166259] Checking whether to label PR as stale. 2025-12-04T08:42:48.7477940Z [166259] Skipping because PR was updated recently 2025-12-04T08:42:48.7478435Z ##[endgroup] 2025-12-04T08:42:48.7478808Z ##[group]Processing PR #166263 2025-12-04T08:42:48.7479173Z [166263] URL: https://github.com/pytorch/pytorch/pull/166263 2025-12-04T08:42:48.7479713Z [166263] Checking whether to label PR as stale. 2025-12-04T08:42:48.7480077Z [166263] Skipping because PR was updated recently 2025-12-04T08:42:48.7480571Z ##[endgroup] 2025-12-04T08:42:48.7480963Z ##[group]Processing PR #166276 2025-12-04T08:42:48.7481317Z [166276] URL: https://github.com/pytorch/pytorch/pull/166276 2025-12-04T08:42:48.7481747Z [166276] Checking whether to label PR as stale. 2025-12-04T08:42:48.7482108Z [166276] Skipping because PR was updated recently 2025-12-04T08:42:48.7482595Z ##[endgroup] 2025-12-04T08:42:48.7482982Z ##[group]Processing PR #166281 2025-12-04T08:42:48.7483349Z [166281] URL: https://github.com/pytorch/pytorch/pull/166281 2025-12-04T08:42:48.7483757Z [166281] Checking whether to label PR as stale. 2025-12-04T08:42:48.7484135Z [166281] Skipping because PR was updated recently 2025-12-04T08:42:48.7484624Z ##[endgroup] 2025-12-04T08:42:48.7484997Z ##[group]Processing PR #166284 2025-12-04T08:42:48.7485369Z [166284] URL: https://github.com/pytorch/pytorch/pull/166284 2025-12-04T08:42:48.7485776Z [166284] Checking whether to label PR as stale. 2025-12-04T08:42:48.7486153Z [166284] Skipping because PR was updated recently 2025-12-04T08:42:48.7486800Z ##[endgroup] 2025-12-04T08:42:48.7487338Z ##[group]Processing PR #166285 2025-12-04T08:42:48.7487795Z [166285] URL: https://github.com/pytorch/pytorch/pull/166285 2025-12-04T08:42:48.7488222Z [166285] Checking whether to label PR as stale. 2025-12-04T08:42:48.7488586Z [166285] Skipping because PR was updated recently 2025-12-04T08:42:48.7489085Z ##[endgroup] 2025-12-04T08:42:48.7489471Z ##[group]Processing PR #166288 2025-12-04T08:42:48.7489842Z [166288] URL: https://github.com/pytorch/pytorch/pull/166288 2025-12-04T08:42:48.7490247Z [166288] Checking whether to label PR as stale. 2025-12-04T08:42:48.7490618Z [166288] Skipping because PR was updated recently 2025-12-04T08:42:48.7491090Z ##[endgroup] 2025-12-04T08:42:48.7491565Z ##[group]Processing PR #166294 2025-12-04T08:42:48.7491944Z [166294] URL: https://github.com/pytorch/pytorch/pull/166294 2025-12-04T08:42:48.7492359Z [166294] Checking whether to label PR as stale. 2025-12-04T08:42:48.7492736Z [166294] Skipping because PR was updated recently 2025-12-04T08:42:48.7493231Z ##[endgroup] 2025-12-04T08:42:48.7493618Z ##[group]Processing PR #166296 2025-12-04T08:42:48.7493978Z [166296] URL: https://github.com/pytorch/pytorch/pull/166296 2025-12-04T08:42:48.7494401Z [166296] Checking whether to label PR as stale. 2025-12-04T08:42:48.7494766Z [166296] Skipping because PR was updated recently 2025-12-04T08:42:48.7495258Z ##[endgroup] 2025-12-04T08:42:48.7495648Z ##[group]Processing PR #166298 2025-12-04T08:42:48.7496004Z [166298] URL: https://github.com/pytorch/pytorch/pull/166298 2025-12-04T08:42:48.7496424Z [166298] Checking whether to label PR as stale. 2025-12-04T08:42:48.7496802Z [166298] Skipping because PR was updated recently 2025-12-04T08:42:48.7497278Z ##[endgroup] 2025-12-04T08:42:48.7497663Z ##[group]Processing PR #166300 2025-12-04T08:42:48.7498033Z [166300] URL: https://github.com/pytorch/pytorch/pull/166300 2025-12-04T08:42:48.7498439Z [166300] Checking whether to label PR as stale. 2025-12-04T08:42:48.7498820Z [166300] Skipping because PR was updated recently 2025-12-04T08:42:48.7499299Z ##[endgroup] 2025-12-04T08:42:48.7499685Z ##[group]Processing PR #166302 2025-12-04T08:42:48.7500040Z [166302] URL: https://github.com/pytorch/pytorch/pull/166302 2025-12-04T08:42:48.7500461Z [166302] Checking whether to label PR as stale. 2025-12-04T08:42:48.7500834Z [166302] Skipping because PR was updated recently 2025-12-04T08:42:48.7501303Z ##[endgroup] 2025-12-04T08:42:48.7501694Z ##[group]Processing PR #166317 2025-12-04T08:42:48.7502062Z [166317] URL: https://github.com/pytorch/pytorch/pull/166317 2025-12-04T08:42:48.7502467Z [166317] Checking whether to label PR as stale. 2025-12-04T08:42:48.7502840Z [166317] Skipping because PR was updated recently 2025-12-04T08:42:48.7503326Z ##[endgroup] 2025-12-04T08:42:48.7503800Z ##[group]Processing PR #166321 2025-12-04T08:42:48.7504168Z [166321] URL: https://github.com/pytorch/pytorch/pull/166321 2025-12-04T08:42:48.7504592Z [166321] Checking whether to label PR as stale. 2025-12-04T08:42:48.7504958Z [166321] Skipping because PR was updated recently 2025-12-04T08:42:48.7505450Z ##[endgroup] 2025-12-04T08:42:48.7505841Z ##[group]Processing PR #166337 2025-12-04T08:42:48.7506200Z [166337] URL: https://github.com/pytorch/pytorch/pull/166337 2025-12-04T08:42:48.7506620Z [166337] Checking whether to label PR as stale. 2025-12-04T08:42:48.7506980Z [166337] Skipping because PR was updated recently 2025-12-04T08:42:48.7507462Z ##[endgroup] 2025-12-04T08:42:48.7507840Z ##[group]Processing PR #166345 2025-12-04T08:42:48.7508201Z [166345] URL: https://github.com/pytorch/pytorch/pull/166345 2025-12-04T08:42:48.7508605Z [166345] Checking whether to label PR as stale. 2025-12-04T08:42:48.7508978Z [166345] Skipping because PR was updated recently 2025-12-04T08:42:48.7509462Z ##[endgroup] 2025-12-04T08:42:48.7509835Z ##[group]Processing PR #166353 2025-12-04T08:42:48.7510201Z [166353] URL: https://github.com/pytorch/pytorch/pull/166353 2025-12-04T08:42:48.7510608Z [166353] Checking whether to label PR as stale. 2025-12-04T08:42:48.7510981Z [166353] Skipping because PR was updated recently 2025-12-04T08:42:48.7511465Z ##[endgroup] 2025-12-04T08:42:48.7511847Z ##[group]Processing PR #166358 2025-12-04T08:42:48.7512265Z [166358] URL: https://github.com/pytorch/pytorch/pull/166358 2025-12-04T08:42:48.7512683Z [166358] Checking whether to label PR as stale. 2025-12-04T08:42:48.7513041Z [166358] Skipping because PR was updated recently 2025-12-04T08:42:48.7513526Z ##[endgroup] 2025-12-04T08:42:48.7513906Z ##[group]Processing PR #166362 2025-12-04T08:42:48.7514272Z [166362] URL: https://github.com/pytorch/pytorch/pull/166362 2025-12-04T08:42:48.7514675Z [166362] Checking whether to label PR as stale. 2025-12-04T08:42:48.7515047Z [166362] Skipping because PR was updated recently 2025-12-04T08:42:48.7515526Z ##[endgroup] 2025-12-04T08:42:48.7515905Z ##[group]Processing PR #166366 2025-12-04T08:42:48.7516268Z [166366] URL: https://github.com/pytorch/pytorch/pull/166366 2025-12-04T08:42:48.7516674Z [166366] Checking whether to label PR as stale. 2025-12-04T08:42:48.7517046Z [166366] Skipping because PR was updated recently 2025-12-04T08:42:48.7517533Z ##[endgroup] 2025-12-04T08:42:48.7517925Z ##[group]Processing PR #166371 2025-12-04T08:42:48.7518276Z [166371] URL: https://github.com/pytorch/pytorch/pull/166371 2025-12-04T08:42:48.7518694Z [166371] Checking whether to label PR as stale. 2025-12-04T08:42:48.7519057Z [166371] Skipping because PR was updated recently 2025-12-04T08:42:48.7519541Z ##[endgroup] 2025-12-04T08:42:48.7519921Z ##[group]Processing PR #166376 2025-12-04T08:42:48.7520274Z [166376] URL: https://github.com/pytorch/pytorch/pull/166376 2025-12-04T08:42:48.7520691Z [166376] Checking whether to label PR as stale. 2025-12-04T08:42:48.7521064Z [166376] Skipping because PR was updated recently 2025-12-04T08:42:48.7521538Z ##[endgroup] 2025-12-04T08:42:48.7521922Z ##[group]Processing PR #166377 2025-12-04T08:42:48.7522291Z [166377] URL: https://github.com/pytorch/pytorch/pull/166377 2025-12-04T08:42:48.7522697Z [166377] Checking whether to label PR as stale. 2025-12-04T08:42:48.7523072Z [166377] Skipping because PR was updated recently 2025-12-04T08:42:48.7523556Z ##[endgroup] 2025-12-04T08:42:48.7523942Z ##[group]Processing PR #166386 2025-12-04T08:42:48.7524292Z [166386] URL: https://github.com/pytorch/pytorch/pull/166386 2025-12-04T08:42:48.7524710Z [166386] Checking whether to label PR as stale. 2025-12-04T08:42:48.7525069Z [166386] Skipping because PR was updated recently 2025-12-04T08:42:48.7525551Z ##[endgroup] 2025-12-04T08:42:48.7525932Z ##[group]Processing PR #166388 2025-12-04T08:42:48.7526283Z [166388] URL: https://github.com/pytorch/pytorch/pull/166388 2025-12-04T08:42:48.7526698Z [166388] Checking whether to label PR as stale. 2025-12-04T08:42:48.7527069Z [166388] Skipping because PR was updated recently 2025-12-04T08:42:48.7527626Z ##[endgroup] 2025-12-04T08:42:48.7528017Z ##[group]Processing PR #166391 2025-12-04T08:42:48.7528385Z [166391] URL: https://github.com/pytorch/pytorch/pull/166391 2025-12-04T08:42:48.7528789Z [166391] Checking whether to label PR as stale. 2025-12-04T08:42:48.7529165Z [166391] Skipping because PR was updated recently 2025-12-04T08:42:48.7529649Z ##[endgroup] 2025-12-04T08:42:48.7530023Z ##[group]Processing PR #166392 2025-12-04T08:42:48.7530385Z [166392] URL: https://github.com/pytorch/pytorch/pull/166392 2025-12-04T08:42:48.7530800Z [166392] Checking whether to label PR as stale. 2025-12-04T08:42:48.7531160Z [166392] Skipping because PR was updated recently 2025-12-04T08:42:48.7531871Z ##[endgroup] 2025-12-04T08:42:50.1792679Z ##[group]Processing PR #166396 2025-12-04T08:42:50.1793809Z [166396] URL: https://github.com/pytorch/pytorch/pull/166396 2025-12-04T08:42:50.1794773Z [166396] Checking whether to label PR as stale. 2025-12-04T08:42:50.1796204Z [166396] Skipping because PR was updated recently 2025-12-04T08:42:50.1797842Z ##[endgroup] 2025-12-04T08:42:50.1798706Z ##[group]Processing PR #166399 2025-12-04T08:42:50.1799575Z [166399] URL: https://github.com/pytorch/pytorch/pull/166399 2025-12-04T08:42:50.1800631Z [166399] Checking whether to label PR as stale. 2025-12-04T08:42:50.1802806Z [166399] Skipping because PR was updated recently 2025-12-04T08:42:50.1804415Z ##[endgroup] 2025-12-04T08:42:50.1805454Z ##[group]Processing PR #166400 2025-12-04T08:42:50.1807427Z [166400] URL: https://github.com/pytorch/pytorch/pull/166400 2025-12-04T08:42:50.1808462Z [166400] Checking whether to label PR as stale. 2025-12-04T08:42:50.1809357Z [166400] Skipping because PR was updated recently 2025-12-04T08:42:50.1810423Z ##[endgroup] 2025-12-04T08:42:50.1811525Z ##[group]Processing PR #166402 2025-12-04T08:42:50.1813790Z [166402] URL: https://github.com/pytorch/pytorch/pull/166402 2025-12-04T08:42:50.1814771Z [166402] Checking whether to label PR as stale. 2025-12-04T08:42:50.1876300Z [166402] Skipping because PR was updated recently 2025-12-04T08:42:50.1877270Z ##[endgroup] 2025-12-04T08:42:50.1877876Z ##[group]Processing PR #166417 2025-12-04T08:42:50.1878455Z [166417] URL: https://github.com/pytorch/pytorch/pull/166417 2025-12-04T08:42:50.1879112Z [166417] Checking whether to label PR as stale. 2025-12-04T08:42:50.1879698Z [166417] Skipping because PR was updated recently 2025-12-04T08:42:50.1880484Z ##[endgroup] 2025-12-04T08:42:50.1881683Z ##[group]Processing PR #166419 2025-12-04T08:42:50.1882233Z [166419] URL: https://github.com/pytorch/pytorch/pull/166419 2025-12-04T08:42:50.1882820Z [166419] Checking whether to label PR as stale. 2025-12-04T08:42:50.1883394Z [166419] Skipping because PR was updated recently 2025-12-04T08:42:50.1884150Z ##[endgroup] 2025-12-04T08:42:50.1884698Z ##[group]Processing PR #166423 2025-12-04T08:42:50.1885231Z [166423] URL: https://github.com/pytorch/pytorch/pull/166423 2025-12-04T08:42:50.1885868Z [166423] Checking whether to label PR as stale. 2025-12-04T08:42:50.1886456Z [166423] Skipping because PR was updated recently 2025-12-04T08:42:50.1887201Z ##[endgroup] 2025-12-04T08:42:50.1887814Z ##[group]Processing PR #166431 2025-12-04T08:42:50.1888381Z [166431] URL: https://github.com/pytorch/pytorch/pull/166431 2025-12-04T08:42:50.1889494Z [166431] Checking whether to label PR as stale. 2025-12-04T08:42:50.1890059Z [166431] Skipping because PR was updated recently 2025-12-04T08:42:50.1890758Z ##[endgroup] 2025-12-04T08:42:50.1891632Z ##[group]Processing PR #166441 2025-12-04T08:42:50.1892744Z [166441] URL: https://github.com/pytorch/pytorch/pull/166441 2025-12-04T08:42:50.1893552Z [166441] Checking whether to label PR as stale. 2025-12-04T08:42:50.1893973Z [166441] Skipping because PR was updated recently 2025-12-04T08:42:50.1894490Z ##[endgroup] 2025-12-04T08:42:50.1894888Z ##[group]Processing PR #166446 2025-12-04T08:42:50.1895247Z [166446] URL: https://github.com/pytorch/pytorch/pull/166446 2025-12-04T08:42:50.1895677Z [166446] Checking whether to label PR as stale. 2025-12-04T08:42:50.1896427Z [166446] Skipping because PR was updated recently 2025-12-04T08:42:50.1896901Z ##[endgroup] 2025-12-04T08:42:50.1897636Z ##[group]Processing PR #166451 2025-12-04T08:42:50.1898010Z [166451] URL: https://github.com/pytorch/pytorch/pull/166451 2025-12-04T08:42:50.1898422Z [166451] Checking whether to label PR as stale. 2025-12-04T08:42:50.1898815Z [166451] Skipping because PR was updated recently 2025-12-04T08:42:50.1899304Z ##[endgroup] 2025-12-04T08:42:50.1899684Z ##[group]Processing PR #166452 2025-12-04T08:42:50.1900036Z [166452] URL: https://github.com/pytorch/pytorch/pull/166452 2025-12-04T08:42:50.1900452Z [166452] Checking whether to label PR as stale. 2025-12-04T08:42:50.1900812Z [166452] Skipping because PR was updated recently 2025-12-04T08:42:50.1901297Z ##[endgroup] 2025-12-04T08:42:50.1901678Z ##[group]Processing PR #166473 2025-12-04T08:42:50.1902032Z [166473] URL: https://github.com/pytorch/pytorch/pull/166473 2025-12-04T08:42:50.1902451Z [166473] Checking whether to label PR as stale. 2025-12-04T08:42:50.1902832Z [166473] Skipping because PR was updated recently 2025-12-04T08:42:50.1903318Z ##[endgroup] 2025-12-04T08:42:50.1903706Z ##[group]Processing PR #166474 2025-12-04T08:42:50.1904069Z [166474] URL: https://github.com/pytorch/pytorch/pull/166474 2025-12-04T08:42:50.1904470Z [166474] Checking whether to label PR as stale. 2025-12-04T08:42:50.1904995Z [166474] Skipping because PR was updated recently 2025-12-04T08:42:50.1905470Z ##[endgroup] 2025-12-04T08:42:50.1905855Z ##[group]Processing PR #166479 2025-12-04T08:42:50.1906221Z [166479] URL: https://github.com/pytorch/pytorch/pull/166479 2025-12-04T08:42:50.1906625Z [166479] Checking whether to label PR as stale. 2025-12-04T08:42:50.1906999Z [166479] Skipping because PR was updated recently 2025-12-04T08:42:50.1907483Z ##[endgroup] 2025-12-04T08:42:50.1907869Z ##[group]Processing PR #166482 2025-12-04T08:42:50.1908221Z [166482] URL: https://github.com/pytorch/pytorch/pull/166482 2025-12-04T08:42:50.1908644Z [166482] Checking whether to label PR as stale. 2025-12-04T08:42:50.1909007Z [166482] Skipping because PR was updated recently 2025-12-04T08:42:50.1909492Z ##[endgroup] 2025-12-04T08:42:50.1909879Z ##[group]Processing PR #166483 2025-12-04T08:42:50.1910230Z [166483] URL: https://github.com/pytorch/pytorch/pull/166483 2025-12-04T08:42:50.1910646Z [166483] Checking whether to label PR as stale. 2025-12-04T08:42:50.1911021Z [166483] Skipping because PR was updated recently 2025-12-04T08:42:50.1911496Z ##[endgroup] 2025-12-04T08:42:50.1911880Z ##[group]Processing PR #166494 2025-12-04T08:42:50.1912244Z [166494] URL: https://github.com/pytorch/pytorch/pull/166494 2025-12-04T08:42:50.1912649Z [166494] Checking whether to label PR as stale. 2025-12-04T08:42:50.1913022Z [166494] Skipping because PR was updated recently 2025-12-04T08:42:50.1913508Z ##[endgroup] 2025-12-04T08:42:50.1913893Z ##[group]Processing PR #166498 2025-12-04T08:42:50.1914244Z [166498] URL: https://github.com/pytorch/pytorch/pull/166498 2025-12-04T08:42:50.1914668Z [166498] Checking whether to label PR as stale. 2025-12-04T08:42:50.1915028Z [166498] Skipping because PR was updated recently 2025-12-04T08:42:50.1915510Z ##[endgroup] 2025-12-04T08:42:50.1915890Z ##[group]Processing PR #166499 2025-12-04T08:42:50.1916238Z [166499] URL: https://github.com/pytorch/pytorch/pull/166499 2025-12-04T08:42:50.1916658Z [166499] Checking whether to label PR as stale. 2025-12-04T08:42:50.1917038Z [166499] Skipping because PR was updated recently 2025-12-04T08:42:50.1917508Z ##[endgroup] 2025-12-04T08:42:50.1917890Z ##[group]Processing PR #166504 2025-12-04T08:42:50.1918254Z [166504] URL: https://github.com/pytorch/pytorch/pull/166504 2025-12-04T08:42:50.1918661Z [166504] Checking whether to label PR as stale. 2025-12-04T08:42:50.1919033Z [166504] Skipping because PR was updated recently 2025-12-04T08:42:50.1919515Z ##[endgroup] 2025-12-04T08:42:50.1919882Z ##[group]Processing PR #166510 2025-12-04T08:42:50.1920243Z [166510] URL: https://github.com/pytorch/pytorch/pull/166510 2025-12-04T08:42:50.1920768Z [166510] Checking whether to label PR as stale. 2025-12-04T08:42:50.1921128Z [166510] Skipping because PR was updated recently 2025-12-04T08:42:50.1921614Z ##[endgroup] 2025-12-04T08:42:50.1921997Z ##[group]Processing PR #166517 2025-12-04T08:42:50.1922349Z [166517] URL: https://github.com/pytorch/pytorch/pull/166517 2025-12-04T08:42:50.1922778Z [166517] Checking whether to label PR as stale. 2025-12-04T08:42:50.1923142Z [166517] Skipping because PR was updated recently 2025-12-04T08:42:50.1923624Z ##[endgroup] 2025-12-04T08:42:50.1924014Z ##[group]Processing PR #166520 2025-12-04T08:42:50.1924381Z [166520] URL: https://github.com/pytorch/pytorch/pull/166520 2025-12-04T08:42:50.1924790Z [166520] Checking whether to label PR as stale. 2025-12-04T08:42:50.1925164Z [166520] Skipping because PR was updated recently 2025-12-04T08:42:50.1925653Z ##[endgroup] 2025-12-04T08:42:50.1926026Z ##[group]Processing PR #166524 2025-12-04T08:42:50.1926389Z [166524] URL: https://github.com/pytorch/pytorch/pull/166524 2025-12-04T08:42:50.1926802Z [166524] Checking whether to label PR as stale. 2025-12-04T08:42:50.1927175Z [166524] Skipping because PR was updated recently 2025-12-04T08:42:50.1927660Z ##[endgroup] 2025-12-04T08:42:50.1928044Z ##[group]Processing PR #166545 2025-12-04T08:42:50.1928399Z [166545] URL: https://github.com/pytorch/pytorch/pull/166545 2025-12-04T08:42:50.1928902Z [166545] Checking whether to label PR as stale. 2025-12-04T08:42:50.1929270Z [166545] Skipping because PR was updated recently 2025-12-04T08:42:50.1929764Z ##[endgroup] 2025-12-04T08:42:50.1930156Z ##[group]Processing PR #166552 2025-12-04T08:42:50.1930525Z [166552] URL: https://github.com/pytorch/pytorch/pull/166552 2025-12-04T08:42:50.1930931Z [166552] Checking whether to label PR as stale. 2025-12-04T08:42:50.1931443Z [166552] Skipping because PR was updated recently 2025-12-04T08:42:50.1931936Z ##[endgroup] 2025-12-04T08:42:50.1932326Z ##[group]Processing PR #166584 2025-12-04T08:42:50.1932703Z [166584] URL: https://github.com/pytorch/pytorch/pull/166584 2025-12-04T08:42:50.1933112Z [166584] Checking whether to label PR as stale. 2025-12-04T08:42:50.1933487Z [166584] Skipping because PR was updated recently 2025-12-04T08:42:50.1934391Z ##[endgroup] 2025-12-04T08:42:50.1934790Z ##[group]Processing PR #166612 2025-12-04T08:42:50.1935144Z [166612] URL: https://github.com/pytorch/pytorch/pull/166612 2025-12-04T08:42:50.1935578Z [166612] Checking whether to label PR as stale. 2025-12-04T08:42:50.1935941Z [166612] Skipping because PR was updated recently 2025-12-04T08:42:50.1936425Z ##[endgroup] 2025-12-04T08:42:50.1936837Z ##[group]Processing PR #166619 2025-12-04T08:42:50.1937204Z [166619] URL: https://github.com/pytorch/pytorch/pull/166619 2025-12-04T08:42:50.1937612Z [166619] Checking whether to label PR as stale. 2025-12-04T08:42:50.1937987Z [166619] Skipping because PR was updated recently 2025-12-04T08:42:50.1938478Z ##[endgroup] 2025-12-04T08:42:50.1938857Z ##[group]Processing PR #166621 2025-12-04T08:42:50.1939241Z [166621] URL: https://github.com/pytorch/pytorch/pull/166621 2025-12-04T08:42:50.1939666Z [166621] Checking whether to label PR as stale. 2025-12-04T08:42:50.1940032Z [166621] Skipping because PR was updated recently 2025-12-04T08:42:50.1940524Z ##[endgroup] 2025-12-04T08:42:50.1940918Z ##[group]Processing PR #166625 2025-12-04T08:42:50.1941279Z [166625] URL: https://github.com/pytorch/pytorch/pull/166625 2025-12-04T08:42:50.1941704Z [166625] Checking whether to label PR as stale. 2025-12-04T08:42:50.1942064Z [166625] Skipping because PR was updated recently 2025-12-04T08:42:50.1942549Z ##[endgroup] 2025-12-04T08:42:50.1942934Z ##[group]Processing PR #166632 2025-12-04T08:42:50.1943297Z [166632] URL: https://github.com/pytorch/pytorch/pull/166632 2025-12-04T08:42:50.1943699Z [166632] Checking whether to label PR as stale. 2025-12-04T08:42:50.1944072Z [166632] Skipping because PR was updated recently 2025-12-04T08:42:50.1944555Z ##[endgroup] 2025-12-04T08:42:50.1944925Z ##[group]Processing PR #166635 2025-12-04T08:42:50.1945518Z [166635] URL: https://github.com/pytorch/pytorch/pull/166635 2025-12-04T08:42:50.1945921Z [166635] Checking whether to label PR as stale. 2025-12-04T08:42:50.1946298Z [166635] Skipping because PR was updated recently 2025-12-04T08:42:50.1946780Z ##[endgroup] 2025-12-04T08:42:50.1947165Z ##[group]Processing PR #166636 2025-12-04T08:42:50.1947523Z [166636] URL: https://github.com/pytorch/pytorch/pull/166636 2025-12-04T08:42:50.1947945Z [166636] Checking whether to label PR as stale. 2025-12-04T08:42:50.1948305Z [166636] Skipping because PR was updated recently 2025-12-04T08:42:50.1948793Z ##[endgroup] 2025-12-04T08:42:50.1949174Z ##[group]Processing PR #166640 2025-12-04T08:42:50.1949540Z [166640] URL: https://github.com/pytorch/pytorch/pull/166640 2025-12-04T08:42:50.1949946Z [166640] Checking whether to label PR as stale. 2025-12-04T08:42:50.1950323Z [166640] Skipping because PR was updated recently 2025-12-04T08:42:50.1950793Z ##[endgroup] 2025-12-04T08:42:50.1951177Z ##[group]Processing PR #166648 2025-12-04T08:42:50.1951541Z [166648] URL: https://github.com/pytorch/pytorch/pull/166648 2025-12-04T08:42:50.1951946Z [166648] Checking whether to label PR as stale. 2025-12-04T08:42:50.1952319Z [166648] Skipping because PR was updated recently 2025-12-04T08:42:50.1952803Z ##[endgroup] 2025-12-04T08:42:50.1953183Z ##[group]Processing PR #166662 2025-12-04T08:42:50.1953627Z [166662] URL: https://github.com/pytorch/pytorch/pull/166662 2025-12-04T08:42:50.1954051Z [166662] Checking whether to label PR as stale. 2025-12-04T08:42:50.1954420Z [166662] Skipping because PR was updated recently 2025-12-04T08:42:50.1954913Z ##[endgroup] 2025-12-04T08:42:50.1955306Z ##[group]Processing PR #166672 2025-12-04T08:42:50.1955661Z [166672] URL: https://github.com/pytorch/pytorch/pull/166672 2025-12-04T08:42:50.1956078Z [166672] Checking whether to label PR as stale. 2025-12-04T08:42:50.1956449Z [166672] Skipping because PR was updated recently 2025-12-04T08:42:50.1956919Z ##[endgroup] 2025-12-04T08:42:50.1957306Z ##[group]Processing PR #166688 2025-12-04T08:42:50.1957670Z [166688] URL: https://github.com/pytorch/pytorch/pull/166688 2025-12-04T08:42:50.1958074Z [166688] Checking whether to label PR as stale. 2025-12-04T08:42:50.1958450Z [166688] Skipping because PR was updated recently 2025-12-04T08:42:50.1958928Z ##[endgroup] 2025-12-04T08:42:50.1959296Z ##[group]Processing PR #166689 2025-12-04T08:42:50.1959664Z [166689] URL: https://github.com/pytorch/pytorch/pull/166689 2025-12-04T08:42:50.1960077Z [166689] Checking whether to label PR as stale. 2025-12-04T08:42:50.1960437Z [166689] Skipping because PR was updated recently 2025-12-04T08:42:50.1960922Z ##[endgroup] 2025-12-04T08:42:50.1961305Z ##[group]Processing PR #166698 2025-12-04T08:42:50.1961652Z [166698] URL: https://github.com/pytorch/pytorch/pull/166698 2025-12-04T08:42:50.1962066Z [166698] Checking whether to label PR as stale. 2025-12-04T08:42:50.1962422Z [166698] Skipping because PR was updated recently 2025-12-04T08:42:50.1962910Z ##[endgroup] 2025-12-04T08:42:50.1963297Z ##[group]Processing PR #166700 2025-12-04T08:42:50.1963663Z [166700] URL: https://github.com/pytorch/pytorch/pull/166700 2025-12-04T08:42:50.1964068Z [166700] Checking whether to label PR as stale. 2025-12-04T08:42:50.1964440Z [166700] Skipping because PR was updated recently 2025-12-04T08:42:50.1964926Z ##[endgroup] 2025-12-04T08:42:50.1965302Z ##[group]Processing PR #166701 2025-12-04T08:42:50.1965668Z [166701] URL: https://github.com/pytorch/pytorch/pull/166701 2025-12-04T08:42:50.1966089Z [166701] Checking whether to label PR as stale. 2025-12-04T08:42:50.1966450Z [166701] Skipping because PR was updated recently 2025-12-04T08:42:50.1966945Z ##[endgroup] 2025-12-04T08:42:50.1967331Z ##[group]Processing PR #166702 2025-12-04T08:42:50.1967684Z [166702] URL: https://github.com/pytorch/pytorch/pull/166702 2025-12-04T08:42:50.1968102Z [166702] Checking whether to label PR as stale. 2025-12-04T08:42:50.1968466Z [166702] Skipping because PR was updated recently 2025-12-04T08:42:50.1969114Z ##[endgroup] 2025-12-04T08:42:50.1969501Z ##[group]Processing PR #166712 2025-12-04T08:42:50.1969868Z [166712] URL: https://github.com/pytorch/pytorch/pull/166712 2025-12-04T08:42:50.1970281Z [166712] Checking whether to label PR as stale. 2025-12-04T08:42:50.1970658Z [166712] Skipping because PR was updated recently 2025-12-04T08:42:50.1971146Z ##[endgroup] 2025-12-04T08:42:50.1971667Z ##[group]Processing PR #166720 2025-12-04T08:42:50.1972042Z [166720] URL: https://github.com/pytorch/pytorch/pull/166720 2025-12-04T08:42:50.1972452Z [166720] Checking whether to label PR as stale. 2025-12-04T08:42:50.1972834Z [166720] Skipping because PR was updated recently 2025-12-04T08:42:50.1973327Z ##[endgroup] 2025-12-04T08:42:50.1973720Z ##[group]Processing PR #166732 2025-12-04T08:42:50.1974075Z [166732] URL: https://github.com/pytorch/pytorch/pull/166732 2025-12-04T08:42:50.1974499Z [166732] Checking whether to label PR as stale. 2025-12-04T08:42:50.1974864Z [166732] Skipping because PR was updated recently 2025-12-04T08:42:50.1975363Z ##[endgroup] 2025-12-04T08:42:50.1975760Z ##[group]Processing PR #166737 2025-12-04T08:42:50.1976135Z [166737] URL: https://github.com/pytorch/pytorch/pull/166737 2025-12-04T08:42:50.1976544Z [166737] Checking whether to label PR as stale. 2025-12-04T08:42:50.1976918Z [166737] Skipping because PR was updated recently 2025-12-04T08:42:50.1977386Z ##[endgroup] 2025-12-04T08:42:50.1977862Z ##[group]Processing PR #166738 2025-12-04T08:42:50.1978226Z [166738] URL: https://github.com/pytorch/pytorch/pull/166738 2025-12-04T08:42:50.1978634Z [166738] Checking whether to label PR as stale. 2025-12-04T08:42:50.1979013Z [166738] Skipping because PR was updated recently 2025-12-04T08:42:50.1979501Z ##[endgroup] 2025-12-04T08:42:50.1979881Z ##[group]Processing PR #166741 2025-12-04T08:42:50.1980233Z [166741] URL: https://github.com/pytorch/pytorch/pull/166741 2025-12-04T08:42:50.1980648Z [166741] Checking whether to label PR as stale. 2025-12-04T08:42:50.1981009Z [166741] Skipping because PR was updated recently 2025-12-04T08:42:50.1981502Z ##[endgroup] 2025-12-04T08:42:50.1981893Z ##[group]Processing PR #166742 2025-12-04T08:42:50.1982245Z [166742] URL: https://github.com/pytorch/pytorch/pull/166742 2025-12-04T08:42:50.1982664Z [166742] Checking whether to label PR as stale. 2025-12-04T08:42:50.1983040Z [166742] Skipping because PR was updated recently 2025-12-04T08:42:50.1983515Z ##[endgroup] 2025-12-04T08:42:50.1983907Z ##[group]Processing PR #166747 2025-12-04T08:42:50.1984274Z [166747] URL: https://github.com/pytorch/pytorch/pull/166747 2025-12-04T08:42:50.1984679Z [166747] Checking whether to label PR as stale. 2025-12-04T08:42:50.1985053Z [166747] Skipping because PR was updated recently 2025-12-04T08:42:50.1985534Z ##[endgroup] 2025-12-04T08:42:50.1985913Z ##[group]Processing PR #166751 2025-12-04T08:42:50.1986264Z [166751] URL: https://github.com/pytorch/pytorch/pull/166751 2025-12-04T08:42:50.1986683Z [166751] Checking whether to label PR as stale. 2025-12-04T08:42:50.1987050Z [166751] Skipping because PR was updated recently 2025-12-04T08:42:50.1987531Z ##[endgroup] 2025-12-04T08:42:50.1987914Z ##[group]Processing PR #166762 2025-12-04T08:42:50.1988269Z [166762] URL: https://github.com/pytorch/pytorch/pull/166762 2025-12-04T08:42:50.1988689Z [166762] Checking whether to label PR as stale. 2025-12-04T08:42:50.1989054Z [166762] Skipping because PR was updated recently 2025-12-04T08:42:50.1989852Z ##[endgroup] 2025-12-04T08:42:50.1990322Z ##[group]Processing PR #166763 2025-12-04T08:42:50.1990703Z [166763] URL: https://github.com/pytorch/pytorch/pull/166763 2025-12-04T08:42:50.1991112Z [166763] Checking whether to label PR as stale. 2025-12-04T08:42:50.1991493Z [166763] Skipping because PR was updated recently 2025-12-04T08:42:50.1991985Z ##[endgroup] 2025-12-04T08:42:50.1992354Z ##[group]Processing PR #166769 2025-12-04T08:42:50.1992718Z [166769] URL: https://github.com/pytorch/pytorch/pull/166769 2025-12-04T08:42:50.1993136Z [166769] Checking whether to label PR as stale. 2025-12-04T08:42:50.1993607Z [166769] Skipping because PR was updated recently 2025-12-04T08:42:50.1994098Z ##[endgroup] 2025-12-04T08:42:50.1994484Z ##[group]Processing PR #166772 2025-12-04T08:42:50.1994839Z [166772] URL: https://github.com/pytorch/pytorch/pull/166772 2025-12-04T08:42:50.1995257Z [166772] Checking whether to label PR as stale. 2025-12-04T08:42:50.1995618Z [166772] Skipping because PR was updated recently 2025-12-04T08:42:50.1996099Z ##[endgroup] 2025-12-04T08:42:50.1996484Z ##[group]Processing PR #166773 2025-12-04T08:42:50.1996848Z [166773] URL: https://github.com/pytorch/pytorch/pull/166773 2025-12-04T08:42:50.1997252Z [166773] Checking whether to label PR as stale. 2025-12-04T08:42:50.1997625Z [166773] Skipping because PR was updated recently 2025-12-04T08:42:50.1998109Z ##[endgroup] 2025-12-04T08:42:50.1998476Z ##[group]Processing PR #166774 2025-12-04T08:42:50.1998844Z [166774] URL: https://github.com/pytorch/pytorch/pull/166774 2025-12-04T08:42:50.1999253Z [166774] Checking whether to label PR as stale. 2025-12-04T08:42:50.1999637Z [166774] Skipping because PR was updated recently 2025-12-04T08:42:50.2000117Z ##[endgroup] 2025-12-04T08:42:50.2000498Z ##[group]Processing PR #166778 2025-12-04T08:42:50.2000851Z [166778] URL: https://github.com/pytorch/pytorch/pull/166778 2025-12-04T08:42:50.2001276Z [166778] Checking whether to label PR as stale. 2025-12-04T08:42:50.2001704Z [166778] Skipping because PR was updated recently 2025-12-04T08:42:50.2002193Z ##[endgroup] 2025-12-04T08:42:50.2002580Z ##[group]Processing PR #166782 2025-12-04T08:42:50.2002945Z [166782] URL: https://github.com/pytorch/pytorch/pull/166782 2025-12-04T08:42:50.2003351Z [166782] Checking whether to label PR as stale. 2025-12-04T08:42:50.2003725Z [166782] Skipping because PR was updated recently 2025-12-04T08:42:50.2004195Z ##[endgroup] 2025-12-04T08:42:50.2004580Z ##[group]Processing PR #166788 2025-12-04T08:42:50.2004965Z [166788] URL: https://github.com/pytorch/pytorch/pull/166788 2025-12-04T08:42:50.2005372Z [166788] Checking whether to label PR as stale. 2025-12-04T08:42:50.2005757Z [166788] Skipping because PR was updated recently 2025-12-04T08:42:50.2006248Z ##[endgroup] 2025-12-04T08:42:50.2006633Z ##[group]Processing PR #166803 2025-12-04T08:42:50.2006988Z [166803] URL: https://github.com/pytorch/pytorch/pull/166803 2025-12-04T08:42:50.2007414Z [166803] Checking whether to label PR as stale. 2025-12-04T08:42:50.2007784Z [166803] Skipping because PR was updated recently 2025-12-04T08:42:50.2008269Z ##[endgroup] 2025-12-04T08:42:50.2008658Z ##[group]Processing PR #166809 2025-12-04T08:42:50.2009012Z [166809] URL: https://github.com/pytorch/pytorch/pull/166809 2025-12-04T08:42:50.2009435Z [166809] Checking whether to label PR as stale. 2025-12-04T08:42:50.2009807Z [166809] Skipping because PR was updated recently 2025-12-04T08:42:50.2010285Z ##[endgroup] 2025-12-04T08:42:50.2010672Z ##[group]Processing PR #166813 2025-12-04T08:42:50.2011034Z [166813] URL: https://github.com/pytorch/pytorch/pull/166813 2025-12-04T08:42:50.2011574Z [166813] Checking whether to label PR as stale. 2025-12-04T08:42:50.2011951Z [166813] Skipping because PR was updated recently 2025-12-04T08:42:50.2012442Z ##[endgroup] 2025-12-04T08:42:50.2012825Z ##[group]Processing PR #166817 2025-12-04T08:42:50.2013175Z [166817] URL: https://github.com/pytorch/pytorch/pull/166817 2025-12-04T08:42:50.2013595Z [166817] Checking whether to label PR as stale. 2025-12-04T08:42:50.2024542Z [166817] Skipping because PR was updated recently 2025-12-04T08:42:50.2025183Z ##[endgroup] 2025-12-04T08:42:50.2025591Z ##[group]Processing PR #166824 2025-12-04T08:42:50.2025979Z [166824] URL: https://github.com/pytorch/pytorch/pull/166824 2025-12-04T08:42:50.2026395Z [166824] Checking whether to label PR as stale. 2025-12-04T08:42:50.2026778Z [166824] Skipping because PR was updated recently 2025-12-04T08:42:50.2027276Z ##[endgroup] 2025-12-04T08:42:50.2027665Z ##[group]Processing PR #166825 2025-12-04T08:42:50.2028022Z [166825] URL: https://github.com/pytorch/pytorch/pull/166825 2025-12-04T08:42:50.2028629Z [166825] Checking whether to label PR as stale. 2025-12-04T08:42:50.2028995Z [166825] Skipping because PR was updated recently 2025-12-04T08:42:50.2029490Z ##[endgroup] 2025-12-04T08:42:50.2029884Z ##[group]Processing PR #166828 2025-12-04T08:42:50.2030239Z [166828] URL: https://github.com/pytorch/pytorch/pull/166828 2025-12-04T08:42:50.2030670Z [166828] Checking whether to label PR as stale. 2025-12-04T08:42:50.2031032Z [166828] Skipping because PR was updated recently 2025-12-04T08:42:50.2031523Z ##[endgroup] 2025-12-04T08:42:50.2031913Z ##[group]Processing PR #166829 2025-12-04T08:42:50.2032283Z [166829] URL: https://github.com/pytorch/pytorch/pull/166829 2025-12-04T08:42:50.2032688Z [166829] Checking whether to label PR as stale. 2025-12-04T08:42:50.2033066Z [166829] Skipping because PR was updated recently 2025-12-04T08:42:50.2033552Z ##[endgroup] 2025-12-04T08:42:50.2034319Z ##[group]Processing PR #166837 2025-12-04T08:42:50.2034692Z [166837] URL: https://github.com/pytorch/pytorch/pull/166837 2025-12-04T08:42:50.2035124Z [166837] Checking whether to label PR as stale. 2025-12-04T08:42:50.2035488Z [166837] Skipping because PR was updated recently 2025-12-04T08:42:50.2035984Z ##[endgroup] 2025-12-04T08:42:50.2036371Z ##[group]Processing PR #166843 2025-12-04T08:42:50.2036728Z [166843] URL: https://github.com/pytorch/pytorch/pull/166843 2025-12-04T08:42:50.2037338Z [166843] Checking whether to label PR as stale. 2025-12-04T08:42:50.2037708Z [166843] Skipping because PR was updated recently 2025-12-04T08:42:50.2038201Z ##[endgroup] 2025-12-04T08:42:50.2038593Z ##[group]Processing PR #166846 2025-12-04T08:42:50.2038966Z [166846] URL: https://github.com/pytorch/pytorch/pull/166846 2025-12-04T08:42:50.2039377Z [166846] Checking whether to label PR as stale. 2025-12-04T08:42:50.2039757Z [166846] Skipping because PR was updated recently 2025-12-04T08:42:50.2040253Z ##[endgroup] 2025-12-04T08:42:50.2040630Z ##[group]Processing PR #166847 2025-12-04T08:42:50.2040998Z [166847] URL: https://github.com/pytorch/pytorch/pull/166847 2025-12-04T08:42:50.2041414Z [166847] Checking whether to label PR as stale. 2025-12-04T08:42:50.2041790Z [166847] Skipping because PR was updated recently 2025-12-04T08:42:50.2042277Z ##[endgroup] 2025-12-04T08:42:50.2042664Z ##[group]Processing PR #166854 2025-12-04T08:42:50.2043017Z [166854] URL: https://github.com/pytorch/pytorch/pull/166854 2025-12-04T08:42:50.2043444Z [166854] Checking whether to label PR as stale. 2025-12-04T08:42:50.2043808Z [166854] Skipping because PR was updated recently 2025-12-04T08:42:50.2044297Z ##[endgroup] 2025-12-04T08:42:50.2044689Z ##[group]Processing PR #166861 2025-12-04T08:42:50.2045059Z [166861] URL: https://github.com/pytorch/pytorch/pull/166861 2025-12-04T08:42:50.2045465Z [166861] Checking whether to label PR as stale. 2025-12-04T08:42:50.2045840Z [166861] Skipping because PR was updated recently 2025-12-04T08:42:50.2046317Z ##[endgroup] 2025-12-04T08:42:50.2046703Z ##[group]Processing PR #166862 2025-12-04T08:42:50.2047074Z [166862] URL: https://github.com/pytorch/pytorch/pull/166862 2025-12-04T08:42:50.2047490Z [166862] Checking whether to label PR as stale. 2025-12-04T08:42:50.2047872Z [166862] Skipping because PR was updated recently 2025-12-04T08:42:50.2048360Z ##[endgroup] 2025-12-04T08:42:50.2048754Z ##[group]Processing PR #166872 2025-12-04T08:42:50.2049108Z [166872] URL: https://github.com/pytorch/pytorch/pull/166872 2025-12-04T08:42:50.2049536Z [166872] Checking whether to label PR as stale. 2025-12-04T08:42:50.2049903Z [166872] Skipping because PR was updated recently 2025-12-04T08:42:50.2050393Z ##[endgroup] 2025-12-04T08:42:50.2050779Z ##[group]Processing PR #166876 2025-12-04T08:42:50.2051130Z [166876] URL: https://github.com/pytorch/pytorch/pull/166876 2025-12-04T08:42:50.2051682Z [166876] Checking whether to label PR as stale. 2025-12-04T08:42:50.2052060Z [166876] Skipping because PR was updated recently 2025-12-04T08:42:50.2052540Z ##[endgroup] 2025-12-04T08:42:50.2052930Z ##[group]Processing PR #166879 2025-12-04T08:42:50.2053441Z [166879] URL: https://github.com/pytorch/pytorch/pull/166879 2025-12-04T08:42:50.2053852Z [166879] Checking whether to label PR as stale. 2025-12-04T08:42:50.2054230Z [166879] Skipping because PR was updated recently 2025-12-04T08:42:50.2054720Z ##[endgroup] 2025-12-04T08:42:50.2055110Z ##[group]Processing PR #166889 2025-12-04T08:42:50.2055470Z [166889] URL: https://github.com/pytorch/pytorch/pull/166889 2025-12-04T08:42:50.2055897Z [166889] Checking whether to label PR as stale. 2025-12-04T08:42:50.2056259Z [166889] Skipping because PR was updated recently 2025-12-04T08:42:50.2056748Z ##[endgroup] 2025-12-04T08:42:50.2057137Z ##[group]Processing PR #166892 2025-12-04T08:42:50.2057494Z [166892] URL: https://github.com/pytorch/pytorch/pull/166892 2025-12-04T08:42:50.2057915Z [166892] Checking whether to label PR as stale. 2025-12-04T08:42:50.2058294Z [166892] Skipping because PR was updated recently 2025-12-04T08:42:50.2058770Z ##[endgroup] 2025-12-04T08:42:50.2059155Z ##[group]Processing PR #166896 2025-12-04T08:42:50.2059524Z [166896] URL: https://github.com/pytorch/pytorch/pull/166896 2025-12-04T08:42:50.2059932Z [166896] Checking whether to label PR as stale. 2025-12-04T08:42:50.2060314Z [166896] Skipping because PR was updated recently 2025-12-04T08:42:50.2060798Z ##[endgroup] 2025-12-04T08:42:50.2061183Z ##[group]Processing PR #166898 2025-12-04T08:42:50.2061604Z [166898] URL: https://github.com/pytorch/pytorch/pull/166898 2025-12-04T08:42:50.2062030Z [166898] Checking whether to label PR as stale. 2025-12-04T08:42:50.2062393Z [166898] Skipping because PR was updated recently 2025-12-04T08:42:50.2062884Z ##[endgroup] 2025-12-04T08:42:50.2063273Z ##[group]Processing PR #166899 2025-12-04T08:42:50.2063642Z [166899] URL: https://github.com/pytorch/pytorch/pull/166899 2025-12-04T08:42:50.2064051Z [166899] Checking whether to label PR as stale. 2025-12-04T08:42:50.2064421Z [166899] Skipping because PR was updated recently 2025-12-04T08:42:50.2064906Z ##[endgroup] 2025-12-04T08:42:50.2065275Z ##[group]Processing PR #166901 2025-12-04T08:42:50.2065642Z [166901] URL: https://github.com/pytorch/pytorch/pull/166901 2025-12-04T08:42:50.2066045Z [166901] Checking whether to label PR as stale. 2025-12-04T08:42:50.2066418Z [166901] Skipping because PR was updated recently 2025-12-04T08:42:50.2066905Z ##[endgroup] 2025-12-04T08:42:50.2067283Z ##[group]Processing PR #166907 2025-12-04T08:42:50.2067637Z [166907] URL: https://github.com/pytorch/pytorch/pull/166907 2025-12-04T08:42:50.2068052Z [166907] Checking whether to label PR as stale. 2025-12-04T08:42:50.2068412Z [166907] Skipping because PR was updated recently 2025-12-04T08:42:50.2068891Z ##[endgroup] 2025-12-04T08:42:50.2069272Z ##[group]Processing PR #166927 2025-12-04T08:42:50.2069636Z [166927] URL: https://github.com/pytorch/pytorch/pull/166927 2025-12-04T08:42:50.2070048Z [166927] Checking whether to label PR as stale. 2025-12-04T08:42:50.2070418Z [166927] Skipping because PR was updated recently 2025-12-04T08:42:50.2070890Z ##[endgroup] 2025-12-04T08:42:50.2071277Z ##[group]Processing PR #166932 2025-12-04T08:42:50.2071642Z [166932] URL: https://github.com/pytorch/pytorch/pull/166932 2025-12-04T08:42:50.2072049Z [166932] Checking whether to label PR as stale. 2025-12-04T08:42:50.2072425Z [166932] Skipping because PR was updated recently 2025-12-04T08:42:50.2072909Z ##[endgroup] 2025-12-04T08:42:50.2073292Z ##[group]Processing PR #166936 2025-12-04T08:42:50.2073647Z [166936] URL: https://github.com/pytorch/pytorch/pull/166936 2025-12-04T08:42:50.2074065Z [166936] Checking whether to label PR as stale. 2025-12-04T08:42:50.2074426Z [166936] Skipping because PR was updated recently 2025-12-04T08:42:50.2074909Z ##[endgroup] 2025-12-04T08:42:50.2075289Z ##[group]Processing PR #166940 2025-12-04T08:42:50.2075641Z [166940] URL: https://github.com/pytorch/pytorch/pull/166940 2025-12-04T08:42:50.2076059Z [166940] Checking whether to label PR as stale. 2025-12-04T08:42:50.2076433Z [166940] Skipping because PR was updated recently 2025-12-04T08:42:50.2076908Z ##[endgroup] 2025-12-04T08:42:50.2077411Z ##[group]Processing PR #166944 2025-12-04T08:42:50.2077783Z [166944] URL: https://github.com/pytorch/pytorch/pull/166944 2025-12-04T08:42:50.2078194Z [166944] Checking whether to label PR as stale. 2025-12-04T08:42:50.2078574Z [166944] Skipping because PR was updated recently 2025-12-04T08:42:50.2079058Z ##[endgroup] 2025-12-04T08:42:50.2079444Z ##[group]Processing PR #166946 2025-12-04T08:42:50.2079800Z [166946] URL: https://github.com/pytorch/pytorch/pull/166946 2025-12-04T08:42:50.2080220Z [166946] Checking whether to label PR as stale. 2025-12-04T08:42:50.2080579Z [166946] Skipping because PR was updated recently 2025-12-04T08:42:50.2081058Z ##[endgroup] 2025-12-04T08:42:50.2081440Z ##[group]Processing PR #166947 2025-12-04T08:42:50.2081790Z [166947] URL: https://github.com/pytorch/pytorch/pull/166947 2025-12-04T08:42:50.2082204Z [166947] Checking whether to label PR as stale. 2025-12-04T08:42:50.2082578Z [166947] Skipping because PR was updated recently 2025-12-04T08:42:50.2083053Z ##[endgroup] 2025-12-04T08:42:50.2083433Z ##[group]Processing PR #166948 2025-12-04T08:42:50.2083797Z [166948] URL: https://github.com/pytorch/pytorch/pull/166948 2025-12-04T08:42:50.2084200Z [166948] Checking whether to label PR as stale. 2025-12-04T08:42:50.2084572Z [166948] Skipping because PR was updated recently 2025-12-04T08:42:50.2085053Z ##[endgroup] 2025-12-04T08:42:50.2085484Z ##[group]Processing PR #166950 2025-12-04T08:42:50.2085850Z [166950] URL: https://github.com/pytorch/pytorch/pull/166950 2025-12-04T08:42:50.2086271Z [166950] Checking whether to label PR as stale. 2025-12-04T08:42:50.2086629Z [166950] Skipping because PR was updated recently 2025-12-04T08:42:50.2087115Z ##[endgroup] 2025-12-04T08:42:50.2087497Z ##[group]Processing PR #166951 2025-12-04T08:42:50.2087847Z [166951] URL: https://github.com/pytorch/pytorch/pull/166951 2025-12-04T08:42:50.2088265Z [166951] Checking whether to label PR as stale. 2025-12-04T08:42:50.2088625Z [166951] Skipping because PR was updated recently 2025-12-04T08:42:50.2089113Z ##[endgroup] 2025-12-04T08:42:50.2089497Z ##[group]Processing PR #166959 2025-12-04T08:42:50.2089861Z [166959] URL: https://github.com/pytorch/pytorch/pull/166959 2025-12-04T08:42:50.2090268Z [166959] Checking whether to label PR as stale. 2025-12-04T08:42:50.2090647Z [166959] Skipping because PR was updated recently 2025-12-04T08:42:50.2091140Z ##[endgroup] 2025-12-04T08:42:50.2091668Z ##[group]Processing PR #166971 2025-12-04T08:42:50.2092034Z [166971] URL: https://github.com/pytorch/pytorch/pull/166971 2025-12-04T08:42:50.2092439Z [166971] Checking whether to label PR as stale. 2025-12-04T08:42:50.2092813Z [166971] Skipping because PR was updated recently 2025-12-04T08:42:50.2093296Z ##[endgroup] 2025-12-04T08:42:51.3091911Z ##[group]Processing PR #166972 2025-12-04T08:42:51.3092584Z [166972] URL: https://github.com/pytorch/pytorch/pull/166972 2025-12-04T08:42:51.3093284Z [166972] Checking whether to label PR as stale. 2025-12-04T08:42:51.3093904Z [166972] Skipping because PR was updated recently 2025-12-04T08:42:51.3094796Z ##[endgroup] 2025-12-04T08:42:51.3095443Z ##[group]Processing PR #166977 2025-12-04T08:42:51.3096035Z [166977] URL: https://github.com/pytorch/pytorch/pull/166977 2025-12-04T08:42:51.3096712Z [166977] Checking whether to label PR as stale. 2025-12-04T08:42:51.3097320Z [166977] Skipping because PR was updated recently 2025-12-04T08:42:51.3098130Z ##[endgroup] 2025-12-04T08:42:51.3098766Z ##[group]Processing PR #166979 2025-12-04T08:42:51.3099348Z [166979] URL: https://github.com/pytorch/pytorch/pull/166979 2025-12-04T08:42:51.3100046Z [166979] Checking whether to label PR as stale. 2025-12-04T08:42:51.3100659Z [166979] Skipping because PR was updated recently 2025-12-04T08:42:51.3101453Z ##[endgroup] 2025-12-04T08:42:51.3102084Z ##[group]Processing PR #166980 2025-12-04T08:42:51.3102678Z [166980] URL: https://github.com/pytorch/pytorch/pull/166980 2025-12-04T08:42:51.3103358Z [166980] Checking whether to label PR as stale. 2025-12-04T08:42:51.3103968Z [166980] Skipping because PR was updated recently 2025-12-04T08:42:51.3105260Z ##[endgroup] 2025-12-04T08:42:51.3105890Z ##[group]Processing PR #166981 2025-12-04T08:42:51.3106478Z [166981] URL: https://github.com/pytorch/pytorch/pull/166981 2025-12-04T08:42:51.3107176Z [166981] Checking whether to label PR as stale. 2025-12-04T08:42:51.3107781Z [166981] Skipping because PR was updated recently 2025-12-04T08:42:51.3108606Z ##[endgroup] 2025-12-04T08:42:51.3109232Z ##[group]Processing PR #166987 2025-12-04T08:42:51.3109816Z [166987] URL: https://github.com/pytorch/pytorch/pull/166987 2025-12-04T08:42:51.3110504Z [166987] Checking whether to label PR as stale. 2025-12-04T08:42:51.3114013Z [166987] Skipping because PR was updated recently 2025-12-04T08:42:51.3114884Z ##[endgroup] 2025-12-04T08:42:51.3115513Z ##[group]Processing PR #166995 2025-12-04T08:42:51.3129608Z [166995] URL: https://github.com/pytorch/pytorch/pull/166995 2025-12-04T08:42:51.3130646Z [166995] Checking whether to label PR as stale. 2025-12-04T08:42:51.3131386Z [166995] Skipping because PR was updated recently 2025-12-04T08:42:51.3132350Z ##[endgroup] 2025-12-04T08:42:51.3133023Z ##[group]Processing PR #166996 2025-12-04T08:42:51.3133562Z [166996] URL: https://github.com/pytorch/pytorch/pull/166996 2025-12-04T08:42:51.3134629Z [166996] Checking whether to label PR as stale. 2025-12-04T08:42:51.3135321Z [166996] Skipping because PR was updated recently 2025-12-04T08:42:51.3136632Z ##[endgroup] 2025-12-04T08:42:51.3137248Z ##[group]Processing PR #166997 2025-12-04T08:42:51.3137834Z [166997] URL: https://github.com/pytorch/pytorch/pull/166997 2025-12-04T08:42:51.3138359Z [166997] Checking whether to label PR as stale. 2025-12-04T08:42:51.3138742Z [166997] Skipping because PR was updated recently 2025-12-04T08:42:51.3139230Z ##[endgroup] 2025-12-04T08:42:51.3139628Z ##[group]Processing PR #167002 2025-12-04T08:42:51.3139994Z [167002] URL: https://github.com/pytorch/pytorch/pull/167002 2025-12-04T08:42:51.3140403Z [167002] Checking whether to label PR as stale. 2025-12-04T08:42:51.3140789Z [167002] Skipping because PR was updated recently 2025-12-04T08:42:51.3141274Z ##[endgroup] 2025-12-04T08:42:51.3141663Z ##[group]Processing PR #167003 2025-12-04T08:42:51.3142019Z [167003] URL: https://github.com/pytorch/pytorch/pull/167003 2025-12-04T08:42:51.3142439Z [167003] Checking whether to label PR as stale. 2025-12-04T08:42:51.3142806Z [167003] Skipping because PR was updated recently 2025-12-04T08:42:51.3143293Z ##[endgroup] 2025-12-04T08:42:51.3143678Z ##[group]Processing PR #167006 2025-12-04T08:42:51.3144032Z [167006] URL: https://github.com/pytorch/pytorch/pull/167006 2025-12-04T08:42:51.3144450Z [167006] Checking whether to label PR as stale. 2025-12-04T08:42:51.3144827Z [167006] Skipping because PR was updated recently 2025-12-04T08:42:51.3145299Z ##[endgroup] 2025-12-04T08:42:51.3145683Z ##[group]Processing PR #167010 2025-12-04T08:42:51.3146049Z [167010] URL: https://github.com/pytorch/pytorch/pull/167010 2025-12-04T08:42:51.3146456Z [167010] Checking whether to label PR as stale. 2025-12-04T08:42:51.3146835Z [167010] Skipping because PR was updated recently 2025-12-04T08:42:51.3147320Z ##[endgroup] 2025-12-04T08:42:51.3147707Z ##[group]Processing PR #167014 2025-12-04T08:42:51.3148076Z [167014] URL: https://github.com/pytorch/pytorch/pull/167014 2025-12-04T08:42:51.3148484Z [167014] Checking whether to label PR as stale. 2025-12-04T08:42:51.3149024Z [167014] Skipping because PR was updated recently 2025-12-04T08:42:51.3149530Z ##[endgroup] 2025-12-04T08:42:51.3149903Z ##[group]Processing PR #167015 2025-12-04T08:42:51.3150268Z [167015] URL: https://github.com/pytorch/pytorch/pull/167015 2025-12-04T08:42:51.3150686Z [167015] Checking whether to label PR as stale. 2025-12-04T08:42:51.3151044Z [167015] Skipping because PR was updated recently 2025-12-04T08:42:51.3151525Z ##[endgroup] 2025-12-04T08:42:51.3151908Z ##[group]Processing PR #167030 2025-12-04T08:42:51.3152261Z [167030] URL: https://github.com/pytorch/pytorch/pull/167030 2025-12-04T08:42:51.3152678Z [167030] Checking whether to label PR as stale. 2025-12-04T08:42:51.3153252Z [167030] Skipping because PR was updated recently 2025-12-04T08:42:51.3153741Z ##[endgroup] 2025-12-04T08:42:51.3154128Z ##[group]Processing PR #167049 2025-12-04T08:42:51.3154493Z [167049] URL: https://github.com/pytorch/pytorch/pull/167049 2025-12-04T08:42:51.3154902Z [167049] Checking whether to label PR as stale. 2025-12-04T08:42:51.3155281Z [167049] Skipping because PR was updated recently 2025-12-04T08:42:51.3155770Z ##[endgroup] 2025-12-04T08:42:51.3156142Z ##[group]Processing PR #167052 2025-12-04T08:42:51.3156508Z [167052] URL: https://github.com/pytorch/pytorch/pull/167052 2025-12-04T08:42:51.3156917Z [167052] Checking whether to label PR as stale. 2025-12-04T08:42:51.3157295Z [167052] Skipping because PR was updated recently 2025-12-04T08:42:51.3157780Z ##[endgroup] 2025-12-04T08:42:51.3158167Z ##[group]Processing PR #167054 2025-12-04T08:42:51.3158521Z [167054] URL: https://github.com/pytorch/pytorch/pull/167054 2025-12-04T08:42:51.3158947Z [167054] Checking whether to label PR as stale. 2025-12-04T08:42:51.3159309Z [167054] Skipping because PR was updated recently 2025-12-04T08:42:51.3159795Z ##[endgroup] 2025-12-04T08:42:51.3160177Z ##[group]Processing PR #167060 2025-12-04T08:42:51.3160541Z [167060] URL: https://github.com/pytorch/pytorch/pull/167060 2025-12-04T08:42:51.3160945Z [167060] Checking whether to label PR as stale. 2025-12-04T08:42:51.3161402Z [167060] Skipping because PR was updated recently 2025-12-04T08:42:51.3161878Z ##[endgroup] 2025-12-04T08:42:51.3162265Z ##[group]Processing PR #167075 2025-12-04T08:42:51.3162629Z [167075] URL: https://github.com/pytorch/pytorch/pull/167075 2025-12-04T08:42:51.3163036Z [167075] Checking whether to label PR as stale. 2025-12-04T08:42:51.3163412Z [167075] Skipping because PR was updated recently 2025-12-04T08:42:51.3163896Z ##[endgroup] 2025-12-04T08:42:51.3164281Z ##[group]Processing PR #167083 2025-12-04T08:42:51.3164634Z [167083] URL: https://github.com/pytorch/pytorch/pull/167083 2025-12-04T08:42:51.3165057Z [167083] Checking whether to label PR as stale. 2025-12-04T08:42:51.3165419Z [167083] Skipping because PR was updated recently 2025-12-04T08:42:51.3165902Z ##[endgroup] 2025-12-04T08:42:51.3166285Z ##[group]Processing PR #167087 2025-12-04T08:42:51.3166634Z [167087] URL: https://github.com/pytorch/pytorch/pull/167087 2025-12-04T08:42:51.3167057Z [167087] Checking whether to label PR as stale. 2025-12-04T08:42:51.3167434Z [167087] Skipping because PR was updated recently 2025-12-04T08:42:51.3167907Z ##[endgroup] 2025-12-04T08:42:51.3168288Z ##[group]Processing PR #167088 2025-12-04T08:42:51.3168650Z [167088] URL: https://github.com/pytorch/pytorch/pull/167088 2025-12-04T08:42:51.3169056Z [167088] Checking whether to label PR as stale. 2025-12-04T08:42:51.3169432Z [167088] Skipping because PR was updated recently 2025-12-04T08:42:51.3169922Z ##[endgroup] 2025-12-04T08:42:51.3170306Z ##[group]Processing PR #167101 2025-12-04T08:42:51.3170659Z [167101] URL: https://github.com/pytorch/pytorch/pull/167101 2025-12-04T08:42:51.3171083Z [167101] Checking whether to label PR as stale. 2025-12-04T08:42:51.3171596Z [167101] Skipping because PR was updated recently 2025-12-04T08:42:51.3172086Z ##[endgroup] 2025-12-04T08:42:51.3172470Z ##[group]Processing PR #167107 2025-12-04T08:42:51.3172824Z [167107] URL: https://github.com/pytorch/pytorch/pull/167107 2025-12-04T08:42:51.3173250Z [167107] Checking whether to label PR as stale. 2025-12-04T08:42:51.3173613Z [167107] Skipping because PR was updated recently 2025-12-04T08:42:51.3174096Z ##[endgroup] 2025-12-04T08:42:51.3174479Z ##[group]Processing PR #167109 2025-12-04T08:42:51.3174845Z [167109] URL: https://github.com/pytorch/pytorch/pull/167109 2025-12-04T08:42:51.3175252Z [167109] Checking whether to label PR as stale. 2025-12-04T08:42:51.3175628Z [167109] Skipping because PR was updated recently 2025-12-04T08:42:51.3176116Z ##[endgroup] 2025-12-04T08:42:51.3176486Z ##[group]Processing PR #167134 2025-12-04T08:42:51.3176853Z [167134] URL: https://github.com/pytorch/pytorch/pull/167134 2025-12-04T08:42:51.3177388Z [167134] Checking whether to label PR as stale. 2025-12-04T08:42:51.3177753Z [167134] Skipping because PR was updated recently 2025-12-04T08:42:51.3178243Z ##[endgroup] 2025-12-04T08:42:51.3178633Z ##[group]Processing PR #167135 2025-12-04T08:42:51.3178987Z [167135] URL: https://github.com/pytorch/pytorch/pull/167135 2025-12-04T08:42:51.3179413Z [167135] Checking whether to label PR as stale. 2025-12-04T08:42:51.3179774Z [167135] Skipping because PR was updated recently 2025-12-04T08:42:51.3180258Z ##[endgroup] 2025-12-04T08:42:51.3180640Z ##[group]Processing PR #167137 2025-12-04T08:42:51.3181004Z [167137] URL: https://github.com/pytorch/pytorch/pull/167137 2025-12-04T08:42:51.3181455Z [167137] Checking whether to label PR as stale. 2025-12-04T08:42:51.3181990Z [167137] Skipping because PR was updated recently 2025-12-04T08:42:51.3182492Z ##[endgroup] 2025-12-04T08:42:51.3182885Z ##[group]Processing PR #167139 2025-12-04T08:42:51.3183250Z [167139] URL: https://github.com/pytorch/pytorch/pull/167139 2025-12-04T08:42:51.3183676Z [167139] Checking whether to label PR as stale. 2025-12-04T08:42:51.3184040Z [167139] Skipping because PR was updated recently 2025-12-04T08:42:51.3184534Z ##[endgroup] 2025-12-04T08:42:51.3184924Z ##[group]Processing PR #167144 2025-12-04T08:42:51.3185283Z [167144] URL: https://github.com/pytorch/pytorch/pull/167144 2025-12-04T08:42:51.3185808Z [167144] Checking whether to label PR as stale. 2025-12-04T08:42:51.3186190Z [167144] Skipping because PR was updated recently 2025-12-04T08:42:51.3186668Z ##[endgroup] 2025-12-04T08:42:51.3187060Z ##[group]Processing PR #167155 2025-12-04T08:42:51.3187429Z [167155] URL: https://github.com/pytorch/pytorch/pull/167155 2025-12-04T08:42:51.3187837Z [167155] Checking whether to label PR as stale. 2025-12-04T08:42:51.3188219Z [167155] Skipping because PR was updated recently 2025-12-04T08:42:51.3188700Z ##[endgroup] 2025-12-04T08:42:51.3189068Z ##[group]Processing PR #167157 2025-12-04T08:42:51.3189435Z [167157] URL: https://github.com/pytorch/pytorch/pull/167157 2025-12-04T08:42:51.3189857Z [167157] Checking whether to label PR as stale. 2025-12-04T08:42:51.3190217Z [167157] Skipping because PR was updated recently 2025-12-04T08:42:51.3190701Z ##[endgroup] 2025-12-04T08:42:51.3191082Z ##[group]Processing PR #167179 2025-12-04T08:42:51.3191435Z [167179] URL: https://github.com/pytorch/pytorch/pull/167179 2025-12-04T08:42:51.3191853Z [167179] Checking whether to label PR as stale. 2025-12-04T08:42:51.3192214Z [167179] Skipping because PR was updated recently 2025-12-04T08:42:51.3192696Z ##[endgroup] 2025-12-04T08:42:51.3193082Z ##[group]Processing PR #167182 2025-12-04T08:42:51.3193447Z [167182] URL: https://github.com/pytorch/pytorch/pull/167182 2025-12-04T08:42:51.3193856Z [167182] Checking whether to label PR as stale. 2025-12-04T08:42:51.3194235Z [167182] Skipping because PR was updated recently 2025-12-04T08:42:51.3194728Z ##[endgroup] 2025-12-04T08:42:51.3195098Z ##[group]Processing PR #167188 2025-12-04T08:42:51.3195468Z [167188] URL: https://github.com/pytorch/pytorch/pull/167188 2025-12-04T08:42:51.3195893Z [167188] Checking whether to label PR as stale. 2025-12-04T08:42:51.3196253Z [167188] Skipping because PR was updated recently 2025-12-04T08:42:51.3196735Z ##[endgroup] 2025-12-04T08:42:51.3197116Z ##[group]Processing PR #167198 2025-12-04T08:42:51.3197472Z [167198] URL: https://github.com/pytorch/pytorch/pull/167198 2025-12-04T08:42:51.3197891Z [167198] Checking whether to label PR as stale. 2025-12-04T08:42:51.3198251Z [167198] Skipping because PR was updated recently 2025-12-04T08:42:51.3198735Z ##[endgroup] 2025-12-04T08:42:51.3199121Z ##[group]Processing PR #167200 2025-12-04T08:42:51.3199486Z [167200] URL: https://github.com/pytorch/pytorch/pull/167200 2025-12-04T08:42:51.3199891Z [167200] Checking whether to label PR as stale. 2025-12-04T08:42:51.3200266Z [167200] Skipping because PR was updated recently 2025-12-04T08:42:51.3200751Z ##[endgroup] 2025-12-04T08:42:51.3201229Z ##[group]Processing PR #167202 2025-12-04T08:42:51.3201598Z [167202] URL: https://github.com/pytorch/pytorch/pull/167202 2025-12-04T08:42:51.3202008Z [167202] Checking whether to label PR as stale. 2025-12-04T08:42:51.3202390Z [167202] Skipping because PR was updated recently 2025-12-04T08:42:51.3202877Z ##[endgroup] 2025-12-04T08:42:51.3203266Z ##[group]Processing PR #167207 2025-12-04T08:42:51.3203622Z [167207] URL: https://github.com/pytorch/pytorch/pull/167207 2025-12-04T08:42:51.3204042Z [167207] Checking whether to label PR as stale. 2025-12-04T08:42:51.3204403Z [167207] Skipping because PR was updated recently 2025-12-04T08:42:51.3204886Z ##[endgroup] 2025-12-04T08:42:51.3205269Z ##[group]Processing PR #167218 2025-12-04T08:42:51.3205618Z [167218] URL: https://github.com/pytorch/pytorch/pull/167218 2025-12-04T08:42:51.3206037Z [167218] Checking whether to label PR as stale. 2025-12-04T08:42:51.3206419Z [167218] Skipping because PR was updated recently 2025-12-04T08:42:51.3206891Z ##[endgroup] 2025-12-04T08:42:51.3207276Z ##[group]Processing PR #167222 2025-12-04T08:42:51.3207648Z [167222] URL: https://github.com/pytorch/pytorch/pull/167222 2025-12-04T08:42:51.3208056Z [167222] Checking whether to label PR as stale. 2025-12-04T08:42:51.3208432Z [167222] Skipping because PR was updated recently 2025-12-04T08:42:51.3208914Z ##[endgroup] 2025-12-04T08:42:51.3209296Z ##[group]Processing PR #167224 2025-12-04T08:42:51.3209718Z [167224] URL: https://github.com/pytorch/pytorch/pull/167224 2025-12-04T08:42:51.3210141Z [167224] Checking whether to label PR as stale. 2025-12-04T08:42:51.3210503Z [167224] Skipping because PR was updated recently 2025-12-04T08:42:51.3210994Z ##[endgroup] 2025-12-04T08:42:51.3211522Z ##[group]Processing PR #167228 2025-12-04T08:42:51.3211877Z [167228] URL: https://github.com/pytorch/pytorch/pull/167228 2025-12-04T08:42:51.3212301Z [167228] Checking whether to label PR as stale. 2025-12-04T08:42:51.3212681Z [167228] Skipping because PR was updated recently 2025-12-04T08:42:51.3213161Z ##[endgroup] 2025-12-04T08:42:51.3213547Z ##[group]Processing PR #167235 2025-12-04T08:42:51.3213911Z [167235] URL: https://github.com/pytorch/pytorch/pull/167235 2025-12-04T08:42:51.3214316Z [167235] Checking whether to label PR as stale. 2025-12-04T08:42:51.3214692Z [167235] Skipping because PR was updated recently 2025-12-04T08:42:51.3215176Z ##[endgroup] 2025-12-04T08:42:51.3215549Z ##[group]Processing PR #167241 2025-12-04T08:42:51.3215915Z [167241] URL: https://github.com/pytorch/pytorch/pull/167241 2025-12-04T08:42:51.3216338Z [167241] Checking whether to label PR as stale. 2025-12-04T08:42:51.3216706Z [167241] Skipping because PR was updated recently 2025-12-04T08:42:51.3217198Z ##[endgroup] 2025-12-04T08:42:51.3217587Z ##[group]Processing PR #167249 2025-12-04T08:42:51.3217943Z [167249] URL: https://github.com/pytorch/pytorch/pull/167249 2025-12-04T08:42:51.3218367Z [167249] Checking whether to label PR as stale. 2025-12-04T08:42:51.3218733Z [167249] Skipping because PR was updated recently 2025-12-04T08:42:51.3219235Z ##[endgroup] 2025-12-04T08:42:51.3219631Z ##[group]Processing PR #167251 2025-12-04T08:42:51.3220000Z [167251] URL: https://github.com/pytorch/pytorch/pull/167251 2025-12-04T08:42:51.3220409Z [167251] Checking whether to label PR as stale. 2025-12-04T08:42:51.3220786Z [167251] Skipping because PR was updated recently 2025-12-04T08:42:51.3221274Z ##[endgroup] 2025-12-04T08:42:51.3221648Z ##[group]Processing PR #167256 2025-12-04T08:42:51.3222016Z [167256] URL: https://github.com/pytorch/pytorch/pull/167256 2025-12-04T08:42:51.3222434Z [167256] Checking whether to label PR as stale. 2025-12-04T08:42:51.3222794Z [167256] Skipping because PR was updated recently 2025-12-04T08:42:51.3223277Z ##[endgroup] 2025-12-04T08:42:51.3223659Z ##[group]Processing PR #167259 2025-12-04T08:42:51.3224009Z [167259] URL: https://github.com/pytorch/pytorch/pull/167259 2025-12-04T08:42:51.3224426Z [167259] Checking whether to label PR as stale. 2025-12-04T08:42:51.3224785Z [167259] Skipping because PR was updated recently 2025-12-04T08:42:51.3225413Z ##[endgroup] 2025-12-04T08:42:51.3225794Z ##[group]Processing PR #167282 2025-12-04T08:42:51.3226159Z [167282] URL: https://github.com/pytorch/pytorch/pull/167282 2025-12-04T08:42:51.3226562Z [167282] Checking whether to label PR as stale. 2025-12-04T08:42:51.3226936Z [167282] Skipping because PR was updated recently 2025-12-04T08:42:51.3227422Z ##[endgroup] 2025-12-04T08:42:51.3227802Z ##[group]Processing PR #167289 2025-12-04T08:42:51.3228171Z [167289] URL: https://github.com/pytorch/pytorch/pull/167289 2025-12-04T08:42:51.3228578Z [167289] Checking whether to label PR as stale. 2025-12-04T08:42:51.3228956Z [167289] Skipping because PR was updated recently 2025-12-04T08:42:51.3229442Z ##[endgroup] 2025-12-04T08:42:51.3229823Z ##[group]Processing PR #167300 2025-12-04T08:42:51.3230171Z [167300] URL: https://github.com/pytorch/pytorch/pull/167300 2025-12-04T08:42:51.3230592Z [167300] Checking whether to label PR as stale. 2025-12-04T08:42:51.3230950Z [167300] Skipping because PR was updated recently 2025-12-04T08:42:51.3231437Z ##[endgroup] 2025-12-04T08:42:51.3231816Z ##[group]Processing PR #167302 2025-12-04T08:42:51.3232184Z [167302] URL: https://github.com/pytorch/pytorch/pull/167302 2025-12-04T08:42:51.3232593Z [167302] Checking whether to label PR as stale. 2025-12-04T08:42:51.3232968Z [167302] Skipping because PR was updated recently 2025-12-04T08:42:51.3233509Z ##[endgroup] 2025-12-04T08:42:51.3234359Z ##[group]Processing PR #167303 2025-12-04T08:42:51.3234800Z [167303] URL: https://github.com/pytorch/pytorch/pull/167303 2025-12-04T08:42:51.3235211Z [167303] Checking whether to label PR as stale. 2025-12-04T08:42:51.3235594Z [167303] Skipping because PR was updated recently 2025-12-04T08:42:51.3236094Z ##[endgroup] 2025-12-04T08:42:51.3236484Z ##[group]Processing PR #167306 2025-12-04T08:42:51.3236834Z [167306] URL: https://github.com/pytorch/pytorch/pull/167306 2025-12-04T08:42:51.3237256Z [167306] Checking whether to label PR as stale. 2025-12-04T08:42:51.3237625Z [167306] Skipping because PR was updated recently 2025-12-04T08:42:51.3238109Z ##[endgroup] 2025-12-04T08:42:51.3238491Z ##[group]Processing PR #167314 2025-12-04T08:42:51.3238844Z [167314] URL: https://github.com/pytorch/pytorch/pull/167314 2025-12-04T08:42:51.3239265Z [167314] Checking whether to label PR as stale. 2025-12-04T08:42:51.3239641Z [167314] Skipping because PR was updated recently 2025-12-04T08:42:51.3240116Z ##[endgroup] 2025-12-04T08:42:51.3240498Z ##[group]Processing PR #167316 2025-12-04T08:42:51.3240863Z [167316] URL: https://github.com/pytorch/pytorch/pull/167316 2025-12-04T08:42:51.3241269Z [167316] Checking whether to label PR as stale. 2025-12-04T08:42:51.3241643Z [167316] Skipping because PR was updated recently 2025-12-04T08:42:51.3242131Z ##[endgroup] 2025-12-04T08:42:51.3242503Z ##[group]Processing PR #167318 2025-12-04T08:42:51.3242866Z [167318] URL: https://github.com/pytorch/pytorch/pull/167318 2025-12-04T08:42:51.3243285Z [167318] Checking whether to label PR as stale. 2025-12-04T08:42:51.3243651Z [167318] Skipping because PR was updated recently 2025-12-04T08:42:51.3244132Z ##[endgroup] 2025-12-04T08:42:51.3244811Z ##[group]Processing PR #167320 2025-12-04T08:42:51.3245258Z [167320] URL: https://github.com/pytorch/pytorch/pull/167320 2025-12-04T08:42:51.3245679Z [167320] Checking whether to label PR as stale. 2025-12-04T08:42:51.3246049Z [167320] Skipping because PR was updated recently 2025-12-04T08:42:51.3246552Z ##[endgroup] 2025-12-04T08:42:51.3246940Z ##[group]Processing PR #167322 2025-12-04T08:42:51.3247307Z [167322] URL: https://github.com/pytorch/pytorch/pull/167322 2025-12-04T08:42:51.3247713Z [167322] Checking whether to label PR as stale. 2025-12-04T08:42:51.3248090Z [167322] Skipping because PR was updated recently 2025-12-04T08:42:51.3248573Z ##[endgroup] 2025-12-04T08:42:51.3248943Z ##[group]Processing PR #167328 2025-12-04T08:42:51.3249306Z [167328] URL: https://github.com/pytorch/pytorch/pull/167328 2025-12-04T08:42:51.3249725Z [167328] Checking whether to label PR as stale. 2025-12-04T08:42:51.3250318Z [167328] Skipping because PR was updated recently 2025-12-04T08:42:51.3250830Z ##[endgroup] 2025-12-04T08:42:51.3251221Z ##[group]Processing PR #167336 2025-12-04T08:42:51.3251682Z [167336] URL: https://github.com/pytorch/pytorch/pull/167336 2025-12-04T08:42:51.3252106Z [167336] Checking whether to label PR as stale. 2025-12-04T08:42:51.3252478Z [167336] Skipping because PR was updated recently 2025-12-04T08:42:51.3252974Z ##[endgroup] 2025-12-04T08:42:51.3253364Z ##[group]Processing PR #167343 2025-12-04T08:42:51.3253734Z [167343] URL: https://github.com/pytorch/pytorch/pull/167343 2025-12-04T08:42:51.3254141Z [167343] Checking whether to label PR as stale. 2025-12-04T08:42:51.3254516Z [167343] Skipping because PR was updated recently 2025-12-04T08:42:51.3255008Z ##[endgroup] 2025-12-04T08:42:51.3255384Z ##[group]Processing PR #167356 2025-12-04T08:42:51.3255754Z [167356] URL: https://github.com/pytorch/pytorch/pull/167356 2025-12-04T08:42:51.3256158Z [167356] Checking whether to label PR as stale. 2025-12-04T08:42:51.3256541Z [167356] Skipping because PR was updated recently 2025-12-04T08:42:51.3257026Z ##[endgroup] 2025-12-04T08:42:51.3257409Z ##[group]Processing PR #167359 2025-12-04T08:42:51.3257760Z [167359] URL: https://github.com/pytorch/pytorch/pull/167359 2025-12-04T08:42:51.3258177Z [167359] Checking whether to label PR as stale. 2025-12-04T08:42:51.3258649Z [167359] Skipping because PR was updated recently 2025-12-04T08:42:51.3259138Z ##[endgroup] 2025-12-04T08:42:51.3269749Z ##[group]Processing PR #167376 2025-12-04T08:42:51.3270356Z [167376] URL: https://github.com/pytorch/pytorch/pull/167376 2025-12-04T08:42:51.3270789Z [167376] Checking whether to label PR as stale. 2025-12-04T08:42:51.3271178Z [167376] Skipping because PR was updated recently 2025-12-04T08:42:51.3271733Z ##[endgroup] 2025-12-04T08:42:51.3272123Z ##[group]Processing PR #167406 2025-12-04T08:42:51.3272496Z [167406] URL: https://github.com/pytorch/pytorch/pull/167406 2025-12-04T08:42:51.3272937Z [167406] Checking whether to label PR as stale. 2025-12-04T08:42:51.3273305Z [167406] Skipping because PR was updated recently 2025-12-04T08:42:51.3273797Z ##[endgroup] 2025-12-04T08:42:51.3274190Z ##[group]Processing PR #167407 2025-12-04T08:42:51.3274547Z [167407] URL: https://github.com/pytorch/pytorch/pull/167407 2025-12-04T08:42:51.3274977Z [167407] Checking whether to label PR as stale. 2025-12-04T08:42:51.3275351Z [167407] Skipping because PR was updated recently 2025-12-04T08:42:51.3275844Z ##[endgroup] 2025-12-04T08:42:51.3276235Z ##[group]Processing PR #167415 2025-12-04T08:42:51.3276603Z [167415] URL: https://github.com/pytorch/pytorch/pull/167415 2025-12-04T08:42:51.3277018Z [167415] Checking whether to label PR as stale. 2025-12-04T08:42:51.3277396Z [167415] Skipping because PR was updated recently 2025-12-04T08:42:51.3277888Z ##[endgroup] 2025-12-04T08:42:51.3278265Z ##[group]Processing PR #167419 2025-12-04T08:42:51.3278630Z [167419] URL: https://github.com/pytorch/pytorch/pull/167419 2025-12-04T08:42:51.3279059Z [167419] Checking whether to label PR as stale. 2025-12-04T08:42:51.3279426Z [167419] Skipping because PR was updated recently 2025-12-04T08:42:51.3279910Z ##[endgroup] 2025-12-04T08:42:51.3280295Z ##[group]Processing PR #167422 2025-12-04T08:42:51.3280649Z [167422] URL: https://github.com/pytorch/pytorch/pull/167422 2025-12-04T08:42:51.3281078Z [167422] Checking whether to label PR as stale. 2025-12-04T08:42:51.3281442Z [167422] Skipping because PR was updated recently 2025-12-04T08:42:51.3281933Z ##[endgroup] 2025-12-04T08:42:51.3282321Z ##[group]Processing PR #167424 2025-12-04T08:42:51.3282686Z [167424] URL: https://github.com/pytorch/pytorch/pull/167424 2025-12-04T08:42:51.3283091Z [167424] Checking whether to label PR as stale. 2025-12-04T08:42:51.3283471Z [167424] Skipping because PR was updated recently 2025-12-04T08:42:51.3283961Z ##[endgroup] 2025-12-04T08:42:51.3284337Z ##[group]Processing PR #167439 2025-12-04T08:42:51.3284706Z [167439] URL: https://github.com/pytorch/pytorch/pull/167439 2025-12-04T08:42:51.3285293Z [167439] Checking whether to label PR as stale. 2025-12-04T08:42:51.3285675Z [167439] Skipping because PR was updated recently 2025-12-04T08:42:51.3286168Z ##[endgroup] 2025-12-04T08:42:51.3286559Z ##[group]Processing PR #167440 2025-12-04T08:42:51.3286916Z [167440] URL: https://github.com/pytorch/pytorch/pull/167440 2025-12-04T08:42:51.3287346Z [167440] Checking whether to label PR as stale. 2025-12-04T08:42:51.3287711Z [167440] Skipping because PR was updated recently 2025-12-04T08:42:51.3288202Z ##[endgroup] 2025-12-04T08:42:51.3288586Z ##[group]Processing PR #167448 2025-12-04T08:42:51.3288952Z [167448] URL: https://github.com/pytorch/pytorch/pull/167448 2025-12-04T08:42:51.3289361Z [167448] Checking whether to label PR as stale. 2025-12-04T08:42:51.3289742Z [167448] Skipping because PR was updated recently 2025-12-04T08:42:51.3290218Z ##[endgroup] 2025-12-04T08:42:51.3290610Z ##[group]Processing PR #167454 2025-12-04T08:42:51.3290976Z [167454] URL: https://github.com/pytorch/pytorch/pull/167454 2025-12-04T08:42:51.3291518Z [167454] Checking whether to label PR as stale. 2025-12-04T08:42:51.3291899Z [167454] Skipping because PR was updated recently 2025-12-04T08:42:51.3292400Z ##[endgroup] 2025-12-04T08:42:51.3292788Z ##[group]Processing PR #167455 2025-12-04T08:42:51.3293148Z [167455] URL: https://github.com/pytorch/pytorch/pull/167455 2025-12-04T08:42:51.3293660Z [167455] Checking whether to label PR as stale. 2025-12-04T08:42:51.3294030Z [167455] Skipping because PR was updated recently 2025-12-04T08:42:51.3294529Z ##[endgroup] 2025-12-04T08:42:51.3294922Z ##[group]Processing PR #167456 2025-12-04T08:42:51.3295274Z [167456] URL: https://github.com/pytorch/pytorch/pull/167456 2025-12-04T08:42:51.3295704Z [167456] Checking whether to label PR as stale. 2025-12-04T08:42:51.3296084Z [167456] Skipping because PR was updated recently 2025-12-04T08:42:51.3296559Z ##[endgroup] 2025-12-04T08:42:51.3296941Z ##[group]Processing PR #167460 2025-12-04T08:42:51.3297311Z [167460] URL: https://github.com/pytorch/pytorch/pull/167460 2025-12-04T08:42:51.3297720Z [167460] Checking whether to label PR as stale. 2025-12-04T08:42:51.3298094Z [167460] Skipping because PR was updated recently 2025-12-04T08:42:51.3298578Z ##[endgroup] 2025-12-04T08:42:51.3298948Z ##[group]Processing PR #167461 2025-12-04T08:42:51.3299315Z [167461] URL: https://github.com/pytorch/pytorch/pull/167461 2025-12-04T08:42:51.3299740Z [167461] Checking whether to label PR as stale. 2025-12-04T08:42:51.3300105Z [167461] Skipping because PR was updated recently 2025-12-04T08:42:51.3300596Z ##[endgroup] 2025-12-04T08:42:51.3300987Z ##[group]Processing PR #167468 2025-12-04T08:42:51.3301342Z [167468] URL: https://github.com/pytorch/pytorch/pull/167468 2025-12-04T08:42:51.3301765Z [167468] Checking whether to label PR as stale. 2025-12-04T08:42:51.3302129Z [167468] Skipping because PR was updated recently 2025-12-04T08:42:51.3302621Z ##[endgroup] 2025-12-04T08:42:51.3303009Z ##[group]Processing PR #167472 2025-12-04T08:42:51.3303387Z [167472] URL: https://github.com/pytorch/pytorch/pull/167472 2025-12-04T08:42:51.3303794Z [167472] Checking whether to label PR as stale. 2025-12-04T08:42:51.3304176Z [167472] Skipping because PR was updated recently 2025-12-04T08:42:51.3304665Z ##[endgroup] 2025-12-04T08:42:51.3305055Z ##[group]Processing PR #167473 2025-12-04T08:42:51.3305412Z [167473] URL: https://github.com/pytorch/pytorch/pull/167473 2025-12-04T08:42:51.3305831Z [167473] Checking whether to label PR as stale. 2025-12-04T08:42:51.3306195Z [167473] Skipping because PR was updated recently 2025-12-04T08:42:51.3306684Z ##[endgroup] 2025-12-04T08:42:51.3307076Z ##[group]Processing PR #167474 2025-12-04T08:42:51.3307445Z [167474] URL: https://github.com/pytorch/pytorch/pull/167474 2025-12-04T08:42:51.3307850Z [167474] Checking whether to label PR as stale. 2025-12-04T08:42:51.3308225Z [167474] Skipping because PR was updated recently 2025-12-04T08:42:51.3308712Z ##[endgroup] 2025-12-04T08:42:51.3309080Z ##[group]Processing PR #167481 2025-12-04T08:42:51.3309538Z [167481] URL: https://github.com/pytorch/pytorch/pull/167481 2025-12-04T08:42:51.3309949Z [167481] Checking whether to label PR as stale. 2025-12-04T08:42:51.3310324Z [167481] Skipping because PR was updated recently 2025-12-04T08:42:51.3310813Z ##[endgroup] 2025-12-04T08:42:51.3311198Z ##[group]Processing PR #167485 2025-12-04T08:42:51.3311551Z [167485] URL: https://github.com/pytorch/pytorch/pull/167485 2025-12-04T08:42:51.3311967Z [167485] Checking whether to label PR as stale. 2025-12-04T08:42:51.3312332Z [167485] Skipping because PR was updated recently 2025-12-04T08:42:51.3312817Z ##[endgroup] 2025-12-04T08:42:51.3313199Z ##[group]Processing PR #167492 2025-12-04T08:42:51.3313562Z [167492] URL: https://github.com/pytorch/pytorch/pull/167492 2025-12-04T08:42:51.3313968Z [167492] Checking whether to label PR as stale. 2025-12-04T08:42:51.3314341Z [167492] Skipping because PR was updated recently 2025-12-04T08:42:51.3314813Z ##[endgroup] 2025-12-04T08:42:51.3315197Z ##[group]Processing PR #167498 2025-12-04T08:42:51.3315562Z [167498] URL: https://github.com/pytorch/pytorch/pull/167498 2025-12-04T08:42:51.3315967Z [167498] Checking whether to label PR as stale. 2025-12-04T08:42:51.3316341Z [167498] Skipping because PR was updated recently 2025-12-04T08:42:51.3316825Z ##[endgroup] 2025-12-04T08:42:51.3318628Z ##[group]Processing PR #167500 2025-12-04T08:42:51.3319511Z [167500] URL: https://github.com/pytorch/pytorch/pull/167500 2025-12-04T08:42:51.3320176Z [167500] Checking whether to label PR as stale. 2025-12-04T08:42:51.3320825Z [167500] Skipping because PR was updated recently 2025-12-04T08:42:51.3321658Z ##[endgroup] 2025-12-04T08:42:51.3322336Z ##[group]Processing PR #167503 2025-12-04T08:42:51.3322978Z [167503] URL: https://github.com/pytorch/pytorch/pull/167503 2025-12-04T08:42:51.3323605Z [167503] Checking whether to label PR as stale. 2025-12-04T08:42:51.3324260Z [167503] Skipping because PR was updated recently 2025-12-04T08:42:51.3325084Z ##[endgroup] 2025-12-04T08:42:51.3325759Z ##[group]Processing PR #167507 2025-12-04T08:42:51.3326387Z [167507] URL: https://github.com/pytorch/pytorch/pull/167507 2025-12-04T08:42:51.3327028Z [167507] Checking whether to label PR as stale. 2025-12-04T08:42:51.3327694Z [167507] Skipping because PR was updated recently 2025-12-04T08:42:51.3328499Z ##[endgroup] 2025-12-04T08:42:51.3329169Z ##[group]Processing PR #167508 2025-12-04T08:42:51.3329818Z [167508] URL: https://github.com/pytorch/pytorch/pull/167508 2025-12-04T08:42:51.3330444Z [167508] Checking whether to label PR as stale. 2025-12-04T08:42:51.3331102Z [167508] Skipping because PR was updated recently 2025-12-04T08:42:51.3332037Z ##[endgroup] 2025-12-04T08:42:51.3332718Z ##[group]Processing PR #167514 2025-12-04T08:42:51.3333352Z [167514] URL: https://github.com/pytorch/pytorch/pull/167514 2025-12-04T08:42:51.3334356Z [167514] Checking whether to label PR as stale. 2025-12-04T08:42:51.3334999Z [167514] Skipping because PR was updated recently 2025-12-04T08:42:51.3335716Z ##[endgroup] 2025-12-04T08:42:51.3336335Z ##[group]Processing PR #167523 2025-12-04T08:42:51.3336922Z [167523] URL: https://github.com/pytorch/pytorch/pull/167523 2025-12-04T08:42:51.3337534Z [167523] Checking whether to label PR as stale. 2025-12-04T08:42:51.3338116Z [167523] Skipping because PR was updated recently 2025-12-04T08:42:51.3338841Z ##[endgroup] 2025-12-04T08:42:51.3339454Z ##[group]Processing PR #167532 2025-12-04T08:42:51.3340038Z [167532] URL: https://github.com/pytorch/pytorch/pull/167532 2025-12-04T08:42:51.3340632Z [167532] Checking whether to label PR as stale. 2025-12-04T08:42:51.3341238Z [167532] Skipping because PR was updated recently 2025-12-04T08:42:51.3341964Z ##[endgroup] 2025-12-04T08:42:51.3342561Z ##[group]Processing PR #167536 2025-12-04T08:42:51.3343138Z [167536] URL: https://github.com/pytorch/pytorch/pull/167536 2025-12-04T08:42:51.3343756Z [167536] Checking whether to label PR as stale. 2025-12-04T08:42:51.3344326Z [167536] Skipping because PR was updated recently 2025-12-04T08:42:51.3345287Z ##[endgroup] 2025-12-04T08:42:51.3345896Z ##[group]Processing PR #167541 2025-12-04T08:42:51.3346481Z [167541] URL: https://github.com/pytorch/pytorch/pull/167541 2025-12-04T08:42:51.3347080Z [167541] Checking whether to label PR as stale. 2025-12-04T08:42:51.3347683Z [167541] Skipping because PR was updated recently 2025-12-04T08:42:51.3348415Z ##[endgroup] 2025-12-04T08:42:51.3349028Z ##[group]Processing PR #167543 2025-12-04T08:42:51.3349596Z [167543] URL: https://github.com/pytorch/pytorch/pull/167543 2025-12-04T08:42:51.3350207Z [167543] Checking whether to label PR as stale. 2025-12-04T08:42:51.3350784Z [167543] Skipping because PR was updated recently 2025-12-04T08:42:51.3351432Z ##[endgroup] 2025-12-04T08:42:52.7347611Z ##[group]Processing PR #167547 2025-12-04T08:42:52.7348375Z [167547] URL: https://github.com/pytorch/pytorch/pull/167547 2025-12-04T08:42:52.7349150Z [167547] Checking whether to label PR as stale. 2025-12-04T08:42:52.7349843Z [167547] Skipping because PR was updated recently 2025-12-04T08:42:52.7352030Z ##[endgroup] 2025-12-04T08:42:52.7354496Z ##[group]Processing PR #167548 2025-12-04T08:42:52.7355377Z [167548] URL: https://github.com/pytorch/pytorch/pull/167548 2025-12-04T08:42:52.7356423Z [167548] Checking whether to label PR as stale. 2025-12-04T08:42:52.7357240Z [167548] Skipping because PR was updated recently 2025-12-04T08:42:52.7358242Z ##[endgroup] 2025-12-04T08:42:52.7359486Z ##[group]Processing PR #167550 2025-12-04T08:42:52.7360315Z [167550] URL: https://github.com/pytorch/pytorch/pull/167550 2025-12-04T08:42:52.7361209Z [167550] Checking whether to label PR as stale. 2025-12-04T08:42:52.7362008Z [167550] Skipping because PR was updated recently 2025-12-04T08:42:52.7363029Z ##[endgroup] 2025-12-04T08:42:52.7363854Z ##[group]Processing PR #167552 2025-12-04T08:42:52.7364641Z [167552] URL: https://github.com/pytorch/pytorch/pull/167552 2025-12-04T08:42:52.7365514Z [167552] Checking whether to label PR as stale. 2025-12-04T08:42:52.7366332Z [167552] Skipping because PR was updated recently 2025-12-04T08:42:52.7367354Z ##[endgroup] 2025-12-04T08:42:52.7368185Z ##[group]Processing PR #167553 2025-12-04T08:42:52.7369169Z [167553] URL: https://github.com/pytorch/pytorch/pull/167553 2025-12-04T08:42:52.7370121Z [167553] Checking whether to label PR as stale. 2025-12-04T08:42:52.7370928Z [167553] Skipping because PR was updated recently 2025-12-04T08:42:52.7372073Z ##[endgroup] 2025-12-04T08:42:52.7375260Z ##[group]Processing PR #167555 2025-12-04T08:42:52.7376052Z [167555] URL: https://github.com/pytorch/pytorch/pull/167555 2025-12-04T08:42:52.7379237Z [167555] Checking whether to label PR as stale. 2025-12-04T08:42:52.7379985Z [167555] Skipping because PR was updated recently 2025-12-04T08:42:52.7383219Z ##[endgroup] 2025-12-04T08:42:52.7383945Z ##[group]Processing PR #167556 2025-12-04T08:42:52.7387011Z [167556] URL: https://github.com/pytorch/pytorch/pull/167556 2025-12-04T08:42:52.7387836Z [167556] Checking whether to label PR as stale. 2025-12-04T08:42:52.7390820Z [167556] Skipping because PR was updated recently 2025-12-04T08:42:52.7391866Z ##[endgroup] 2025-12-04T08:42:52.7394812Z ##[group]Processing PR #167570 2025-12-04T08:42:52.7395520Z [167570] URL: https://github.com/pytorch/pytorch/pull/167570 2025-12-04T08:42:52.7396103Z [167570] Checking whether to label PR as stale. 2025-12-04T08:42:52.7396613Z [167570] Skipping because PR was updated recently 2025-12-04T08:42:52.7397343Z ##[endgroup] 2025-12-04T08:42:52.7397897Z ##[group]Processing PR #167577 2025-12-04T08:42:52.7398464Z [167577] URL: https://github.com/pytorch/pytorch/pull/167577 2025-12-04T08:42:52.7399069Z [167577] Checking whether to label PR as stale. 2025-12-04T08:42:52.7399712Z [167577] Skipping because PR was updated recently 2025-12-04T08:42:52.7400706Z ##[endgroup] 2025-12-04T08:42:52.7401340Z ##[group]Processing PR #167583 2025-12-04T08:42:52.7401890Z [167583] URL: https://github.com/pytorch/pytorch/pull/167583 2025-12-04T08:42:52.7402506Z [167583] Checking whether to label PR as stale. 2025-12-04T08:42:52.7403395Z [167583] Skipping because PR was updated recently 2025-12-04T08:42:52.7404118Z ##[endgroup] 2025-12-04T08:42:52.7404715Z ##[group]Processing PR #167590 2025-12-04T08:42:52.7405251Z [167590] URL: https://github.com/pytorch/pytorch/pull/167590 2025-12-04T08:42:52.7405962Z [167590] Checking whether to label PR as stale. 2025-12-04T08:42:52.7406618Z [167590] Skipping because PR was updated recently 2025-12-04T08:42:52.7407396Z ##[endgroup] 2025-12-04T08:42:52.7407951Z ##[group]Processing PR #167594 2025-12-04T08:42:52.7408424Z [167594] URL: https://github.com/pytorch/pytorch/pull/167594 2025-12-04T08:42:52.7409182Z [167594] Checking whether to label PR as stale. 2025-12-04T08:42:52.7410041Z [167594] Skipping because PR was updated recently 2025-12-04T08:42:52.7410945Z ##[endgroup] 2025-12-04T08:42:52.7411918Z ##[group]Processing PR #167598 2025-12-04T08:42:52.7412544Z [167598] URL: https://github.com/pytorch/pytorch/pull/167598 2025-12-04T08:42:52.7413336Z [167598] Checking whether to label PR as stale. 2025-12-04T08:42:52.7414035Z [167598] Skipping because PR was updated recently 2025-12-04T08:42:52.7414922Z ##[endgroup] 2025-12-04T08:42:52.7415634Z ##[group]Processing PR #167599 2025-12-04T08:42:52.7416289Z [167599] URL: https://github.com/pytorch/pytorch/pull/167599 2025-12-04T08:42:52.7417058Z [167599] Checking whether to label PR as stale. 2025-12-04T08:42:52.7417939Z [167599] Skipping because PR was updated recently 2025-12-04T08:42:52.7418553Z ##[endgroup] 2025-12-04T08:42:52.7418943Z ##[group]Processing PR #167607 2025-12-04T08:42:52.7419311Z [167607] URL: https://github.com/pytorch/pytorch/pull/167607 2025-12-04T08:42:52.7419719Z [167607] Checking whether to label PR as stale. 2025-12-04T08:42:52.7420093Z [167607] Skipping because PR was updated recently 2025-12-04T08:42:52.7420579Z ##[endgroup] 2025-12-04T08:42:52.7420968Z ##[group]Processing PR #167615 2025-12-04T08:42:52.7421320Z [167615] URL: https://github.com/pytorch/pytorch/pull/167615 2025-12-04T08:42:52.7421740Z [167615] Checking whether to label PR as stale. 2025-12-04T08:42:52.7422109Z [167615] Skipping because PR was updated recently 2025-12-04T08:42:52.7422596Z ##[endgroup] 2025-12-04T08:42:52.7422990Z ##[group]Processing PR #167617 2025-12-04T08:42:52.7423345Z [167617] URL: https://github.com/pytorch/pytorch/pull/167617 2025-12-04T08:42:52.7423770Z [167617] Checking whether to label PR as stale. 2025-12-04T08:42:52.7424139Z [167617] Skipping because PR was updated recently 2025-12-04T08:42:52.7424941Z ##[endgroup] 2025-12-04T08:42:52.7425342Z ##[group]Processing PR #167618 2025-12-04T08:42:52.7425715Z [167618] URL: https://github.com/pytorch/pytorch/pull/167618 2025-12-04T08:42:52.7426127Z [167618] Checking whether to label PR as stale. 2025-12-04T08:42:52.7426510Z [167618] Skipping because PR was updated recently 2025-12-04T08:42:52.7427004Z ##[endgroup] 2025-12-04T08:42:52.7427384Z ##[group]Processing PR #167622 2025-12-04T08:42:52.7427754Z [167622] URL: https://github.com/pytorch/pytorch/pull/167622 2025-12-04T08:42:52.7428187Z [167622] Checking whether to label PR as stale. 2025-12-04T08:42:52.7428553Z [167622] Skipping because PR was updated recently 2025-12-04T08:42:52.7429041Z ##[endgroup] 2025-12-04T08:42:52.7429427Z ##[group]Processing PR #167625 2025-12-04T08:42:52.7429779Z [167625] URL: https://github.com/pytorch/pytorch/pull/167625 2025-12-04T08:42:52.7430200Z [167625] Checking whether to label PR as stale. 2025-12-04T08:42:52.7430655Z [167625] Skipping because PR was updated recently 2025-12-04T08:42:52.7431270Z ##[endgroup] 2025-12-04T08:42:52.7431660Z ##[group]Processing PR #167626 2025-12-04T08:42:52.7432033Z [167626] URL: https://github.com/pytorch/pytorch/pull/167626 2025-12-04T08:42:52.7432447Z [167626] Checking whether to label PR as stale. 2025-12-04T08:42:52.7432829Z [167626] Skipping because PR was updated recently 2025-12-04T08:42:52.7433323Z ##[endgroup] 2025-12-04T08:42:52.7433701Z ##[group]Processing PR #167632 2025-12-04T08:42:52.7434444Z [167632] URL: https://github.com/pytorch/pytorch/pull/167632 2025-12-04T08:42:52.7435193Z [167632] Checking whether to label PR as stale. 2025-12-04T08:42:52.7435726Z [167632] Skipping because PR was updated recently 2025-12-04T08:42:52.7436358Z ##[endgroup] 2025-12-04T08:42:52.7436755Z ##[group]Processing PR #167637 2025-12-04T08:42:52.7437114Z [167637] URL: https://github.com/pytorch/pytorch/pull/167637 2025-12-04T08:42:52.7437541Z [167637] Checking whether to label PR as stale. 2025-12-04T08:42:52.7438118Z [167637] Skipping because PR was updated recently 2025-12-04T08:42:52.7438663Z ##[endgroup] 2025-12-04T08:42:52.7439056Z ##[group]Processing PR #167647 2025-12-04T08:42:52.7439429Z [167647] URL: https://github.com/pytorch/pytorch/pull/167647 2025-12-04T08:42:52.7439837Z [167647] Checking whether to label PR as stale. 2025-12-04T08:42:52.7440218Z [167647] Skipping because PR was updated recently 2025-12-04T08:42:52.7440698Z ##[endgroup] 2025-12-04T08:42:52.7441087Z ##[group]Processing PR #167648 2025-12-04T08:42:52.7441456Z [167648] URL: https://github.com/pytorch/pytorch/pull/167648 2025-12-04T08:42:52.7441869Z [167648] Checking whether to label PR as stale. 2025-12-04T08:42:52.7442246Z [167648] Skipping because PR was updated recently 2025-12-04T08:42:52.7442732Z ##[endgroup] 2025-12-04T08:42:52.7443131Z ##[group]Processing PR #167650 2025-12-04T08:42:52.7443491Z [167650] URL: https://github.com/pytorch/pytorch/pull/167650 2025-12-04T08:42:52.7444114Z [167650] Checking whether to label PR as stale. 2025-12-04T08:42:52.7444484Z [167650] Skipping because PR was updated recently 2025-12-04T08:42:52.7444982Z ##[endgroup] 2025-12-04T08:42:52.7445384Z ##[group]Processing PR #167651 2025-12-04T08:42:52.7445745Z [167651] URL: https://github.com/pytorch/pytorch/pull/167651 2025-12-04T08:42:52.7446174Z [167651] Checking whether to label PR as stale. 2025-12-04T08:42:52.7446559Z [167651] Skipping because PR was updated recently 2025-12-04T08:42:52.7447042Z ##[endgroup] 2025-12-04T08:42:52.7447444Z ##[group]Processing PR #167659 2025-12-04T08:42:52.7447817Z [167659] URL: https://github.com/pytorch/pytorch/pull/167659 2025-12-04T08:42:52.7448235Z [167659] Checking whether to label PR as stale. 2025-12-04T08:42:52.7448616Z [167659] Skipping because PR was updated recently 2025-12-04T08:42:52.7449107Z ##[endgroup] 2025-12-04T08:42:52.7449494Z ##[group]Processing PR #167661 2025-12-04T08:42:52.7449843Z [167661] URL: https://github.com/pytorch/pytorch/pull/167661 2025-12-04T08:42:52.7450272Z [167661] Checking whether to label PR as stale. 2025-12-04T08:42:52.7450641Z [167661] Skipping because PR was updated recently 2025-12-04T08:42:52.7451130Z ##[endgroup] 2025-12-04T08:42:52.7451648Z ##[group]Processing PR #167662 2025-12-04T08:42:52.7452068Z [167662] URL: https://github.com/pytorch/pytorch/pull/167662 2025-12-04T08:42:52.7452488Z [167662] Checking whether to label PR as stale. 2025-12-04T08:42:52.7452878Z [167662] Skipping because PR was updated recently 2025-12-04T08:42:52.7453373Z ##[endgroup] 2025-12-04T08:42:52.7453753Z ##[group]Processing PR #167671 2025-12-04T08:42:52.7454123Z [167671] URL: https://github.com/pytorch/pytorch/pull/167671 2025-12-04T08:42:52.7454551Z [167671] Checking whether to label PR as stale. 2025-12-04T08:42:52.7454937Z [167671] Skipping because PR was updated recently 2025-12-04T08:42:52.7455432Z ##[endgroup] 2025-12-04T08:42:52.7455831Z ##[group]Processing PR #167672 2025-12-04T08:42:52.7456195Z [167672] URL: https://github.com/pytorch/pytorch/pull/167672 2025-12-04T08:42:52.7456633Z [167672] Checking whether to label PR as stale. 2025-12-04T08:42:52.7457004Z [167672] Skipping because PR was updated recently 2025-12-04T08:42:52.7457504Z ##[endgroup] 2025-12-04T08:42:52.7457895Z ##[group]Processing PR #167676 2025-12-04T08:42:52.7458256Z [167676] URL: https://github.com/pytorch/pytorch/pull/167676 2025-12-04T08:42:52.7458684Z [167676] Checking whether to label PR as stale. 2025-12-04T08:42:52.7459065Z [167676] Skipping because PR was updated recently 2025-12-04T08:42:52.7459541Z ##[endgroup] 2025-12-04T08:42:52.7459935Z ##[group]Processing PR #167677 2025-12-04T08:42:52.7460487Z [167677] URL: https://github.com/pytorch/pytorch/pull/167677 2025-12-04T08:42:52.7460894Z [167677] Checking whether to label PR as stale. 2025-12-04T08:42:52.7461278Z [167677] Skipping because PR was updated recently 2025-12-04T08:42:52.7461772Z ##[endgroup] 2025-12-04T08:42:52.7462161Z ##[group]Processing PR #167680 2025-12-04T08:42:52.7462530Z [167680] URL: https://github.com/pytorch/pytorch/pull/167680 2025-12-04T08:42:52.7462954Z [167680] Checking whether to label PR as stale. 2025-12-04T08:42:52.7463320Z [167680] Skipping because PR was updated recently 2025-12-04T08:42:52.7463833Z ##[endgroup] 2025-12-04T08:42:52.7464224Z ##[group]Processing PR #167685 2025-12-04T08:42:52.7464586Z [167685] URL: https://github.com/pytorch/pytorch/pull/167685 2025-12-04T08:42:52.7465012Z [167685] Checking whether to label PR as stale. 2025-12-04T08:42:52.7465389Z [167685] Skipping because PR was updated recently 2025-12-04T08:42:52.7465865Z ##[endgroup] 2025-12-04T08:42:52.7466250Z ##[group]Processing PR #167686 2025-12-04T08:42:52.7466628Z [167686] URL: https://github.com/pytorch/pytorch/pull/167686 2025-12-04T08:42:52.7467042Z [167686] Checking whether to label PR as stale. 2025-12-04T08:42:52.7467419Z [167686] Skipping because PR was updated recently 2025-12-04T08:42:52.7467911Z ##[endgroup] 2025-12-04T08:42:52.7468283Z ##[group]Processing PR #167687 2025-12-04T08:42:52.7468787Z [167687] URL: https://github.com/pytorch/pytorch/pull/167687 2025-12-04T08:42:52.7469217Z [167687] Checking whether to label PR as stale. 2025-12-04T08:42:52.7469586Z [167687] Skipping because PR was updated recently 2025-12-04T08:42:52.7470088Z ##[endgroup] 2025-12-04T08:42:52.7470489Z ##[group]Processing PR #167692 2025-12-04T08:42:52.7470859Z [167692] URL: https://github.com/pytorch/pytorch/pull/167692 2025-12-04T08:42:52.7471288Z [167692] Checking whether to label PR as stale. 2025-12-04T08:42:52.7471651Z [167692] Skipping because PR was updated recently 2025-12-04T08:42:52.7472142Z ##[endgroup] 2025-12-04T08:42:52.7472529Z ##[group]Processing PR #167695 2025-12-04T08:42:52.7472925Z [167695] URL: https://github.com/pytorch/pytorch/pull/167695 2025-12-04T08:42:52.7473332Z [167695] Checking whether to label PR as stale. 2025-12-04T08:42:52.7473717Z [167695] Skipping because PR was updated recently 2025-12-04T08:42:52.7474208Z ##[endgroup] 2025-12-04T08:42:52.7474587Z ##[group]Processing PR #167696 2025-12-04T08:42:52.7474962Z [167696] URL: https://github.com/pytorch/pytorch/pull/167696 2025-12-04T08:42:52.7475382Z [167696] Checking whether to label PR as stale. 2025-12-04T08:42:52.7475752Z [167696] Skipping because PR was updated recently 2025-12-04T08:42:52.7476248Z ##[endgroup] 2025-12-04T08:42:52.7476637Z ##[group]Processing PR #167709 2025-12-04T08:42:52.7476998Z [167709] URL: https://github.com/pytorch/pytorch/pull/167709 2025-12-04T08:42:52.7477421Z [167709] Checking whether to label PR as stale. 2025-12-04T08:42:52.7477781Z [167709] Skipping because PR was updated recently 2025-12-04T08:42:52.7478268Z ##[endgroup] 2025-12-04T08:42:52.7478671Z ##[group]Processing PR #167710 2025-12-04T08:42:52.7479043Z [167710] URL: https://github.com/pytorch/pytorch/pull/167710 2025-12-04T08:42:52.7479452Z [167710] Checking whether to label PR as stale. 2025-12-04T08:42:52.7479829Z [167710] Skipping because PR was updated recently 2025-12-04T08:42:52.7480325Z ##[endgroup] 2025-12-04T08:42:52.7480701Z ##[group]Processing PR #167712 2025-12-04T08:42:52.7481076Z [167712] URL: https://github.com/pytorch/pytorch/pull/167712 2025-12-04T08:42:52.7481484Z [167712] Checking whether to label PR as stale. 2025-12-04T08:42:52.7481868Z [167712] Skipping because PR was updated recently 2025-12-04T08:42:52.7482363Z ##[endgroup] 2025-12-04T08:42:52.7482764Z ##[group]Processing PR #167717 2025-12-04T08:42:52.7483120Z [167717] URL: https://github.com/pytorch/pytorch/pull/167717 2025-12-04T08:42:52.7483550Z [167717] Checking whether to label PR as stale. 2025-12-04T08:42:52.7483913Z [167717] Skipping because PR was updated recently 2025-12-04T08:42:52.7484404Z ##[endgroup] 2025-12-04T08:42:52.7484893Z ##[group]Processing PR #167720 2025-12-04T08:42:52.7485264Z [167720] URL: https://github.com/pytorch/pytorch/pull/167720 2025-12-04T08:42:52.7485675Z [167720] Checking whether to label PR as stale. 2025-12-04T08:42:52.7486058Z [167720] Skipping because PR was updated recently 2025-12-04T08:42:52.7486538Z ##[endgroup] 2025-12-04T08:42:52.7486932Z ##[group]Processing PR #167722 2025-12-04T08:42:52.7487314Z [167722] URL: https://github.com/pytorch/pytorch/pull/167722 2025-12-04T08:42:52.7487725Z [167722] Checking whether to label PR as stale. 2025-12-04T08:42:52.7488110Z [167722] Skipping because PR was updated recently 2025-12-04T08:42:52.7488606Z ##[endgroup] 2025-12-04T08:42:52.7489003Z ##[group]Processing PR #167723 2025-12-04T08:42:52.7489363Z [167723] URL: https://github.com/pytorch/pytorch/pull/167723 2025-12-04T08:42:52.7489795Z [167723] Checking whether to label PR as stale. 2025-12-04T08:42:52.7490170Z [167723] Skipping because PR was updated recently 2025-12-04T08:42:52.7490683Z ##[endgroup] 2025-12-04T08:42:52.7491081Z ##[group]Processing PR #167726 2025-12-04T08:42:52.7491589Z [167726] URL: https://github.com/pytorch/pytorch/pull/167726 2025-12-04T08:42:52.7492020Z [167726] Checking whether to label PR as stale. 2025-12-04T08:42:52.7492409Z [167726] Skipping because PR was updated recently 2025-12-04T08:42:52.7492897Z ##[endgroup] 2025-12-04T08:42:52.7493404Z ##[group]Processing PR #167728 2025-12-04T08:42:52.7493788Z [167728] URL: https://github.com/pytorch/pytorch/pull/167728 2025-12-04T08:42:52.7494203Z [167728] Checking whether to label PR as stale. 2025-12-04T08:42:52.7494588Z [167728] Skipping because PR was updated recently 2025-12-04T08:42:52.7495075Z ##[endgroup] 2025-12-04T08:42:52.7495450Z ##[group]Processing PR #167735 2025-12-04T08:42:52.7495818Z [167735] URL: https://github.com/pytorch/pytorch/pull/167735 2025-12-04T08:42:52.7496235Z [167735] Checking whether to label PR as stale. 2025-12-04T08:42:52.7496596Z [167735] Skipping because PR was updated recently 2025-12-04T08:42:52.7497097Z ##[endgroup] 2025-12-04T08:42:52.7497480Z ##[group]Processing PR #167737 2025-12-04T08:42:52.7497836Z [167737] URL: https://github.com/pytorch/pytorch/pull/167737 2025-12-04T08:42:52.7498258Z [167737] Checking whether to label PR as stale. 2025-12-04T08:42:52.7498620Z [167737] Skipping because PR was updated recently 2025-12-04T08:42:52.7499115Z ##[endgroup] 2025-12-04T08:42:52.7499501Z ##[group]Processing PR #167738 2025-12-04T08:42:52.7499873Z [167738] URL: https://github.com/pytorch/pytorch/pull/167738 2025-12-04T08:42:52.7500293Z [167738] Checking whether to label PR as stale. 2025-12-04T08:42:52.7500671Z [167738] Skipping because PR was updated recently 2025-12-04T08:42:52.7501173Z ##[endgroup] 2025-12-04T08:42:52.7501552Z ##[group]Processing PR #167742 2025-12-04T08:42:52.7501916Z [167742] URL: https://github.com/pytorch/pytorch/pull/167742 2025-12-04T08:42:52.7502342Z [167742] Checking whether to label PR as stale. 2025-12-04T08:42:52.7502708Z [167742] Skipping because PR was updated recently 2025-12-04T08:42:52.7503204Z ##[endgroup] 2025-12-04T08:42:52.7503602Z ##[group]Processing PR #167744 2025-12-04T08:42:52.7503958Z [167744] URL: https://github.com/pytorch/pytorch/pull/167744 2025-12-04T08:42:52.7504382Z [167744] Checking whether to label PR as stale. 2025-12-04T08:42:52.7504746Z [167744] Skipping because PR was updated recently 2025-12-04T08:42:52.7505242Z ##[endgroup] 2025-12-04T08:42:52.7505636Z ##[group]Processing PR #167748 2025-12-04T08:42:52.7506004Z [167748] URL: https://github.com/pytorch/pytorch/pull/167748 2025-12-04T08:42:52.7506413Z [167748] Checking whether to label PR as stale. 2025-12-04T08:42:52.7506801Z [167748] Skipping because PR was updated recently 2025-12-04T08:42:52.7507295Z ##[endgroup] 2025-12-04T08:42:52.7507674Z ##[group]Processing PR #167750 2025-12-04T08:42:52.7508044Z [167750] URL: https://github.com/pytorch/pytorch/pull/167750 2025-12-04T08:42:52.7508450Z [167750] Checking whether to label PR as stale. 2025-12-04T08:42:52.7508833Z [167750] Skipping because PR was updated recently 2025-12-04T08:42:52.7509493Z ##[endgroup] 2025-12-04T08:42:52.7509888Z ##[group]Processing PR #167752 2025-12-04T08:42:52.7510248Z [167752] URL: https://github.com/pytorch/pytorch/pull/167752 2025-12-04T08:42:52.7510675Z [167752] Checking whether to label PR as stale. 2025-12-04T08:42:52.7511041Z [167752] Skipping because PR was updated recently 2025-12-04T08:42:52.7511540Z ##[endgroup] 2025-12-04T08:42:52.7511935Z ##[group]Processing PR #167753 2025-12-04T08:42:52.7512309Z [167753] URL: https://github.com/pytorch/pytorch/pull/167753 2025-12-04T08:42:52.7512714Z [167753] Checking whether to label PR as stale. 2025-12-04T08:42:52.7513099Z [167753] Skipping because PR was updated recently 2025-12-04T08:42:52.7513576Z ##[endgroup] 2025-12-04T08:42:52.7513965Z ##[group]Processing PR #167759 2025-12-04T08:42:52.7514331Z [167759] URL: https://github.com/pytorch/pytorch/pull/167759 2025-12-04T08:42:52.7514739Z [167759] Checking whether to label PR as stale. 2025-12-04T08:42:52.7515124Z [167759] Skipping because PR was updated recently 2025-12-04T08:42:52.7515616Z ##[endgroup] 2025-12-04T08:42:52.7516002Z ##[group]Processing PR #167761 2025-12-04T08:42:52.7516359Z [167761] URL: https://github.com/pytorch/pytorch/pull/167761 2025-12-04T08:42:52.7516787Z [167761] Checking whether to label PR as stale. 2025-12-04T08:42:52.7517154Z [167761] Skipping because PR was updated recently 2025-12-04T08:42:52.7517745Z ##[endgroup] 2025-12-04T08:42:52.7518151Z ##[group]Processing PR #167768 2025-12-04T08:42:52.7518509Z [167768] URL: https://github.com/pytorch/pytorch/pull/167768 2025-12-04T08:42:52.7518929Z [167768] Checking whether to label PR as stale. 2025-12-04T08:42:52.7519306Z [167768] Skipping because PR was updated recently 2025-12-04T08:42:52.7519784Z ##[endgroup] 2025-12-04T08:42:52.7520170Z ##[group]Processing PR #167770 2025-12-04T08:42:52.7520537Z [167770] URL: https://github.com/pytorch/pytorch/pull/167770 2025-12-04T08:42:52.7520946Z [167770] Checking whether to label PR as stale. 2025-12-04T08:42:52.7521354Z [167770] Skipping because PR was updated recently 2025-12-04T08:42:52.7521856Z ##[endgroup] 2025-12-04T08:42:52.7522239Z ##[group]Processing PR #167773 2025-12-04T08:42:52.7522618Z [167773] URL: https://github.com/pytorch/pytorch/pull/167773 2025-12-04T08:42:52.7523038Z [167773] Checking whether to label PR as stale. 2025-12-04T08:42:52.7523417Z [167773] Skipping because PR was updated recently 2025-12-04T08:42:52.7523920Z ##[endgroup] 2025-12-04T08:42:52.7524324Z ##[group]Processing PR #167778 2025-12-04T08:42:52.7524681Z [167778] URL: https://github.com/pytorch/pytorch/pull/167778 2025-12-04T08:42:52.7525105Z [167778] Checking whether to label PR as stale. 2025-12-04T08:42:52.7525473Z [167778] Skipping because PR was updated recently 2025-12-04T08:42:52.7525976Z ##[endgroup] 2025-12-04T08:42:52.7526374Z ##[group]Processing PR #167781 2025-12-04T08:42:52.7526756Z [167781] URL: https://github.com/pytorch/pytorch/pull/167781 2025-12-04T08:42:52.7527167Z [167781] Checking whether to label PR as stale. 2025-12-04T08:42:52.7527556Z [167781] Skipping because PR was updated recently 2025-12-04T08:42:52.7528041Z ##[endgroup] 2025-12-04T08:42:52.7528413Z ##[group]Processing PR #167786 2025-12-04T08:42:52.7528787Z [167786] URL: https://github.com/pytorch/pytorch/pull/167786 2025-12-04T08:42:52.7529213Z [167786] Checking whether to label PR as stale. 2025-12-04T08:42:52.7529576Z [167786] Skipping because PR was updated recently 2025-12-04T08:42:52.7530065Z ##[endgroup] 2025-12-04T08:42:52.7545152Z ##[group]Processing PR #167787 2025-12-04T08:42:52.7545616Z [167787] URL: https://github.com/pytorch/pytorch/pull/167787 2025-12-04T08:42:52.7546050Z [167787] Checking whether to label PR as stale. 2025-12-04T08:42:52.7546445Z [167787] Skipping because PR was updated recently 2025-12-04T08:42:52.7547013Z ##[endgroup] 2025-12-04T08:42:52.7547426Z ##[group]Processing PR #167792 2025-12-04T08:42:52.7547807Z [167792] URL: https://github.com/pytorch/pytorch/pull/167792 2025-12-04T08:42:52.7548228Z [167792] Checking whether to label PR as stale. 2025-12-04T08:42:52.7548967Z [167792] Skipping because PR was updated recently 2025-12-04T08:42:52.7549476Z ##[endgroup] 2025-12-04T08:42:52.7549887Z ##[group]Processing PR #167798 2025-12-04T08:42:52.7550246Z [167798] URL: https://github.com/pytorch/pytorch/pull/167798 2025-12-04T08:42:52.7550678Z [167798] Checking whether to label PR as stale. 2025-12-04T08:42:52.7551063Z [167798] Skipping because PR was updated recently 2025-12-04T08:42:52.7551561Z ##[endgroup] 2025-12-04T08:42:52.7551968Z ##[group]Processing PR #167800 2025-12-04T08:42:52.7552328Z [167800] URL: https://github.com/pytorch/pytorch/pull/167800 2025-12-04T08:42:52.7552753Z [167800] Checking whether to label PR as stale. 2025-12-04T08:42:52.7553135Z [167800] Skipping because PR was updated recently 2025-12-04T08:42:52.7553614Z ##[endgroup] 2025-12-04T08:42:52.7554011Z ##[group]Processing PR #167813 2025-12-04T08:42:52.7554389Z [167813] URL: https://github.com/pytorch/pytorch/pull/167813 2025-12-04T08:42:52.7554802Z [167813] Checking whether to label PR as stale. 2025-12-04T08:42:52.7555184Z [167813] Skipping because PR was updated recently 2025-12-04T08:42:52.7555677Z ##[endgroup] 2025-12-04T08:42:52.7556058Z ##[group]Processing PR #167821 2025-12-04T08:42:52.7556436Z [167821] URL: https://github.com/pytorch/pytorch/pull/167821 2025-12-04T08:42:52.7557071Z [167821] Checking whether to label PR as stale. 2025-12-04T08:42:52.7557641Z [167821] Skipping because PR was updated recently 2025-12-04T08:42:52.7558149Z ##[endgroup] 2025-12-04T08:42:52.7558546Z ##[group]Processing PR #167829 2025-12-04T08:42:52.7558907Z [167829] URL: https://github.com/pytorch/pytorch/pull/167829 2025-12-04T08:42:52.7559333Z [167829] Checking whether to label PR as stale. 2025-12-04T08:42:52.7559703Z [167829] Skipping because PR was updated recently 2025-12-04T08:42:52.7560195Z ##[endgroup] 2025-12-04T08:42:52.7560603Z ##[group]Processing PR #167831 2025-12-04T08:42:52.7560974Z [167831] URL: https://github.com/pytorch/pytorch/pull/167831 2025-12-04T08:42:52.7561392Z [167831] Checking whether to label PR as stale. 2025-12-04T08:42:52.7561777Z [167831] Skipping because PR was updated recently 2025-12-04T08:42:52.7562270Z ##[endgroup] 2025-12-04T08:42:52.7562658Z ##[group]Processing PR #167837 2025-12-04T08:42:52.7563027Z [167837] URL: https://github.com/pytorch/pytorch/pull/167837 2025-12-04T08:42:52.7563455Z [167837] Checking whether to label PR as stale. 2025-12-04T08:42:52.7563823Z [167837] Skipping because PR was updated recently 2025-12-04T08:42:52.7564313Z ##[endgroup] 2025-12-04T08:42:52.7564846Z ##[group]Processing PR #167840 2025-12-04T08:42:52.7565211Z [167840] URL: https://github.com/pytorch/pytorch/pull/167840 2025-12-04T08:42:52.7565648Z [167840] Checking whether to label PR as stale. 2025-12-04T08:42:52.7566025Z [167840] Skipping because PR was updated recently 2025-12-04T08:42:52.7566532Z ##[endgroup] 2025-12-04T08:42:52.7566935Z ##[group]Processing PR #167842 2025-12-04T08:42:52.7567316Z [167842] URL: https://github.com/pytorch/pytorch/pull/167842 2025-12-04T08:42:52.7567928Z [167842] Checking whether to label PR as stale. 2025-12-04T08:42:52.7568501Z [167842] Skipping because PR was updated recently 2025-12-04T08:42:52.7569019Z ##[endgroup] 2025-12-04T08:42:52.7569399Z ##[group]Processing PR #167854 2025-12-04T08:42:52.7569779Z [167854] URL: https://github.com/pytorch/pytorch/pull/167854 2025-12-04T08:42:52.7570199Z [167854] Checking whether to label PR as stale. 2025-12-04T08:42:52.7570589Z [167854] Skipping because PR was updated recently 2025-12-04T08:42:52.7571095Z ##[endgroup] 2025-12-04T08:42:52.7571578Z ##[group]Processing PR #167867 2025-12-04T08:42:52.7571948Z [167867] URL: https://github.com/pytorch/pytorch/pull/167867 2025-12-04T08:42:52.7572375Z [167867] Checking whether to label PR as stale. 2025-12-04T08:42:52.7572746Z [167867] Skipping because PR was updated recently 2025-12-04T08:42:52.7573248Z ##[endgroup] 2025-12-04T08:42:52.7573641Z ##[group]Processing PR #167870 2025-12-04T08:42:52.7574011Z [167870] URL: https://github.com/pytorch/pytorch/pull/167870 2025-12-04T08:42:52.7574609Z [167870] Checking whether to label PR as stale. 2025-12-04T08:42:52.7575001Z [167870] Skipping because PR was updated recently 2025-12-04T08:42:52.7575484Z ##[endgroup] 2025-12-04T08:42:52.7575881Z ##[group]Processing PR #167875 2025-12-04T08:42:52.7576257Z [167875] URL: https://github.com/pytorch/pytorch/pull/167875 2025-12-04T08:42:52.7576679Z [167875] Checking whether to label PR as stale. 2025-12-04T08:42:52.7577059Z [167875] Skipping because PR was updated recently 2025-12-04T08:42:52.7577557Z ##[endgroup] 2025-12-04T08:42:52.7577955Z ##[group]Processing PR #167880 2025-12-04T08:42:52.7578314Z [167880] URL: https://github.com/pytorch/pytorch/pull/167880 2025-12-04T08:42:52.7578764Z [167880] Checking whether to label PR as stale. 2025-12-04T08:42:52.7579274Z [167880] Skipping because PR was updated recently 2025-12-04T08:42:52.7579780Z ##[endgroup] 2025-12-04T08:42:52.7580175Z ##[group]Processing PR #167887 2025-12-04T08:42:52.7580540Z [167887] URL: https://github.com/pytorch/pytorch/pull/167887 2025-12-04T08:42:52.7580962Z [167887] Checking whether to label PR as stale. 2025-12-04T08:42:52.7581351Z [167887] Skipping because PR was updated recently 2025-12-04T08:42:52.7581832Z ##[endgroup] 2025-12-04T08:42:52.7582247Z ##[group]Processing PR #167894 2025-12-04T08:42:52.7582610Z [167894] URL: https://github.com/pytorch/pytorch/pull/167894 2025-12-04T08:42:52.7583170Z [167894] Checking whether to label PR as stale. 2025-12-04T08:42:52.7583543Z [167894] Skipping because PR was updated recently 2025-12-04T08:42:52.7584046Z ##[endgroup] 2025-12-04T08:42:52.7584447Z ##[group]Processing PR #167903 2025-12-04T08:42:52.7584812Z [167903] URL: https://github.com/pytorch/pytorch/pull/167903 2025-12-04T08:42:52.7585245Z [167903] Checking whether to label PR as stale. 2025-12-04T08:42:52.7585617Z [167903] Skipping because PR was updated recently 2025-12-04T08:42:52.7586111Z ##[endgroup] 2025-12-04T08:42:52.7586497Z ##[group]Processing PR #167911 2025-12-04T08:42:52.7586872Z [167911] URL: https://github.com/pytorch/pytorch/pull/167911 2025-12-04T08:42:52.7587284Z [167911] Checking whether to label PR as stale. 2025-12-04T08:42:52.7587662Z [167911] Skipping because PR was updated recently 2025-12-04T08:42:52.7588156Z ##[endgroup] 2025-12-04T08:42:52.7588529Z ##[group]Processing PR #167912 2025-12-04T08:42:52.7588918Z [167912] URL: https://github.com/pytorch/pytorch/pull/167912 2025-12-04T08:42:52.7589344Z [167912] Checking whether to label PR as stale. 2025-12-04T08:42:52.7589924Z [167912] Skipping because PR was updated recently 2025-12-04T08:42:52.7590437Z ##[endgroup] 2025-12-04T08:42:52.7590829Z ##[group]Processing PR #167913 2025-12-04T08:42:52.7591193Z [167913] URL: https://github.com/pytorch/pytorch/pull/167913 2025-12-04T08:42:52.7591629Z [167913] Checking whether to label PR as stale. 2025-12-04T08:42:52.7591993Z [167913] Skipping because PR was updated recently 2025-12-04T08:42:52.7592488Z ##[endgroup] 2025-12-04T08:42:52.7592877Z ##[group]Processing PR #167919 2025-12-04T08:42:52.7593251Z [167919] URL: https://github.com/pytorch/pytorch/pull/167919 2025-12-04T08:42:52.7593663Z [167919] Checking whether to label PR as stale. 2025-12-04T08:42:52.7594039Z [167919] Skipping because PR was updated recently 2025-12-04T08:42:52.7594528Z ##[endgroup] 2025-12-04T08:42:52.7594909Z ##[group]Processing PR #167921 2025-12-04T08:42:52.7595282Z [167921] URL: https://github.com/pytorch/pytorch/pull/167921 2025-12-04T08:42:52.7595696Z [167921] Checking whether to label PR as stale. 2025-12-04T08:42:52.7596080Z [167921] Skipping because PR was updated recently 2025-12-04T08:42:52.7596576Z ##[endgroup] 2025-12-04T08:42:52.7596965Z ##[group]Processing PR #167926 2025-12-04T08:42:52.7597329Z [167926] URL: https://github.com/pytorch/pytorch/pull/167926 2025-12-04T08:42:52.7597750Z [167926] Checking whether to label PR as stale. 2025-12-04T08:42:52.7598114Z [167926] Skipping because PR was updated recently 2025-12-04T08:42:52.7598601Z ##[endgroup] 2025-12-04T08:42:52.7599122Z ##[group]Processing PR #167929 2025-12-04T08:42:52.7599502Z [167929] URL: https://github.com/pytorch/pytorch/pull/167929 2025-12-04T08:42:52.7599918Z [167929] Checking whether to label PR as stale. 2025-12-04T08:42:52.7600305Z [167929] Skipping because PR was updated recently 2025-12-04T08:42:52.7600788Z ##[endgroup] 2025-12-04T08:42:52.7601182Z ##[group]Processing PR #167932 2025-12-04T08:42:52.7601560Z [167932] URL: https://github.com/pytorch/pytorch/pull/167932 2025-12-04T08:42:52.7601972Z [167932] Checking whether to label PR as stale. 2025-12-04T08:42:52.7602348Z [167932] Skipping because PR was updated recently 2025-12-04T08:42:52.7602838Z ##[endgroup] 2025-12-04T08:42:52.7603226Z ##[group]Processing PR #167934 2025-12-04T08:42:52.7603583Z [167934] URL: https://github.com/pytorch/pytorch/pull/167934 2025-12-04T08:42:52.7604002Z [167934] Checking whether to label PR as stale. 2025-12-04T08:42:52.7604369Z [167934] Skipping because PR was updated recently 2025-12-04T08:42:52.7604855Z ##[endgroup] 2025-12-04T08:42:52.7605248Z ##[group]Processing PR #167935 2025-12-04T08:42:52.7605600Z [167935] URL: https://github.com/pytorch/pytorch/pull/167935 2025-12-04T08:42:52.7606018Z [167935] Checking whether to label PR as stale. 2025-12-04T08:42:52.7606401Z [167935] Skipping because PR was updated recently 2025-12-04T08:42:52.7606884Z ##[endgroup] 2025-12-04T08:42:52.7607274Z ##[group]Processing PR #167940 2025-12-04T08:42:52.7607747Z [167940] URL: https://github.com/pytorch/pytorch/pull/167940 2025-12-04T08:42:52.7608158Z [167940] Checking whether to label PR as stale. 2025-12-04T08:42:52.7608543Z [167940] Skipping because PR was updated recently 2025-12-04T08:42:52.7609041Z ##[endgroup] 2025-12-04T08:42:52.7609425Z ##[group]Processing PR #167941 2025-12-04T08:42:52.7609778Z [167941] URL: https://github.com/pytorch/pytorch/pull/167941 2025-12-04T08:42:52.7610194Z [167941] Checking whether to label PR as stale. 2025-12-04T08:42:52.7610556Z [167941] Skipping because PR was updated recently 2025-12-04T08:42:52.7611052Z ##[endgroup] 2025-12-04T08:42:52.7611595Z ##[group]Processing PR #167955 2025-12-04T08:42:52.7611957Z [167955] URL: https://github.com/pytorch/pytorch/pull/167955 2025-12-04T08:42:52.7612391Z [167955] Checking whether to label PR as stale. 2025-12-04T08:42:52.7612770Z [167955] Skipping because PR was updated recently 2025-12-04T08:42:52.7613270Z ##[endgroup] 2025-12-04T08:42:52.7613676Z ##[group]Processing PR #167957 2025-12-04T08:42:52.7614049Z [167957] URL: https://github.com/pytorch/pytorch/pull/167957 2025-12-04T08:42:52.7614457Z [167957] Checking whether to label PR as stale. 2025-12-04T08:42:52.7614842Z [167957] Skipping because PR was updated recently 2025-12-04T08:42:52.7615338Z ##[endgroup] 2025-12-04T08:42:53.7109691Z ##[group]Processing PR #167959 2025-12-04T08:42:53.7110730Z [167959] URL: https://github.com/pytorch/pytorch/pull/167959 2025-12-04T08:42:53.7111826Z [167959] Checking whether to label PR as stale. 2025-12-04T08:42:53.7112761Z [167959] Skipping because PR was updated recently 2025-12-04T08:42:53.7113988Z ##[endgroup] 2025-12-04T08:42:53.7114931Z ##[group]Processing PR #167960 2025-12-04T08:42:53.7115796Z [167960] URL: https://github.com/pytorch/pytorch/pull/167960 2025-12-04T08:42:53.7116782Z [167960] Checking whether to label PR as stale. 2025-12-04T08:42:53.7117628Z [167960] Skipping because PR was updated recently 2025-12-04T08:42:53.7118530Z ##[endgroup] 2025-12-04T08:42:53.7119262Z ##[group]Processing PR #167963 2025-12-04T08:42:53.7119928Z [167963] URL: https://github.com/pytorch/pytorch/pull/167963 2025-12-04T08:42:53.7120706Z [167963] Checking whether to label PR as stale. 2025-12-04T08:42:53.7121313Z [167963] Skipping because PR was updated recently 2025-12-04T08:42:53.7122188Z ##[endgroup] 2025-12-04T08:42:53.7122902Z ##[group]Processing PR #167964 2025-12-04T08:42:53.7123565Z [167964] URL: https://github.com/pytorch/pytorch/pull/167964 2025-12-04T08:42:53.7124311Z [167964] Checking whether to label PR as stale. 2025-12-04T08:42:53.7124997Z [167964] Skipping because PR was updated recently 2025-12-04T08:42:53.7126366Z ##[endgroup] 2025-12-04T08:42:53.7126993Z ##[group]Processing PR #167965 2025-12-04T08:42:53.7127651Z [167965] URL: https://github.com/pytorch/pytorch/pull/167965 2025-12-04T08:42:53.7128412Z [167965] Checking whether to label PR as stale. 2025-12-04T08:42:53.7129107Z [167965] Skipping because PR was updated recently 2025-12-04T08:42:53.7129909Z ##[endgroup] 2025-12-04T08:42:53.7130606Z ##[group]Processing PR #167969 2025-12-04T08:42:53.7131402Z [167969] URL: https://github.com/pytorch/pytorch/pull/167969 2025-12-04T08:42:53.7132194Z [167969] Checking whether to label PR as stale. 2025-12-04T08:42:53.7132822Z [167969] Skipping because PR was updated recently 2025-12-04T08:42:53.7133719Z ##[endgroup] 2025-12-04T08:42:53.7134816Z ##[group]Processing PR #167972 2025-12-04T08:42:53.7135485Z [167972] URL: https://github.com/pytorch/pytorch/pull/167972 2025-12-04T08:42:53.7136178Z [167972] Checking whether to label PR as stale. 2025-12-04T08:42:53.7136858Z [167972] Skipping because PR was updated recently 2025-12-04T08:42:53.7137786Z ##[endgroup] 2025-12-04T08:42:53.7138499Z ##[group]Processing PR #167973 2025-12-04T08:42:53.7139118Z [167973] URL: https://github.com/pytorch/pytorch/pull/167973 2025-12-04T08:42:53.7139877Z [167973] Checking whether to label PR as stale. 2025-12-04T08:42:53.7140567Z [167973] Skipping because PR was updated recently 2025-12-04T08:42:53.7141733Z ##[endgroup] 2025-12-04T08:42:53.7142452Z ##[group]Processing PR #167976 2025-12-04T08:42:53.7143131Z [167976] URL: https://github.com/pytorch/pytorch/pull/167976 2025-12-04T08:42:53.7143934Z [167976] Checking whether to label PR as stale. 2025-12-04T08:42:53.7144506Z [167976] Skipping because PR was updated recently 2025-12-04T08:42:53.7145394Z ##[endgroup] 2025-12-04T08:42:53.7146119Z ##[group]Processing PR #167978 2025-12-04T08:42:53.7148086Z [167978] URL: https://github.com/pytorch/pytorch/pull/167978 2025-12-04T08:42:53.7148948Z [167978] Checking whether to label PR as stale. 2025-12-04T08:42:53.7150034Z [167978] Skipping because PR was updated recently 2025-12-04T08:42:53.7151346Z ##[endgroup] 2025-12-04T08:42:53.7152546Z ##[group]Processing PR #167981 2025-12-04T08:42:53.7153362Z [167981] URL: https://github.com/pytorch/pytorch/pull/167981 2025-12-04T08:42:53.7154273Z [167981] Checking whether to label PR as stale. 2025-12-04T08:42:53.7155292Z [167981] Skipping because PR was updated recently 2025-12-04T08:42:53.7156564Z ##[endgroup] 2025-12-04T08:42:53.7158925Z ##[group]Processing PR #167989 2025-12-04T08:42:53.7159573Z [167989] URL: https://github.com/pytorch/pytorch/pull/167989 2025-12-04T08:42:53.7161601Z [167989] Checking whether to label PR as stale. 2025-12-04T08:42:53.7162412Z [167989] Skipping because PR was updated recently 2025-12-04T08:42:53.7163419Z ##[endgroup] 2025-12-04T08:42:53.7164290Z ##[group]Processing PR #167993 2025-12-04T08:42:53.7164997Z [167993] URL: https://github.com/pytorch/pytorch/pull/167993 2025-12-04T08:42:53.7165842Z [167993] Checking whether to label PR as stale. 2025-12-04T08:42:53.7166707Z [167993] Skipping because PR was updated recently 2025-12-04T08:42:53.7167622Z ##[endgroup] 2025-12-04T08:42:53.7168398Z ##[group]Processing PR #167999 2025-12-04T08:42:53.7169245Z [167999] URL: https://github.com/pytorch/pytorch/pull/167999 2025-12-04T08:42:53.7170026Z [167999] Checking whether to label PR as stale. 2025-12-04T08:42:53.7170891Z [167999] Skipping because PR was updated recently 2025-12-04T08:42:53.7172366Z ##[endgroup] 2025-12-04T08:42:53.7173112Z ##[group]Processing PR #168002 2025-12-04T08:42:53.7173881Z [168002] URL: https://github.com/pytorch/pytorch/pull/168002 2025-12-04T08:42:53.7174774Z [168002] Checking whether to label PR as stale. 2025-12-04T08:42:53.7175470Z [168002] Skipping because PR was updated recently 2025-12-04T08:42:53.7176448Z ##[endgroup] 2025-12-04T08:42:53.7177317Z ##[group]Processing PR #168004 2025-12-04T08:42:53.7178000Z [168004] URL: https://github.com/pytorch/pytorch/pull/168004 2025-12-04T08:42:53.7178837Z [168004] Checking whether to label PR as stale. 2025-12-04T08:42:53.7180100Z [168004] Skipping because PR was updated recently 2025-12-04T08:42:53.7181116Z ##[endgroup] 2025-12-04T08:42:53.7181925Z ##[group]Processing PR #168013 2025-12-04T08:42:53.7182754Z [168013] URL: https://github.com/pytorch/pytorch/pull/168013 2025-12-04T08:42:53.7183556Z [168013] Checking whether to label PR as stale. 2025-12-04T08:42:53.7184339Z [168013] Skipping because PR was updated recently 2025-12-04T08:42:53.7185280Z ##[endgroup] 2025-12-04T08:42:53.7186130Z ##[group]Processing PR #168021 2025-12-04T08:42:53.7186882Z [168021] URL: https://github.com/pytorch/pytorch/pull/168021 2025-12-04T08:42:53.7187574Z [168021] Checking whether to label PR as stale. 2025-12-04T08:42:53.7202414Z [168021] Skipping because PR was updated recently 2025-12-04T08:42:53.7203398Z ##[endgroup] 2025-12-04T08:42:53.7204110Z ##[group]Processing PR #168022 2025-12-04T08:42:53.7204785Z [168022] URL: https://github.com/pytorch/pytorch/pull/168022 2025-12-04T08:42:53.7205577Z [168022] Checking whether to label PR as stale. 2025-12-04T08:42:53.7206317Z [168022] Skipping because PR was updated recently 2025-12-04T08:42:53.7207711Z ##[endgroup] 2025-12-04T08:42:53.7208117Z ##[group]Processing PR #168023 2025-12-04T08:42:53.7208501Z [168023] URL: https://github.com/pytorch/pytorch/pull/168023 2025-12-04T08:42:53.7208916Z [168023] Checking whether to label PR as stale. 2025-12-04T08:42:53.7209505Z [168023] Skipping because PR was updated recently 2025-12-04T08:42:53.7210009Z ##[endgroup] 2025-12-04T08:42:53.7210401Z ##[group]Processing PR #168027 2025-12-04T08:42:53.7210757Z [168027] URL: https://github.com/pytorch/pytorch/pull/168027 2025-12-04T08:42:53.7211185Z [168027] Checking whether to label PR as stale. 2025-12-04T08:42:53.7211716Z [168027] Skipping because PR was updated recently 2025-12-04T08:42:53.7212214Z ##[endgroup] 2025-12-04T08:42:53.7212608Z ##[group]Processing PR #168028 2025-12-04T08:42:53.7212964Z [168028] URL: https://github.com/pytorch/pytorch/pull/168028 2025-12-04T08:42:53.7213402Z [168028] Checking whether to label PR as stale. 2025-12-04T08:42:53.7213778Z [168028] Skipping because PR was updated recently 2025-12-04T08:42:53.7214250Z ##[endgroup] 2025-12-04T08:42:53.7214633Z ##[group]Processing PR #168029 2025-12-04T08:42:53.7215251Z [168029] URL: https://github.com/pytorch/pytorch/pull/168029 2025-12-04T08:42:53.7215698Z [168029] Checking whether to label PR as stale. 2025-12-04T08:42:53.7216081Z [168029] Skipping because PR was updated recently 2025-12-04T08:42:53.7216576Z ##[endgroup] 2025-12-04T08:42:53.7216959Z ##[group]Processing PR #168031 2025-12-04T08:42:53.7217309Z [168031] URL: https://github.com/pytorch/pytorch/pull/168031 2025-12-04T08:42:53.7217730Z [168031] Checking whether to label PR as stale. 2025-12-04T08:42:53.7218093Z [168031] Skipping because PR was updated recently 2025-12-04T08:42:53.7218585Z ##[endgroup] 2025-12-04T08:42:53.7218967Z ##[group]Processing PR #168037 2025-12-04T08:42:53.7219321Z [168037] URL: https://github.com/pytorch/pytorch/pull/168037 2025-12-04T08:42:53.7219756Z [168037] Checking whether to label PR as stale. 2025-12-04T08:42:53.7220132Z [168037] Skipping because PR was updated recently 2025-12-04T08:42:53.7220602Z ##[endgroup] 2025-12-04T08:42:53.7220984Z ##[group]Processing PR #168038 2025-12-04T08:42:53.7221344Z [168038] URL: https://github.com/pytorch/pytorch/pull/168038 2025-12-04T08:42:53.7221760Z [168038] Checking whether to label PR as stale. 2025-12-04T08:42:53.7222135Z [168038] Skipping because PR was updated recently 2025-12-04T08:42:53.7222619Z ##[endgroup] 2025-12-04T08:42:53.7222989Z ##[group]Processing PR #168039 2025-12-04T08:42:53.7223355Z [168039] URL: https://github.com/pytorch/pytorch/pull/168039 2025-12-04T08:42:53.7223776Z [168039] Checking whether to label PR as stale. 2025-12-04T08:42:53.7224137Z [168039] Skipping because PR was updated recently 2025-12-04T08:42:53.7224622Z ##[endgroup] 2025-12-04T08:42:53.7225008Z ##[group]Processing PR #168043 2025-12-04T08:42:53.7225361Z [168043] URL: https://github.com/pytorch/pytorch/pull/168043 2025-12-04T08:42:53.7225915Z [168043] Checking whether to label PR as stale. 2025-12-04T08:42:53.7226283Z [168043] Skipping because PR was updated recently 2025-12-04T08:42:53.7226780Z ##[endgroup] 2025-12-04T08:42:53.7227170Z ##[group]Processing PR #168047 2025-12-04T08:42:53.7227539Z [168047] URL: https://github.com/pytorch/pytorch/pull/168047 2025-12-04T08:42:53.7227947Z [168047] Checking whether to label PR as stale. 2025-12-04T08:42:53.7228323Z [168047] Skipping because PR was updated recently 2025-12-04T08:42:53.7228805Z ##[endgroup] 2025-12-04T08:42:53.7229174Z ##[group]Processing PR #168049 2025-12-04T08:42:53.7229539Z [168049] URL: https://github.com/pytorch/pytorch/pull/168049 2025-12-04T08:42:53.7229979Z [168049] Checking whether to label PR as stale. 2025-12-04T08:42:53.7230340Z [168049] Skipping because PR was updated recently 2025-12-04T08:42:53.7230829Z ##[endgroup] 2025-12-04T08:42:53.7231214Z ##[group]Processing PR #168050 2025-12-04T08:42:53.7231567Z [168050] URL: https://github.com/pytorch/pytorch/pull/168050 2025-12-04T08:42:53.7231993Z [168050] Checking whether to label PR as stale. 2025-12-04T08:42:53.7232374Z [168050] Skipping because PR was updated recently 2025-12-04T08:42:53.7232853Z ##[endgroup] 2025-12-04T08:42:53.7233245Z ##[group]Processing PR #168051 2025-12-04T08:42:53.7233619Z [168051] URL: https://github.com/pytorch/pytorch/pull/168051 2025-12-04T08:42:53.7234738Z [168051] Checking whether to label PR as stale. 2025-12-04T08:42:53.7235126Z [168051] Skipping because PR was updated recently 2025-12-04T08:42:53.7235629Z ##[endgroup] 2025-12-04T08:42:53.7236024Z ##[group]Processing PR #168052 2025-12-04T08:42:53.7236380Z [168052] URL: https://github.com/pytorch/pytorch/pull/168052 2025-12-04T08:42:53.7236801Z [168052] Checking whether to label PR as stale. 2025-12-04T08:42:53.7237165Z [168052] Skipping because PR was updated recently 2025-12-04T08:42:53.7237650Z ##[endgroup] 2025-12-04T08:42:53.7238035Z ##[group]Processing PR #168062 2025-12-04T08:42:53.7238389Z [168062] URL: https://github.com/pytorch/pytorch/pull/168062 2025-12-04T08:42:53.7238811Z [168062] Checking whether to label PR as stale. 2025-12-04T08:42:53.7239308Z [168062] Skipping because PR was updated recently 2025-12-04T08:42:53.7239777Z ##[endgroup] 2025-12-04T08:42:53.7240159Z ##[group]Processing PR #168064 2025-12-04T08:42:53.7240523Z [168064] URL: https://github.com/pytorch/pytorch/pull/168064 2025-12-04T08:42:53.7240934Z [168064] Checking whether to label PR as stale. 2025-12-04T08:42:53.7241311Z [168064] Skipping because PR was updated recently 2025-12-04T08:42:53.7241793Z ##[endgroup] 2025-12-04T08:42:53.7242182Z ##[group]Processing PR #168068 2025-12-04T08:42:53.7242536Z [168068] URL: https://github.com/pytorch/pytorch/pull/168068 2025-12-04T08:42:53.7242956Z [168068] Checking whether to label PR as stale. 2025-12-04T08:42:53.7243323Z [168068] Skipping because PR was updated recently 2025-12-04T08:42:53.7243815Z ##[endgroup] 2025-12-04T08:42:53.7244198Z ##[group]Processing PR #168073 2025-12-04T08:42:53.7244554Z [168073] URL: https://github.com/pytorch/pytorch/pull/168073 2025-12-04T08:42:53.7244979Z [168073] Checking whether to label PR as stale. 2025-12-04T08:42:53.7245341Z [168073] Skipping because PR was updated recently 2025-12-04T08:42:53.7245825Z ##[endgroup] 2025-12-04T08:42:53.7246210Z ##[group]Processing PR #168093 2025-12-04T08:42:53.7246580Z [168093] URL: https://github.com/pytorch/pytorch/pull/168093 2025-12-04T08:42:53.7246985Z [168093] Checking whether to label PR as stale. 2025-12-04T08:42:53.7247358Z [168093] Skipping because PR was updated recently 2025-12-04T08:42:53.7247844Z ##[endgroup] 2025-12-04T08:42:53.7248214Z ##[group]Processing PR #168094 2025-12-04T08:42:53.7248578Z [168094] URL: https://github.com/pytorch/pytorch/pull/168094 2025-12-04T08:42:53.7248996Z [168094] Checking whether to label PR as stale. 2025-12-04T08:42:53.7249361Z [168094] Skipping because PR was updated recently 2025-12-04T08:42:53.7249847Z ##[endgroup] 2025-12-04T08:42:53.7250227Z ##[group]Processing PR #168095 2025-12-04T08:42:53.7250757Z [168095] URL: https://github.com/pytorch/pytorch/pull/168095 2025-12-04T08:42:53.7251182Z [168095] Checking whether to label PR as stale. 2025-12-04T08:42:53.7251702Z [168095] Skipping because PR was updated recently 2025-12-04T08:42:53.7252202Z ##[endgroup] 2025-12-04T08:42:53.7252585Z ##[group]Processing PR #168096 2025-12-04T08:42:53.7252953Z [168096] URL: https://github.com/pytorch/pytorch/pull/168096 2025-12-04T08:42:53.7253359Z [168096] Checking whether to label PR as stale. 2025-12-04T08:42:53.7253735Z [168096] Skipping because PR was updated recently 2025-12-04T08:42:53.7254217Z ##[endgroup] 2025-12-04T08:42:53.7254585Z ##[group]Processing PR #168098 2025-12-04T08:42:53.7254949Z [168098] URL: https://github.com/pytorch/pytorch/pull/168098 2025-12-04T08:42:53.7255354Z [168098] Checking whether to label PR as stale. 2025-12-04T08:42:53.7255728Z [168098] Skipping because PR was updated recently 2025-12-04T08:42:53.7256209Z ##[endgroup] 2025-12-04T08:42:53.7256591Z ##[group]Processing PR #168100 2025-12-04T08:42:53.7256946Z [168100] URL: https://github.com/pytorch/pytorch/pull/168100 2025-12-04T08:42:53.7257369Z [168100] Checking whether to label PR as stale. 2025-12-04T08:42:53.7257730Z [168100] Skipping because PR was updated recently 2025-12-04T08:42:53.7258539Z ##[endgroup] 2025-12-04T08:42:53.7258929Z ##[group]Processing PR #168107 2025-12-04T08:42:53.7259410Z [168107] URL: https://github.com/pytorch/pytorch/pull/168107 2025-12-04T08:42:53.7259816Z [168107] Checking whether to label PR as stale. 2025-12-04T08:42:53.7260195Z [168107] Skipping because PR was updated recently 2025-12-04T08:42:53.7260668Z ##[endgroup] 2025-12-04T08:42:53.7261058Z ##[group]Processing PR #168114 2025-12-04T08:42:53.7261430Z [168114] URL: https://github.com/pytorch/pytorch/pull/168114 2025-12-04T08:42:53.7261835Z [168114] Checking whether to label PR as stale. 2025-12-04T08:42:53.7262210Z [168114] Skipping because PR was updated recently 2025-12-04T08:42:53.7262694Z ##[endgroup] 2025-12-04T08:42:53.7263079Z ##[group]Processing PR #168115 2025-12-04T08:42:53.7263431Z [168115] URL: https://github.com/pytorch/pytorch/pull/168115 2025-12-04T08:42:53.7263849Z [168115] Checking whether to label PR as stale. 2025-12-04T08:42:53.7264212Z [168115] Skipping because PR was updated recently 2025-12-04T08:42:53.7264694Z ##[endgroup] 2025-12-04T08:42:53.7265078Z ##[group]Processing PR #168116 2025-12-04T08:42:53.7265436Z [168116] URL: https://github.com/pytorch/pytorch/pull/168116 2025-12-04T08:42:53.7265859Z [168116] Checking whether to label PR as stale. 2025-12-04T08:42:53.7266238Z [168116] Skipping because PR was updated recently 2025-12-04T08:42:53.7266714Z ##[endgroup] 2025-12-04T08:42:53.7267104Z ##[group]Processing PR #168119 2025-12-04T08:42:53.7267477Z [168119] URL: https://github.com/pytorch/pytorch/pull/168119 2025-12-04T08:42:53.7267889Z [168119] Checking whether to label PR as stale. 2025-12-04T08:42:53.7268270Z [168119] Skipping because PR was updated recently 2025-12-04T08:42:53.7268760Z ##[endgroup] 2025-12-04T08:42:53.7269157Z ##[group]Processing PR #168125 2025-12-04T08:42:53.7269517Z [168125] URL: https://github.com/pytorch/pytorch/pull/168125 2025-12-04T08:42:53.7269947Z [168125] Checking whether to label PR as stale. 2025-12-04T08:42:53.7270315Z [168125] Skipping because PR was updated recently 2025-12-04T08:42:53.7270799Z ##[endgroup] 2025-12-04T08:42:53.7271182Z ##[group]Processing PR #168127 2025-12-04T08:42:53.7271541Z [168127] URL: https://github.com/pytorch/pytorch/pull/168127 2025-12-04T08:42:53.7271961Z [168127] Checking whether to label PR as stale. 2025-12-04T08:42:53.7272325Z [168127] Skipping because PR was updated recently 2025-12-04T08:42:53.7272812Z ##[endgroup] 2025-12-04T08:42:53.7273195Z ##[group]Processing PR #168129 2025-12-04T08:42:53.7273557Z [168129] URL: https://github.com/pytorch/pytorch/pull/168129 2025-12-04T08:42:53.7273960Z [168129] Checking whether to label PR as stale. 2025-12-04T08:42:53.7274334Z [168129] Skipping because PR was updated recently 2025-12-04T08:42:53.7274915Z ##[endgroup] 2025-12-04T08:42:53.7275284Z ##[group]Processing PR #168135 2025-12-04T08:42:53.7275653Z [168135] URL: https://github.com/pytorch/pytorch/pull/168135 2025-12-04T08:42:53.7276072Z [168135] Checking whether to label PR as stale. 2025-12-04T08:42:53.7276434Z [168135] Skipping because PR was updated recently 2025-12-04T08:42:53.7276921Z ##[endgroup] 2025-12-04T08:42:53.7277316Z ##[group]Processing PR #168137 2025-12-04T08:42:53.7277670Z [168137] URL: https://github.com/pytorch/pytorch/pull/168137 2025-12-04T08:42:53.7278096Z [168137] Checking whether to label PR as stale. 2025-12-04T08:42:53.7278463Z [168137] Skipping because PR was updated recently 2025-12-04T08:42:53.7278947Z ##[endgroup] 2025-12-04T08:42:53.7279325Z ##[group]Processing PR #168139 2025-12-04T08:42:53.7279687Z [168139] URL: https://github.com/pytorch/pytorch/pull/168139 2025-12-04T08:42:53.7280091Z [168139] Checking whether to label PR as stale. 2025-12-04T08:42:53.7280465Z [168139] Skipping because PR was updated recently 2025-12-04T08:42:53.7280952Z ##[endgroup] 2025-12-04T08:42:53.7281319Z ##[group]Processing PR #168140 2025-12-04T08:42:53.7281681Z [168140] URL: https://github.com/pytorch/pytorch/pull/168140 2025-12-04T08:42:53.7282089Z [168140] Checking whether to label PR as stale. 2025-12-04T08:42:53.7282468Z [168140] Skipping because PR was updated recently 2025-12-04T08:42:53.7282956Z ##[endgroup] 2025-12-04T08:42:53.7283430Z ##[group]Processing PR #168145 2025-12-04T08:42:53.7283786Z [168145] URL: https://github.com/pytorch/pytorch/pull/168145 2025-12-04T08:42:53.7284205Z [168145] Checking whether to label PR as stale. 2025-12-04T08:42:53.7284567Z [168145] Skipping because PR was updated recently 2025-12-04T08:42:53.7285059Z ##[endgroup] 2025-12-04T08:42:53.7285453Z ##[group]Processing PR #168147 2025-12-04T08:42:53.7285822Z [168147] URL: https://github.com/pytorch/pytorch/pull/168147 2025-12-04T08:42:53.7286230Z [168147] Checking whether to label PR as stale. 2025-12-04T08:42:53.7286603Z [168147] Skipping because PR was updated recently 2025-12-04T08:42:53.7287079Z ##[endgroup] 2025-12-04T08:42:53.7287467Z ##[group]Processing PR #168153 2025-12-04T08:42:53.7287828Z [168153] URL: https://github.com/pytorch/pytorch/pull/168153 2025-12-04T08:42:53.7288229Z [168153] Checking whether to label PR as stale. 2025-12-04T08:42:53.7288603Z [168153] Skipping because PR was updated recently 2025-12-04T08:42:53.7289089Z ##[endgroup] 2025-12-04T08:42:53.7289475Z ##[group]Processing PR #168157 2025-12-04T08:42:53.7289826Z [168157] URL: https://github.com/pytorch/pytorch/pull/168157 2025-12-04T08:42:53.7290239Z [168157] Checking whether to label PR as stale. 2025-12-04T08:42:53.7290598Z [168157] Skipping because PR was updated recently 2025-12-04T08:42:53.7291080Z ##[endgroup] 2025-12-04T08:42:53.7291620Z ##[group]Processing PR #168164 2025-12-04T08:42:53.7291974Z [168164] URL: https://github.com/pytorch/pytorch/pull/168164 2025-12-04T08:42:53.7292393Z [168164] Checking whether to label PR as stale. 2025-12-04T08:42:53.7292774Z [168164] Skipping because PR was updated recently 2025-12-04T08:42:53.7293262Z ##[endgroup] 2025-12-04T08:42:53.7293649Z ##[group]Processing PR #168166 2025-12-04T08:42:53.7294011Z [168166] URL: https://github.com/pytorch/pytorch/pull/168166 2025-12-04T08:42:53.7294417Z [168166] Checking whether to label PR as stale. 2025-12-04T08:42:53.7294797Z [168166] Skipping because PR was updated recently 2025-12-04T08:42:53.7295290Z ##[endgroup] 2025-12-04T08:42:53.7295676Z ##[group]Processing PR #168174 2025-12-04T08:42:53.7296028Z [168174] URL: https://github.com/pytorch/pytorch/pull/168174 2025-12-04T08:42:53.7296446Z [168174] Checking whether to label PR as stale. 2025-12-04T08:42:53.7296809Z [168174] Skipping because PR was updated recently 2025-12-04T08:42:53.7297290Z ##[endgroup] 2025-12-04T08:42:53.7297673Z ##[group]Processing PR #168175 2025-12-04T08:42:53.7298024Z [168175] URL: https://github.com/pytorch/pytorch/pull/168175 2025-12-04T08:42:53.7298443Z [168175] Checking whether to label PR as stale. 2025-12-04T08:42:53.7298990Z [168175] Skipping because PR was updated recently 2025-12-04T08:42:53.7299469Z ##[endgroup] 2025-12-04T08:42:53.7299860Z ##[group]Processing PR #168176 2025-12-04T08:42:53.7300228Z [168176] URL: https://github.com/pytorch/pytorch/pull/168176 2025-12-04T08:42:53.7300639Z [168176] Checking whether to label PR as stale. 2025-12-04T08:42:53.7301015Z [168176] Skipping because PR was updated recently 2025-12-04T08:42:53.7301511Z ##[endgroup] 2025-12-04T08:42:53.7301887Z ##[group]Processing PR #168180 2025-12-04T08:42:53.7302254Z [168180] URL: https://github.com/pytorch/pytorch/pull/168180 2025-12-04T08:42:53.7302676Z [168180] Checking whether to label PR as stale. 2025-12-04T08:42:53.7303042Z [168180] Skipping because PR was updated recently 2025-12-04T08:42:53.7303535Z ##[endgroup] 2025-12-04T08:42:53.7303924Z ##[group]Processing PR #168182 2025-12-04T08:42:53.7304275Z [168182] URL: https://github.com/pytorch/pytorch/pull/168182 2025-12-04T08:42:53.7304692Z [168182] Checking whether to label PR as stale. 2025-12-04T08:42:53.7305057Z [168182] Skipping because PR was updated recently 2025-12-04T08:42:53.7305538Z ##[endgroup] 2025-12-04T08:42:53.7305921Z ##[group]Processing PR #168183 2025-12-04T08:42:53.7306285Z [168183] URL: https://github.com/pytorch/pytorch/pull/168183 2025-12-04T08:42:53.7306688Z [168183] Checking whether to label PR as stale. 2025-12-04T08:42:53.7307136Z [168183] Skipping because PR was updated recently 2025-12-04T08:42:53.7307622Z ##[endgroup] 2025-12-04T08:42:53.7376622Z ##[group]Processing PR #168185 2025-12-04T08:42:53.7377231Z [168185] URL: https://github.com/pytorch/pytorch/pull/168185 2025-12-04T08:42:53.7377770Z [168185] Checking whether to label PR as stale. 2025-12-04T08:42:53.7378158Z [168185] Skipping because PR was updated recently 2025-12-04T08:42:53.7378730Z ##[endgroup] 2025-12-04T08:42:53.7379134Z ##[group]Processing PR #168193 2025-12-04T08:42:53.7379492Z [168193] URL: https://github.com/pytorch/pytorch/pull/168193 2025-12-04T08:42:53.7379923Z [168193] Checking whether to label PR as stale. 2025-12-04T08:42:53.7380315Z [168193] Skipping because PR was updated recently 2025-12-04T08:42:53.7380804Z ##[endgroup] 2025-12-04T08:42:53.7381195Z ##[group]Processing PR #168194 2025-12-04T08:42:53.7381552Z [168194] URL: https://github.com/pytorch/pytorch/pull/168194 2025-12-04T08:42:53.7381980Z [168194] Checking whether to label PR as stale. 2025-12-04T08:42:53.7382367Z [168194] Skipping because PR was updated recently 2025-12-04T08:42:53.7382846Z ##[endgroup] 2025-12-04T08:42:53.7383242Z ##[group]Processing PR #168195 2025-12-04T08:42:53.7383609Z [168195] URL: https://github.com/pytorch/pytorch/pull/168195 2025-12-04T08:42:53.7384018Z [168195] Checking whether to label PR as stale. 2025-12-04T08:42:53.7384397Z [168195] Skipping because PR was updated recently 2025-12-04T08:42:53.7384886Z ##[endgroup] 2025-12-04T08:42:53.7385258Z ##[group]Processing PR #168201 2025-12-04T08:42:53.7385625Z [168201] URL: https://github.com/pytorch/pytorch/pull/168201 2025-12-04T08:42:53.7386049Z [168201] Checking whether to label PR as stale. 2025-12-04T08:42:53.7386413Z [168201] Skipping because PR was updated recently 2025-12-04T08:42:53.7386894Z ##[endgroup] 2025-12-04T08:42:53.7387283Z ##[group]Processing PR #168204 2025-12-04T08:42:53.7387635Z [168204] URL: https://github.com/pytorch/pytorch/pull/168204 2025-12-04T08:42:53.7388055Z [168204] Checking whether to label PR as stale. 2025-12-04T08:42:53.7388422Z [168204] Skipping because PR was updated recently 2025-12-04T08:42:53.7388908Z ##[endgroup] 2025-12-04T08:42:53.7389295Z ##[group]Processing PR #168209 2025-12-04T08:42:53.7389661Z [168209] URL: https://github.com/pytorch/pytorch/pull/168209 2025-12-04T08:42:53.7390069Z [168209] Checking whether to label PR as stale. 2025-12-04T08:42:53.7390447Z [168209] Skipping because PR was updated recently 2025-12-04T08:42:53.7390941Z ##[endgroup] 2025-12-04T08:42:53.7391316Z ##[group]Processing PR #168213 2025-12-04T08:42:53.7391684Z [168213] URL: https://github.com/pytorch/pytorch/pull/168213 2025-12-04T08:42:53.7392467Z [168213] Checking whether to label PR as stale. 2025-12-04T08:42:53.7392845Z [168213] Skipping because PR was updated recently 2025-12-04T08:42:53.7393341Z ##[endgroup] 2025-12-04T08:42:53.7393728Z ##[group]Processing PR #168216 2025-12-04T08:42:53.7394085Z [168216] URL: https://github.com/pytorch/pytorch/pull/168216 2025-12-04T08:42:53.7394503Z [168216] Checking whether to label PR as stale. 2025-12-04T08:42:53.7394873Z [168216] Skipping because PR was updated recently 2025-12-04T08:42:53.7395362Z ##[endgroup] 2025-12-04T08:42:53.7395747Z ##[group]Processing PR #168217 2025-12-04T08:42:53.7396112Z [168217] URL: https://github.com/pytorch/pytorch/pull/168217 2025-12-04T08:42:53.7396517Z [168217] Checking whether to label PR as stale. 2025-12-04T08:42:53.7396897Z [168217] Skipping because PR was updated recently 2025-12-04T08:42:53.7397375Z ##[endgroup] 2025-12-04T08:42:53.7397768Z ##[group]Processing PR #168218 2025-12-04T08:42:53.7398135Z [168218] URL: https://github.com/pytorch/pytorch/pull/168218 2025-12-04T08:42:53.7398547Z [168218] Checking whether to label PR as stale. 2025-12-04T08:42:53.7398927Z [168218] Skipping because PR was updated recently 2025-12-04T08:42:53.7399412Z ##[endgroup] 2025-12-04T08:42:53.7399804Z ##[group]Processing PR #168222 2025-12-04T08:42:53.7400155Z [168222] URL: https://github.com/pytorch/pytorch/pull/168222 2025-12-04T08:42:53.7400687Z [168222] Checking whether to label PR as stale. 2025-12-04T08:42:53.7401056Z [168222] Skipping because PR was updated recently 2025-12-04T08:42:53.7401547Z ##[endgroup] 2025-12-04T08:42:53.7401935Z ##[group]Processing PR #168223 2025-12-04T08:42:53.7402291Z [168223] URL: https://github.com/pytorch/pytorch/pull/168223 2025-12-04T08:42:53.7402718Z [168223] Checking whether to label PR as stale. 2025-12-04T08:42:53.7403098Z [168223] Skipping because PR was updated recently 2025-12-04T08:42:53.7403579Z ##[endgroup] 2025-12-04T08:42:53.7403966Z ##[group]Processing PR #168225 2025-12-04T08:42:53.7404328Z [168225] URL: https://github.com/pytorch/pytorch/pull/168225 2025-12-04T08:42:53.7404740Z [168225] Checking whether to label PR as stale. 2025-12-04T08:42:53.7405113Z [168225] Skipping because PR was updated recently 2025-12-04T08:42:53.7405606Z ##[endgroup] 2025-12-04T08:42:53.7405997Z ##[group]Processing PR #168226 2025-12-04T08:42:53.7406350Z [168226] URL: https://github.com/pytorch/pytorch/pull/168226 2025-12-04T08:42:53.7406773Z [168226] Checking whether to label PR as stale. 2025-12-04T08:42:53.7407134Z [168226] Skipping because PR was updated recently 2025-12-04T08:42:53.7407623Z ##[endgroup] 2025-12-04T08:42:53.7408021Z ##[group]Processing PR #168232 2025-12-04T08:42:53.7408378Z [168232] URL: https://github.com/pytorch/pytorch/pull/168232 2025-12-04T08:42:53.7408804Z [168232] Checking whether to label PR as stale. 2025-12-04T08:42:53.7409187Z [168232] Skipping because PR was updated recently 2025-12-04T08:42:53.7409662Z ##[endgroup] 2025-12-04T08:42:53.7410049Z ##[group]Processing PR #168237 2025-12-04T08:42:53.7410416Z [168237] URL: https://github.com/pytorch/pytorch/pull/168237 2025-12-04T08:42:53.7410830Z [168237] Checking whether to label PR as stale. 2025-12-04T08:42:53.7411207Z [168237] Skipping because PR was updated recently 2025-12-04T08:42:53.7411876Z ##[endgroup] 2025-12-04T08:42:53.7412256Z ##[group]Processing PR #168248 2025-12-04T08:42:53.7412635Z [168248] URL: https://github.com/pytorch/pytorch/pull/168248 2025-12-04T08:42:53.7413064Z [168248] Checking whether to label PR as stale. 2025-12-04T08:42:53.7413425Z [168248] Skipping because PR was updated recently 2025-12-04T08:42:53.7413913Z ##[endgroup] 2025-12-04T08:42:53.7414292Z ##[group]Processing PR #168252 2025-12-04T08:42:53.7414660Z [168252] URL: https://github.com/pytorch/pytorch/pull/168252 2025-12-04T08:42:53.7415066Z [168252] Checking whether to label PR as stale. 2025-12-04T08:42:53.7415441Z [168252] Skipping because PR was updated recently 2025-12-04T08:42:53.7415928Z ##[endgroup] 2025-12-04T08:42:53.7416302Z ##[group]Processing PR #168259 2025-12-04T08:42:53.7416806Z [168259] URL: https://github.com/pytorch/pytorch/pull/168259 2025-12-04T08:42:53.7417215Z [168259] Checking whether to label PR as stale. 2025-12-04T08:42:53.7417595Z [168259] Skipping because PR was updated recently 2025-12-04T08:42:53.7418089Z ##[endgroup] 2025-12-04T08:42:53.7418483Z ##[group]Processing PR #168261 2025-12-04T08:42:53.7418837Z [168261] URL: https://github.com/pytorch/pytorch/pull/168261 2025-12-04T08:42:53.7419259Z [168261] Checking whether to label PR as stale. 2025-12-04T08:42:53.7419623Z [168261] Skipping because PR was updated recently 2025-12-04T08:42:53.7420108Z ##[endgroup] 2025-12-04T08:42:53.7420496Z ##[group]Processing PR #168262 2025-12-04T08:42:53.7420858Z [168262] URL: https://github.com/pytorch/pytorch/pull/168262 2025-12-04T08:42:53.7421264Z [168262] Checking whether to label PR as stale. 2025-12-04T08:42:53.7421638Z [168262] Skipping because PR was updated recently 2025-12-04T08:42:53.7422106Z ##[endgroup] 2025-12-04T08:42:53.7422486Z ##[group]Processing PR #168266 2025-12-04T08:42:53.7422856Z [168266] URL: https://github.com/pytorch/pytorch/pull/168266 2025-12-04T08:42:53.7423261Z [168266] Checking whether to label PR as stale. 2025-12-04T08:42:53.7423637Z [168266] Skipping because PR was updated recently 2025-12-04T08:42:53.7424115Z ##[endgroup] 2025-12-04T08:42:53.7424494Z ##[group]Processing PR #168267 2025-12-04T08:42:53.7424931Z [168267] URL: https://github.com/pytorch/pytorch/pull/168267 2025-12-04T08:42:53.7425353Z [168267] Checking whether to label PR as stale. 2025-12-04T08:42:53.7425714Z [168267] Skipping because PR was updated recently 2025-12-04T08:42:53.7426203Z ##[endgroup] 2025-12-04T08:42:53.7426585Z ##[group]Processing PR #168273 2025-12-04T08:42:53.7426936Z [168273] URL: https://github.com/pytorch/pytorch/pull/168273 2025-12-04T08:42:53.7427353Z [168273] Checking whether to label PR as stale. 2025-12-04T08:42:53.7427729Z [168273] Skipping because PR was updated recently 2025-12-04T08:42:53.7428203Z ##[endgroup] 2025-12-04T08:42:53.7428582Z ##[group]Processing PR #168275 2025-12-04T08:42:53.7428960Z [168275] URL: https://github.com/pytorch/pytorch/pull/168275 2025-12-04T08:42:53.7429566Z [168275] Checking whether to label PR as stale. 2025-12-04T08:42:53.7429961Z [168275] Skipping because PR was updated recently 2025-12-04T08:42:53.7430459Z ##[endgroup] 2025-12-04T08:42:53.7430959Z ##[group]Processing PR #168285 2025-12-04T08:42:53.7431320Z [168285] URL: https://github.com/pytorch/pytorch/pull/168285 2025-12-04T08:42:53.7431740Z [168285] Checking whether to label PR as stale. 2025-12-04T08:42:53.7432101Z [168285] Skipping because PR was updated recently 2025-12-04T08:42:53.7432586Z ##[endgroup] 2025-12-04T08:42:53.7432971Z ##[group]Processing PR #168286 2025-12-04T08:42:53.7433320Z [168286] URL: https://github.com/pytorch/pytorch/pull/168286 2025-12-04T08:42:53.7434089Z [168286] Checking whether to label PR as stale. 2025-12-04T08:42:53.7434557Z [168286] Skipping because PR was updated recently 2025-12-04T08:42:53.7435044Z ##[endgroup] 2025-12-04T08:42:53.7435444Z ##[group]Processing PR #168287 2025-12-04T08:42:53.7435821Z [168287] URL: https://github.com/pytorch/pytorch/pull/168287 2025-12-04T08:42:53.7436230Z [168287] Checking whether to label PR as stale. 2025-12-04T08:42:53.7436606Z [168287] Skipping because PR was updated recently 2025-12-04T08:42:53.7437092Z ##[endgroup] 2025-12-04T08:42:53.7437465Z ##[group]Processing PR #168290 2025-12-04T08:42:53.7437835Z [168290] URL: https://github.com/pytorch/pytorch/pull/168290 2025-12-04T08:42:53.7438253Z [168290] Checking whether to label PR as stale. 2025-12-04T08:42:53.7438613Z [168290] Skipping because PR was updated recently 2025-12-04T08:42:53.7439098Z ##[endgroup] 2025-12-04T08:42:53.7439479Z ##[group]Processing PR #168296 2025-12-04T08:42:53.7439830Z [168296] URL: https://github.com/pytorch/pytorch/pull/168296 2025-12-04T08:42:53.7440405Z [168296] Checking whether to label PR as stale. 2025-12-04T08:42:53.7440854Z [168296] Skipping because PR was updated recently 2025-12-04T08:42:53.7441346Z ##[endgroup] 2025-12-04T08:42:53.7441947Z ##[group]Processing PR #168300 2025-12-04T08:42:53.7442317Z [168300] URL: https://github.com/pytorch/pytorch/pull/168300 2025-12-04T08:42:53.7442727Z [168300] Checking whether to label PR as stale. 2025-12-04T08:42:53.7443106Z [168300] Skipping because PR was updated recently 2025-12-04T08:42:53.7443592Z ##[endgroup] 2025-12-04T08:42:53.7443962Z ##[group]Processing PR #168301 2025-12-04T08:42:53.7444331Z [168301] URL: https://github.com/pytorch/pytorch/pull/168301 2025-12-04T08:42:53.7444749Z [168301] Checking whether to label PR as stale. 2025-12-04T08:42:53.7445108Z [168301] Skipping because PR was updated recently 2025-12-04T08:42:53.7445594Z ##[endgroup] 2025-12-04T08:42:54.7864317Z ##[group]Processing PR #168309 2025-12-04T08:42:54.7864991Z [168309] URL: https://github.com/pytorch/pytorch/pull/168309 2025-12-04T08:42:54.7865698Z [168309] Checking whether to label PR as stale. 2025-12-04T08:42:54.7866313Z [168309] Skipping because PR was updated recently 2025-12-04T08:42:54.7867200Z ##[endgroup] 2025-12-04T08:42:54.7867846Z ##[group]Processing PR #168312 2025-12-04T08:42:54.7868454Z [168312] URL: https://github.com/pytorch/pytorch/pull/168312 2025-12-04T08:42:54.7869501Z [168312] Checking whether to label PR as stale. 2025-12-04T08:42:54.7870290Z [168312] Skipping because PR was updated recently 2025-12-04T08:42:54.7871235Z ##[endgroup] 2025-12-04T08:42:54.7872423Z ##[group]Processing PR #168313 2025-12-04T08:42:54.7873246Z [168313] URL: https://github.com/pytorch/pytorch/pull/168313 2025-12-04T08:42:54.7874071Z [168313] Checking whether to label PR as stale. 2025-12-04T08:42:54.7874809Z [168313] Skipping because PR was updated recently 2025-12-04T08:42:54.7875780Z ##[endgroup] 2025-12-04T08:42:54.7876555Z ##[group]Processing PR #168316 2025-12-04T08:42:54.7877284Z [168316] URL: https://github.com/pytorch/pytorch/pull/168316 2025-12-04T08:42:54.7878110Z [168316] Checking whether to label PR as stale. 2025-12-04T08:42:54.7878863Z [168316] Skipping because PR was updated recently 2025-12-04T08:42:54.7879839Z ##[endgroup] 2025-12-04T08:42:54.7880631Z ##[group]Processing PR #168318 2025-12-04T08:42:54.7881373Z [168318] URL: https://github.com/pytorch/pytorch/pull/168318 2025-12-04T08:42:54.7882186Z [168318] Checking whether to label PR as stale. 2025-12-04T08:42:54.7882929Z [168318] Skipping because PR was updated recently 2025-12-04T08:42:54.7883889Z ##[endgroup] 2025-12-04T08:42:54.7884683Z ##[group]Processing PR #168321 2025-12-04T08:42:54.7885409Z [168321] URL: https://github.com/pytorch/pytorch/pull/168321 2025-12-04T08:42:54.7886231Z [168321] Checking whether to label PR as stale. 2025-12-04T08:42:54.7886982Z [168321] Skipping because PR was updated recently 2025-12-04T08:42:54.7887904Z ##[endgroup] 2025-12-04T08:42:54.7888690Z ##[group]Processing PR #168323 2025-12-04T08:42:54.7889445Z [168323] URL: https://github.com/pytorch/pytorch/pull/168323 2025-12-04T08:42:54.7890271Z [168323] Checking whether to label PR as stale. 2025-12-04T08:42:54.7891029Z [168323] Skipping because PR was updated recently 2025-12-04T08:42:54.7892129Z ##[endgroup] 2025-12-04T08:42:54.7892895Z ##[group]Processing PR #168324 2025-12-04T08:42:54.7893623Z [168324] URL: https://github.com/pytorch/pytorch/pull/168324 2025-12-04T08:42:54.7894447Z [168324] Checking whether to label PR as stale. 2025-12-04T08:42:54.7895204Z [168324] Skipping because PR was updated recently 2025-12-04T08:42:54.7896132Z ##[endgroup] 2025-12-04T08:42:54.7896904Z ##[group]Processing PR #168326 2025-12-04T08:42:54.7897499Z [168326] URL: https://github.com/pytorch/pytorch/pull/168326 2025-12-04T08:42:54.7923742Z [168326] Checking whether to label PR as stale. 2025-12-04T08:42:54.7924633Z [168326] Skipping because PR was updated recently 2025-12-04T08:42:54.7925725Z ##[endgroup] 2025-12-04T08:42:54.7926497Z ##[group]Processing PR #168328 2025-12-04T08:42:54.7927171Z [168328] URL: https://github.com/pytorch/pytorch/pull/168328 2025-12-04T08:42:54.7927975Z [168328] Checking whether to label PR as stale. 2025-12-04T08:42:54.7928737Z [168328] Skipping because PR was updated recently 2025-12-04T08:42:54.7930128Z ##[endgroup] 2025-12-04T08:42:54.7930939Z ##[group]Processing PR #168331 2025-12-04T08:42:54.7931880Z [168331] URL: https://github.com/pytorch/pytorch/pull/168331 2025-12-04T08:42:54.7935196Z [168331] Checking whether to label PR as stale. 2025-12-04T08:42:54.7935925Z [168331] Skipping because PR was updated recently 2025-12-04T08:42:54.7936863Z ##[endgroup] 2025-12-04T08:42:54.7937590Z ##[group]Processing PR #168333 2025-12-04T08:42:54.7938259Z [168333] URL: https://github.com/pytorch/pytorch/pull/168333 2025-12-04T08:42:54.7939066Z [168333] Checking whether to label PR as stale. 2025-12-04T08:42:54.7939777Z [168333] Skipping because PR was updated recently 2025-12-04T08:42:54.7940627Z ##[endgroup] 2025-12-04T08:42:54.7941336Z ##[group]Processing PR #168336 2025-12-04T08:42:54.7942019Z [168336] URL: https://github.com/pytorch/pytorch/pull/168336 2025-12-04T08:42:54.7942809Z [168336] Checking whether to label PR as stale. 2025-12-04T08:42:54.7943512Z [168336] Skipping because PR was updated recently 2025-12-04T08:42:54.7944395Z ##[endgroup] 2025-12-04T08:42:54.7945098Z ##[group]Processing PR #168337 2025-12-04T08:42:54.7945786Z [168337] URL: https://github.com/pytorch/pytorch/pull/168337 2025-12-04T08:42:54.7946543Z [168337] Checking whether to label PR as stale. 2025-12-04T08:42:54.7947226Z [168337] Skipping because PR was updated recently 2025-12-04T08:42:54.7948476Z ##[endgroup] 2025-12-04T08:42:54.7949190Z ##[group]Processing PR #168338 2025-12-04T08:42:54.7949759Z [168338] URL: https://github.com/pytorch/pytorch/pull/168338 2025-12-04T08:42:54.7950540Z [168338] Checking whether to label PR as stale. 2025-12-04T08:42:54.7951252Z [168338] Skipping because PR was updated recently 2025-12-04T08:42:54.7952106Z ##[endgroup] 2025-12-04T08:42:54.7952828Z ##[group]Processing PR #168339 2025-12-04T08:42:54.7953500Z [168339] URL: https://github.com/pytorch/pytorch/pull/168339 2025-12-04T08:42:54.7954247Z [168339] Checking whether to label PR as stale. 2025-12-04T08:42:54.7954961Z [168339] Skipping because PR was updated recently 2025-12-04T08:42:54.7955892Z ##[endgroup] 2025-12-04T08:42:54.7956600Z ##[group]Processing PR #168344 2025-12-04T08:42:54.7957287Z [168344] URL: https://github.com/pytorch/pytorch/pull/168344 2025-12-04T08:42:54.7958084Z [168344] Checking whether to label PR as stale. 2025-12-04T08:42:54.7958804Z [168344] Skipping because PR was updated recently 2025-12-04T08:42:54.7959712Z ##[endgroup] 2025-12-04T08:42:54.7960416Z ##[group]Processing PR #168345 2025-12-04T08:42:54.7961069Z [168345] URL: https://github.com/pytorch/pytorch/pull/168345 2025-12-04T08:42:54.7961863Z [168345] Checking whether to label PR as stale. 2025-12-04T08:42:54.7962466Z [168345] Skipping because PR was updated recently 2025-12-04T08:42:54.7963297Z ##[endgroup] 2025-12-04T08:42:54.7963970Z ##[group]Processing PR #168347 2025-12-04T08:42:54.7964545Z [168347] URL: https://github.com/pytorch/pytorch/pull/168347 2025-12-04T08:42:54.7965006Z [168347] Checking whether to label PR as stale. 2025-12-04T08:42:54.7965399Z [168347] Skipping because PR was updated recently 2025-12-04T08:42:54.7965900Z ##[endgroup] 2025-12-04T08:42:54.7966280Z ##[group]Processing PR #168348 2025-12-04T08:42:54.7966651Z [168348] URL: https://github.com/pytorch/pytorch/pull/168348 2025-12-04T08:42:54.7967076Z [168348] Checking whether to label PR as stale. 2025-12-04T08:42:54.7967451Z [168348] Skipping because PR was updated recently 2025-12-04T08:42:54.7967940Z ##[endgroup] 2025-12-04T08:42:54.7968326Z ##[group]Processing PR #168354 2025-12-04T08:42:54.7968679Z [168354] URL: https://github.com/pytorch/pytorch/pull/168354 2025-12-04T08:42:54.7969099Z [168354] Checking whether to label PR as stale. 2025-12-04T08:42:54.7969464Z [168354] Skipping because PR was updated recently 2025-12-04T08:42:54.7969948Z ##[endgroup] 2025-12-04T08:42:54.7970332Z ##[group]Processing PR #168357 2025-12-04T08:42:54.7970698Z [168357] URL: https://github.com/pytorch/pytorch/pull/168357 2025-12-04T08:42:54.7971103Z [168357] Checking whether to label PR as stale. 2025-12-04T08:42:54.7971986Z [168357] Skipping because PR was updated recently 2025-12-04T08:42:54.7972481Z ##[endgroup] 2025-12-04T08:42:54.7972858Z ##[group]Processing PR #168363 2025-12-04T08:42:54.7973229Z [168363] URL: https://github.com/pytorch/pytorch/pull/168363 2025-12-04T08:42:54.7973636Z [168363] Checking whether to label PR as stale. 2025-12-04T08:42:54.7974018Z [168363] Skipping because PR was updated recently 2025-12-04T08:42:54.7974507Z ##[endgroup] 2025-12-04T08:42:54.7974889Z ##[group]Processing PR #168364 2025-12-04T08:42:54.7975240Z [168364] URL: https://github.com/pytorch/pytorch/pull/168364 2025-12-04T08:42:54.7975658Z [168364] Checking whether to label PR as stale. 2025-12-04T08:42:54.7976016Z [168364] Skipping because PR was updated recently 2025-12-04T08:42:54.7976501Z ##[endgroup] 2025-12-04T08:42:54.7976886Z ##[group]Processing PR #168368 2025-12-04T08:42:54.7977248Z [168368] URL: https://github.com/pytorch/pytorch/pull/168368 2025-12-04T08:42:54.7977659Z [168368] Checking whether to label PR as stale. 2025-12-04T08:42:54.7978031Z [168368] Skipping because PR was updated recently 2025-12-04T08:42:54.7978503Z ##[endgroup] 2025-12-04T08:42:54.7978891Z ##[group]Processing PR #168375 2025-12-04T08:42:54.7979257Z [168375] URL: https://github.com/pytorch/pytorch/pull/168375 2025-12-04T08:42:54.7979663Z [168375] Checking whether to label PR as stale. 2025-12-04T08:42:54.7980125Z [168375] Skipping because PR was updated recently 2025-12-04T08:42:54.7980611Z ##[endgroup] 2025-12-04T08:42:54.7980993Z ##[group]Processing PR #168377 2025-12-04T08:42:54.7981346Z [168377] URL: https://github.com/pytorch/pytorch/pull/168377 2025-12-04T08:42:54.7981762Z [168377] Checking whether to label PR as stale. 2025-12-04T08:42:54.7982121Z [168377] Skipping because PR was updated recently 2025-12-04T08:42:54.7982603Z ##[endgroup] 2025-12-04T08:42:54.7982986Z ##[group]Processing PR #168380 2025-12-04T08:42:54.7983339Z [168380] URL: https://github.com/pytorch/pytorch/pull/168380 2025-12-04T08:42:54.7983762Z [168380] Checking whether to label PR as stale. 2025-12-04T08:42:54.7984139Z [168380] Skipping because PR was updated recently 2025-12-04T08:42:54.7984616Z ##[endgroup] 2025-12-04T08:42:54.7984999Z ##[group]Processing PR #168385 2025-12-04T08:42:54.7985363Z [168385] URL: https://github.com/pytorch/pytorch/pull/168385 2025-12-04T08:42:54.7985771Z [168385] Checking whether to label PR as stale. 2025-12-04T08:42:54.7986143Z [168385] Skipping because PR was updated recently 2025-12-04T08:42:54.7986628Z ##[endgroup] 2025-12-04T08:42:54.7987009Z ##[group]Processing PR #168390 2025-12-04T08:42:54.7987360Z [168390] URL: https://github.com/pytorch/pytorch/pull/168390 2025-12-04T08:42:54.7987777Z [168390] Checking whether to label PR as stale. 2025-12-04T08:42:54.7988137Z [168390] Skipping because PR was updated recently 2025-12-04T08:42:54.7988620Z ##[endgroup] 2025-12-04T08:42:54.7988999Z ##[group]Processing PR #168889 2025-12-04T08:42:54.7989350Z [168889] URL: https://github.com/pytorch/pytorch/pull/168889 2025-12-04T08:42:54.7989777Z [168889] Checking whether to label PR as stale. 2025-12-04T08:42:54.7990136Z [168889] Skipping because PR was updated recently 2025-12-04T08:42:54.7990657Z ##[endgroup] 2025-12-04T08:42:54.7991029Z ##[group]Processing PR #168891 2025-12-04T08:42:54.7991394Z [168891] URL: https://github.com/pytorch/pytorch/pull/168891 2025-12-04T08:42:54.7991805Z [168891] Checking whether to label PR as stale. 2025-12-04T08:42:54.7992180Z [168891] Skipping because PR was updated recently 2025-12-04T08:42:54.7992669Z ##[endgroup] 2025-12-04T08:42:54.7993061Z ##[group]Processing PR #168894 2025-12-04T08:42:54.7993417Z [168894] URL: https://github.com/pytorch/pytorch/pull/168894 2025-12-04T08:42:54.7993896Z [168894] Checking whether to label PR as stale. 2025-12-04T08:42:54.7994418Z [168894] Skipping because PR was updated recently 2025-12-04T08:42:54.7994921Z ##[endgroup] 2025-12-04T08:42:54.7995316Z ##[group]Processing PR #168895 2025-12-04T08:42:54.7995671Z [168895] URL: https://github.com/pytorch/pytorch/pull/168895 2025-12-04T08:42:54.7996210Z [168895] Checking whether to label PR as stale. 2025-12-04T08:42:54.7996589Z [168895] Skipping because PR was updated recently 2025-12-04T08:42:54.7997064Z ##[endgroup] 2025-12-04T08:42:54.7997453Z ##[group]Processing PR #168896 2025-12-04T08:42:54.7997818Z [168896] URL: https://github.com/pytorch/pytorch/pull/168896 2025-12-04T08:42:54.7998228Z [168896] Checking whether to label PR as stale. 2025-12-04T08:42:54.7998601Z [168896] Skipping because PR was updated recently 2025-12-04T08:42:54.7999083Z ##[endgroup] 2025-12-04T08:42:54.7999464Z ##[group]Processing PR #168899 2025-12-04T08:42:54.7999813Z [168899] URL: https://github.com/pytorch/pytorch/pull/168899 2025-12-04T08:42:54.8000232Z [168899] Checking whether to label PR as stale. 2025-12-04T08:42:54.8000594Z [168899] Skipping because PR was updated recently 2025-12-04T08:42:54.8001076Z ##[endgroup] 2025-12-04T08:42:54.8001459Z ##[group]Processing PR #168900 2025-12-04T08:42:54.8001813Z [168900] URL: https://github.com/pytorch/pytorch/pull/168900 2025-12-04T08:42:54.8002234Z [168900] Checking whether to label PR as stale. 2025-12-04T08:42:54.8002611Z [168900] Skipping because PR was updated recently 2025-12-04T08:42:54.8003082Z ##[endgroup] 2025-12-04T08:42:54.8003468Z ##[group]Processing PR #168901 2025-12-04T08:42:54.8003833Z [168901] URL: https://github.com/pytorch/pytorch/pull/168901 2025-12-04T08:42:54.8004326Z [168901] Checking whether to label PR as stale. 2025-12-04T08:42:54.8004704Z [168901] Skipping because PR was updated recently 2025-12-04T08:42:54.8005185Z ##[endgroup] 2025-12-04T08:42:54.8005557Z ##[group]Processing PR #168904 2025-12-04T08:42:54.8005920Z [168904] URL: https://github.com/pytorch/pytorch/pull/168904 2025-12-04T08:42:54.8006340Z [168904] Checking whether to label PR as stale. 2025-12-04T08:42:54.8006703Z [168904] Skipping because PR was updated recently 2025-12-04T08:42:54.8007185Z ##[endgroup] 2025-12-04T08:42:54.8007570Z ##[group]Processing PR #168905 2025-12-04T08:42:54.8007930Z [168905] URL: https://github.com/pytorch/pytorch/pull/168905 2025-12-04T08:42:54.8008348Z [168905] Checking whether to label PR as stale. 2025-12-04T08:42:54.8008707Z [168905] Skipping because PR was updated recently 2025-12-04T08:42:54.8009193Z ##[endgroup] 2025-12-04T08:42:54.8009577Z ##[group]Processing PR #168906 2025-12-04T08:42:54.8009948Z [168906] URL: https://github.com/pytorch/pytorch/pull/168906 2025-12-04T08:42:54.8010356Z [168906] Checking whether to label PR as stale. 2025-12-04T08:42:54.8010731Z [168906] Skipping because PR was updated recently 2025-12-04T08:42:54.8011218Z ##[endgroup] 2025-12-04T08:42:54.8011716Z ##[group]Processing PR #168910 2025-12-04T08:42:54.8012085Z [168910] URL: https://github.com/pytorch/pytorch/pull/168910 2025-12-04T08:42:54.8012510Z [168910] Checking whether to label PR as stale. 2025-12-04T08:42:54.8012871Z [168910] Skipping because PR was updated recently 2025-12-04T08:42:54.8013358Z ##[endgroup] 2025-12-04T08:42:54.8013745Z ##[group]Processing PR #168912 2025-12-04T08:42:54.8014106Z [168912] URL: https://github.com/pytorch/pytorch/pull/168912 2025-12-04T08:42:54.8014528Z [168912] Checking whether to label PR as stale. 2025-12-04T08:42:54.8014887Z [168912] Skipping because PR was updated recently 2025-12-04T08:42:54.8015370Z ##[endgroup] 2025-12-04T08:42:54.8015752Z ##[group]Processing PR #168913 2025-12-04T08:42:54.8016121Z [168913] URL: https://github.com/pytorch/pytorch/pull/168913 2025-12-04T08:42:54.8016529Z [168913] Checking whether to label PR as stale. 2025-12-04T08:42:54.8016906Z [168913] Skipping because PR was updated recently 2025-12-04T08:42:54.8017396Z ##[endgroup] 2025-12-04T08:42:54.8017764Z ##[group]Processing PR #168917 2025-12-04T08:42:54.8018129Z [168917] URL: https://github.com/pytorch/pytorch/pull/168917 2025-12-04T08:42:54.8018532Z [168917] Checking whether to label PR as stale. 2025-12-04T08:42:54.8018906Z [168917] Skipping because PR was updated recently 2025-12-04T08:42:54.8019392Z ##[endgroup] 2025-12-04T08:42:54.8019877Z ##[group]Processing PR #168921 2025-12-04T08:42:54.8020229Z [168921] URL: https://github.com/pytorch/pytorch/pull/168921 2025-12-04T08:42:54.8020650Z [168921] Checking whether to label PR as stale. 2025-12-04T08:42:54.8021016Z [168921] Skipping because PR was updated recently 2025-12-04T08:42:54.8021510Z ##[endgroup] 2025-12-04T08:42:54.8021890Z ##[group]Processing PR #168922 2025-12-04T08:42:54.8022246Z [168922] URL: https://github.com/pytorch/pytorch/pull/168922 2025-12-04T08:42:54.8022665Z [168922] Checking whether to label PR as stale. 2025-12-04T08:42:54.8023041Z [168922] Skipping because PR was updated recently 2025-12-04T08:42:54.8023513Z ##[endgroup] 2025-12-04T08:42:54.8023893Z ##[group]Processing PR #168923 2025-12-04T08:42:54.8024258Z [168923] URL: https://github.com/pytorch/pytorch/pull/168923 2025-12-04T08:42:54.8024666Z [168923] Checking whether to label PR as stale. 2025-12-04T08:42:54.8025042Z [168923] Skipping because PR was updated recently 2025-12-04T08:42:54.8025528Z ##[endgroup] 2025-12-04T08:42:54.8025919Z ##[group]Processing PR #168933 2025-12-04T08:42:54.8026274Z [168933] URL: https://github.com/pytorch/pytorch/pull/168933 2025-12-04T08:42:54.8026698Z [168933] Checking whether to label PR as stale. 2025-12-04T08:42:54.8027063Z [168933] Skipping because PR was updated recently 2025-12-04T08:42:54.8027554Z ##[endgroup] 2025-12-04T08:42:54.8027944Z ##[group]Processing PR #168934 2025-12-04T08:42:54.8028403Z [168934] URL: https://github.com/pytorch/pytorch/pull/168934 2025-12-04T08:42:54.8028825Z [168934] Checking whether to label PR as stale. 2025-12-04T08:42:54.8029204Z [168934] Skipping because PR was updated recently 2025-12-04T08:42:54.8029682Z ##[endgroup] 2025-12-04T08:42:54.8030076Z ##[group]Processing PR #168939 2025-12-04T08:42:54.8030441Z [168939] URL: https://github.com/pytorch/pytorch/pull/168939 2025-12-04T08:42:54.8030851Z [168939] Checking whether to label PR as stale. 2025-12-04T08:42:54.8031225Z [168939] Skipping because PR was updated recently 2025-12-04T08:42:54.8031708Z ##[endgroup] 2025-12-04T08:42:54.8032083Z ##[group]Processing PR #168941 2025-12-04T08:42:54.8032448Z [168941] URL: https://github.com/pytorch/pytorch/pull/168941 2025-12-04T08:42:54.8032866Z [168941] Checking whether to label PR as stale. 2025-12-04T08:42:54.8033230Z [168941] Skipping because PR was updated recently 2025-12-04T08:42:54.8033713Z ##[endgroup] 2025-12-04T08:42:54.8034578Z ##[group]Processing PR #168944 2025-12-04T08:42:54.8034935Z [168944] URL: https://github.com/pytorch/pytorch/pull/168944 2025-12-04T08:42:54.8035354Z [168944] Checking whether to label PR as stale. 2025-12-04T08:42:54.8035720Z [168944] Skipping because PR was updated recently 2025-12-04T08:42:54.8036215Z ##[endgroup] 2025-12-04T08:42:54.8036600Z ##[group]Processing PR #168946 2025-12-04T08:42:54.8036967Z [168946] URL: https://github.com/pytorch/pytorch/pull/168946 2025-12-04T08:42:54.8037374Z [168946] Checking whether to label PR as stale. 2025-12-04T08:42:54.8037748Z [168946] Skipping because PR was updated recently 2025-12-04T08:42:54.8038241Z ##[endgroup] 2025-12-04T08:42:54.8038616Z ##[group]Processing PR #168950 2025-12-04T08:42:54.8038984Z [168950] URL: https://github.com/pytorch/pytorch/pull/168950 2025-12-04T08:42:54.8039401Z [168950] Checking whether to label PR as stale. 2025-12-04T08:42:54.8039766Z [168950] Skipping because PR was updated recently 2025-12-04T08:42:54.8040248Z ##[endgroup] 2025-12-04T08:42:54.8040634Z ##[group]Processing PR #168951 2025-12-04T08:42:54.8040986Z [168951] URL: https://github.com/pytorch/pytorch/pull/168951 2025-12-04T08:42:54.8041403Z [168951] Checking whether to label PR as stale. 2025-12-04T08:42:54.8041763Z [168951] Skipping because PR was updated recently 2025-12-04T08:42:54.8042248Z ##[endgroup] 2025-12-04T08:42:54.8042633Z ##[group]Processing PR #168952 2025-12-04T08:42:54.8042998Z [168952] URL: https://github.com/pytorch/pytorch/pull/168952 2025-12-04T08:42:54.8043404Z [168952] Checking whether to label PR as stale. 2025-12-04T08:42:54.8043779Z [168952] Skipping because PR was updated recently 2025-12-04T08:42:54.8044488Z ##[endgroup] 2025-12-04T08:42:54.8044863Z ##[group]Processing PR #168955 2025-12-04T08:42:54.8045236Z [168955] URL: https://github.com/pytorch/pytorch/pull/168955 2025-12-04T08:42:54.8045642Z [168955] Checking whether to label PR as stale. 2025-12-04T08:42:54.8046014Z [168955] Skipping because PR was updated recently 2025-12-04T08:42:54.8046499Z ##[endgroup] 2025-12-04T08:42:54.8046887Z ##[group]Processing PR #168958 2025-12-04T08:42:54.8047239Z [168958] URL: https://github.com/pytorch/pytorch/pull/168958 2025-12-04T08:42:54.8047658Z [168958] Checking whether to label PR as stale. 2025-12-04T08:42:54.8048018Z [168958] Skipping because PR was updated recently 2025-12-04T08:42:54.8048497Z ##[endgroup] 2025-12-04T08:42:54.8048879Z ##[group]Processing PR #168959 2025-12-04T08:42:54.8049244Z [168959] URL: https://github.com/pytorch/pytorch/pull/168959 2025-12-04T08:42:54.8049647Z [168959] Checking whether to label PR as stale. 2025-12-04T08:42:54.8050021Z [168959] Skipping because PR was updated recently 2025-12-04T08:42:54.8050499Z ##[endgroup] 2025-12-04T08:42:54.8050881Z ##[group]Processing PR #168961 2025-12-04T08:42:54.8051243Z [168961] URL: https://github.com/pytorch/pytorch/pull/168961 2025-12-04T08:42:54.8051761Z [168961] Checking whether to label PR as stale. 2025-12-04T08:42:54.8052135Z [168961] Skipping because PR was updated recently 2025-12-04T08:42:54.8052752Z ##[endgroup] 2025-12-04T08:42:54.8053148Z ##[group]Processing PR #168968 2025-12-04T08:42:54.8053502Z [168968] URL: https://github.com/pytorch/pytorch/pull/168968 2025-12-04T08:42:54.8053923Z [168968] Checking whether to label PR as stale. 2025-12-04T08:42:54.8054281Z [168968] Skipping because PR was updated recently 2025-12-04T08:42:54.8054768Z ##[endgroup] 2025-12-04T08:42:54.8055157Z ##[group]Processing PR #168971 2025-12-04T08:42:54.8055509Z [168971] URL: https://github.com/pytorch/pytorch/pull/168971 2025-12-04T08:42:54.8055930Z [168971] Checking whether to label PR as stale. 2025-12-04T08:42:54.8056306Z [168971] Skipping because PR was updated recently 2025-12-04T08:42:54.8056781Z ##[endgroup] 2025-12-04T08:42:54.8057164Z ##[group]Processing PR #168978 2025-12-04T08:42:54.8057530Z [168978] URL: https://github.com/pytorch/pytorch/pull/168978 2025-12-04T08:42:54.8057937Z [168978] Checking whether to label PR as stale. 2025-12-04T08:42:54.8058309Z [168978] Skipping because PR was updated recently 2025-12-04T08:42:54.8058796Z ##[endgroup] 2025-12-04T08:42:54.8059204Z ##[group]Processing PR #168979 2025-12-04T08:42:54.8059559Z [168979] URL: https://github.com/pytorch/pytorch/pull/168979 2025-12-04T08:42:54.8059980Z [168979] Checking whether to label PR as stale. 2025-12-04T08:42:54.8060343Z [168979] Skipping because PR was updated recently 2025-12-04T08:42:54.8060833Z ##[endgroup] 2025-12-04T08:42:54.8061221Z ##[group]Processing PR #168980 2025-12-04T08:42:54.8061579Z [168980] URL: https://github.com/pytorch/pytorch/pull/168980 2025-12-04T08:42:54.8062003Z [168980] Checking whether to label PR as stale. 2025-12-04T08:42:54.8062371Z [168980] Skipping because PR was updated recently 2025-12-04T08:42:54.8062859Z ##[endgroup] 2025-12-04T08:42:54.8063248Z ##[group]Processing PR #168983 2025-12-04T08:42:54.8063620Z [168983] URL: https://github.com/pytorch/pytorch/pull/168983 2025-12-04T08:42:54.8064028Z [168983] Checking whether to label PR as stale. 2025-12-04T08:42:54.8064402Z [168983] Skipping because PR was updated recently 2025-12-04T08:42:54.8064897Z ##[endgroup] 2025-12-04T08:42:54.8065269Z ##[group]Processing PR #168998 2025-12-04T08:42:54.8082461Z [168998] URL: https://github.com/pytorch/pytorch/pull/168998 2025-12-04T08:42:54.8082998Z [168998] Checking whether to label PR as stale. 2025-12-04T08:42:54.8083514Z [168998] Skipping because PR was updated recently 2025-12-04T08:42:54.8084191Z ##[endgroup] 2025-12-04T08:42:54.8084598Z ##[group]Processing PR #168999 2025-12-04T08:42:54.8084961Z [168999] URL: https://github.com/pytorch/pytorch/pull/168999 2025-12-04T08:42:54.8085389Z [168999] Checking whether to label PR as stale. 2025-12-04T08:42:54.8085924Z [168999] Skipping because PR was updated recently 2025-12-04T08:42:54.8086422Z ##[endgroup] 2025-12-04T08:42:54.8086811Z ##[group]Processing PR #169004 2025-12-04T08:42:54.8087170Z [169004] URL: https://github.com/pytorch/pytorch/pull/169004 2025-12-04T08:42:54.8087598Z [169004] Checking whether to label PR as stale. 2025-12-04T08:42:54.8087969Z [169004] Skipping because PR was updated recently 2025-12-04T08:42:54.8088462Z ##[endgroup] 2025-12-04T08:42:54.8088859Z ##[group]Processing PR #169005 2025-12-04T08:42:54.8089229Z [169005] URL: https://github.com/pytorch/pytorch/pull/169005 2025-12-04T08:42:54.8089639Z [169005] Checking whether to label PR as stale. 2025-12-04T08:42:54.8090019Z [169005] Skipping because PR was updated recently 2025-12-04T08:42:54.8090514Z ##[endgroup] 2025-12-04T08:42:54.8090889Z ##[group]Processing PR #169006 2025-12-04T08:42:54.8091366Z [169006] URL: https://github.com/pytorch/pytorch/pull/169006 2025-12-04T08:42:54.8091799Z [169006] Checking whether to label PR as stale. 2025-12-04T08:42:54.8092169Z [169006] Skipping because PR was updated recently 2025-12-04T08:42:54.8092665Z ##[endgroup] 2025-12-04T08:42:54.8093054Z ##[group]Processing PR #169007 2025-12-04T08:42:54.8093408Z [169007] URL: https://github.com/pytorch/pytorch/pull/169007 2025-12-04T08:42:54.8093827Z [169007] Checking whether to label PR as stale. 2025-12-04T08:42:54.8094283Z [169007] Skipping because PR was updated recently 2025-12-04T08:42:54.8094773Z ##[endgroup] 2025-12-04T08:42:54.8095159Z ##[group]Processing PR #169012 2025-12-04T08:42:54.8095527Z [169012] URL: https://github.com/pytorch/pytorch/pull/169012 2025-12-04T08:42:54.8095935Z [169012] Checking whether to label PR as stale. 2025-12-04T08:42:54.8096311Z [169012] Skipping because PR was updated recently 2025-12-04T08:42:54.8096807Z ##[endgroup] 2025-12-04T08:42:54.8097182Z ##[group]Processing PR #169017 2025-12-04T08:42:54.8097550Z [169017] URL: https://github.com/pytorch/pytorch/pull/169017 2025-12-04T08:42:54.8097967Z [169017] Checking whether to label PR as stale. 2025-12-04T08:42:54.8098346Z [169017] Skipping because PR was updated recently 2025-12-04T08:42:54.8098836Z ##[endgroup] 2025-12-04T08:42:54.8099224Z ##[group]Processing PR #169018 2025-12-04T08:42:54.8099579Z [169018] URL: https://github.com/pytorch/pytorch/pull/169018 2025-12-04T08:42:54.8100000Z [169018] Checking whether to label PR as stale. 2025-12-04T08:42:54.8100369Z [169018] Skipping because PR was updated recently 2025-12-04T08:42:54.8100855Z ##[endgroup] 2025-12-04T08:42:54.8101239Z ##[group]Processing PR #169023 2025-12-04T08:42:54.8101605Z [169023] URL: https://github.com/pytorch/pytorch/pull/169023 2025-12-04T08:42:54.8102012Z [169023] Checking whether to label PR as stale. 2025-12-04T08:42:54.8102391Z [169023] Skipping because PR was updated recently 2025-12-04T08:42:54.8102864Z ##[endgroup] 2025-12-04T08:42:54.8103252Z ##[group]Processing PR #169024 2025-12-04T08:42:54.8103623Z [169024] URL: https://github.com/pytorch/pytorch/pull/169024 2025-12-04T08:42:54.8104037Z [169024] Checking whether to label PR as stale. 2025-12-04T08:42:54.8104412Z [169024] Skipping because PR was updated recently 2025-12-04T08:42:54.8104899Z ##[endgroup] 2025-12-04T08:42:54.8105291Z ##[group]Processing PR #169025 2025-12-04T08:42:54.8105645Z [169025] URL: https://github.com/pytorch/pytorch/pull/169025 2025-12-04T08:42:54.8106067Z [169025] Checking whether to label PR as stale. 2025-12-04T08:42:54.8106438Z [169025] Skipping because PR was updated recently 2025-12-04T08:42:54.8106929Z ##[endgroup] 2025-12-04T08:42:54.8107318Z ##[group]Processing PR #169026 2025-12-04T08:42:54.8107673Z [169026] URL: https://github.com/pytorch/pytorch/pull/169026 2025-12-04T08:42:54.8108095Z [169026] Checking whether to label PR as stale. 2025-12-04T08:42:54.8108471Z [169026] Skipping because PR was updated recently 2025-12-04T08:42:54.8108945Z ##[endgroup] 2025-12-04T08:42:54.8109333Z ##[group]Processing PR #169031 2025-12-04T08:42:54.8109700Z [169031] URL: https://github.com/pytorch/pytorch/pull/169031 2025-12-04T08:42:54.8110196Z [169031] Checking whether to label PR as stale. 2025-12-04T08:42:54.8110571Z [169031] Skipping because PR was updated recently 2025-12-04T08:42:54.8111061Z ##[endgroup] 2025-12-04T08:42:54.8111446Z ##[group]Processing PR #169038 2025-12-04T08:42:54.8111802Z [169038] URL: https://github.com/pytorch/pytorch/pull/169038 2025-12-04T08:42:54.8112228Z [169038] Checking whether to label PR as stale. 2025-12-04T08:42:54.8112590Z [169038] Skipping because PR was updated recently 2025-12-04T08:42:54.8113080Z ##[endgroup] 2025-12-04T08:42:54.8113470Z ##[group]Processing PR #169039 2025-12-04T08:42:54.8113826Z [169039] URL: https://github.com/pytorch/pytorch/pull/169039 2025-12-04T08:42:54.8114249Z [169039] Checking whether to label PR as stale. 2025-12-04T08:42:54.8114628Z [169039] Skipping because PR was updated recently 2025-12-04T08:42:54.8115105Z ##[endgroup] 2025-12-04T08:42:54.8115492Z ##[group]Processing PR #169040 2025-12-04T08:42:54.8115858Z [169040] URL: https://github.com/pytorch/pytorch/pull/169040 2025-12-04T08:42:54.8116270Z [169040] Checking whether to label PR as stale. 2025-12-04T08:42:54.8116647Z [169040] Skipping because PR was updated recently 2025-12-04T08:42:54.8117136Z ##[endgroup] 2025-12-04T08:42:54.8117506Z ##[group]Processing PR #169042 2025-12-04T08:42:54.8117879Z [169042] URL: https://github.com/pytorch/pytorch/pull/169042 2025-12-04T08:42:54.8118372Z [169042] Checking whether to label PR as stale. 2025-12-04T08:42:54.8118738Z [169042] Skipping because PR was updated recently 2025-12-04T08:42:54.8119229Z ##[endgroup] 2025-12-04T08:42:54.8119616Z ##[group]Processing PR #169044 2025-12-04T08:42:54.8119982Z [169044] URL: https://github.com/pytorch/pytorch/pull/169044 2025-12-04T08:42:54.8120387Z [169044] Checking whether to label PR as stale. 2025-12-04T08:42:54.8120761Z [169044] Skipping because PR was updated recently 2025-12-04T08:42:54.8121249Z ##[endgroup] 2025-12-04T08:42:54.8121620Z ##[group]Processing PR #169045 2025-12-04T08:42:54.8121984Z [169045] URL: https://github.com/pytorch/pytorch/pull/169045 2025-12-04T08:42:54.8122396Z [169045] Checking whether to label PR as stale. 2025-12-04T08:42:54.8122771Z [169045] Skipping because PR was updated recently 2025-12-04T08:42:54.8123258Z ##[endgroup] 2025-12-04T08:42:54.8123645Z ##[group]Processing PR #169046 2025-12-04T08:42:54.8123997Z [169046] URL: https://github.com/pytorch/pytorch/pull/169046 2025-12-04T08:42:54.8124422Z [169046] Checking whether to label PR as stale. 2025-12-04T08:42:54.8124784Z [169046] Skipping because PR was updated recently 2025-12-04T08:42:54.8125267Z ##[endgroup] 2025-12-04T08:42:54.8125647Z ##[group]Processing PR #169047 2025-12-04T08:42:54.8126011Z [169047] URL: https://github.com/pytorch/pytorch/pull/169047 2025-12-04T08:42:54.8126416Z [169047] Checking whether to label PR as stale. 2025-12-04T08:42:54.8126788Z [169047] Skipping because PR was updated recently 2025-12-04T08:42:54.8127258Z ##[endgroup] 2025-12-04T08:42:54.8127640Z ##[group]Processing PR #169048 2025-12-04T08:42:54.8128010Z [169048] URL: https://github.com/pytorch/pytorch/pull/169048 2025-12-04T08:42:54.8128414Z [169048] Checking whether to label PR as stale. 2025-12-04T08:42:54.8128789Z [169048] Skipping because PR was updated recently 2025-12-04T08:42:54.8129274Z ##[endgroup] 2025-12-04T08:42:54.8129653Z ##[group]Processing PR #169052 2025-12-04T08:42:54.8130008Z [169052] URL: https://github.com/pytorch/pytorch/pull/169052 2025-12-04T08:42:54.8130422Z [169052] Checking whether to label PR as stale. 2025-12-04T08:42:54.8130783Z [169052] Skipping because PR was updated recently 2025-12-04T08:42:54.8131384Z ##[endgroup] 2025-12-04T08:42:54.8131793Z ##[group]Processing PR #169053 2025-12-04T08:42:54.8132147Z [169053] URL: https://github.com/pytorch/pytorch/pull/169053 2025-12-04T08:42:54.8132565Z [169053] Checking whether to label PR as stale. 2025-12-04T08:42:54.8132943Z [169053] Skipping because PR was updated recently 2025-12-04T08:42:54.8133415Z ##[endgroup] 2025-12-04T08:42:54.8134291Z ##[group]Processing PR #169056 2025-12-04T08:42:54.8134926Z [169056] URL: https://github.com/pytorch/pytorch/pull/169056 2025-12-04T08:42:54.8135334Z [169056] Checking whether to label PR as stale. 2025-12-04T08:42:54.8135718Z [169056] Skipping because PR was updated recently 2025-12-04T08:42:54.8136213Z ##[endgroup] 2025-12-04T08:42:54.8136595Z ##[group]Processing PR #169061 2025-12-04T08:42:54.8136953Z [169061] URL: https://github.com/pytorch/pytorch/pull/169061 2025-12-04T08:42:54.8137374Z [169061] Checking whether to label PR as stale. 2025-12-04T08:42:54.8137737Z [169061] Skipping because PR was updated recently 2025-12-04T08:42:54.8138222Z ##[endgroup] 2025-12-04T08:42:54.8138607Z ##[group]Processing PR #169063 2025-12-04T08:42:54.8138957Z [169063] URL: https://github.com/pytorch/pytorch/pull/169063 2025-12-04T08:42:54.8139374Z [169063] Checking whether to label PR as stale. 2025-12-04T08:42:54.8139746Z [169063] Skipping because PR was updated recently 2025-12-04T08:42:54.8140223Z ##[endgroup] 2025-12-04T08:42:54.8140608Z ##[group]Processing PR #169065 2025-12-04T08:42:54.8140977Z [169065] URL: https://github.com/pytorch/pytorch/pull/169065 2025-12-04T08:42:54.8141385Z [169065] Checking whether to label PR as stale. 2025-12-04T08:42:54.8141760Z [169065] Skipping because PR was updated recently 2025-12-04T08:42:54.8142245Z ##[endgroup] 2025-12-04T08:42:54.8142615Z ##[group]Processing PR #169066 2025-12-04T08:42:54.8143088Z [169066] URL: https://github.com/pytorch/pytorch/pull/169066 2025-12-04T08:42:54.8143516Z [169066] Checking whether to label PR as stale. 2025-12-04T08:42:54.8143881Z [169066] Skipping because PR was updated recently 2025-12-04T08:42:54.8144371Z ##[endgroup] 2025-12-04T08:42:54.8144759Z ##[group]Processing PR #169067 2025-12-04T08:42:54.8145112Z [169067] URL: https://github.com/pytorch/pytorch/pull/169067 2025-12-04T08:42:54.8145531Z [169067] Checking whether to label PR as stale. 2025-12-04T08:42:54.8145891Z [169067] Skipping because PR was updated recently 2025-12-04T08:42:54.8146379Z ##[endgroup] 2025-12-04T08:42:54.8146766Z ##[group]Processing PR #169068 2025-12-04T08:42:54.8147128Z [169068] URL: https://github.com/pytorch/pytorch/pull/169068 2025-12-04T08:42:54.8147533Z [169068] Checking whether to label PR as stale. 2025-12-04T08:42:54.8147906Z [169068] Skipping because PR was updated recently 2025-12-04T08:42:54.8148386Z ##[endgroup] 2025-12-04T08:42:54.8148752Z ##[group]Processing PR #169074 2025-12-04T08:42:54.8149119Z [169074] URL: https://github.com/pytorch/pytorch/pull/169074 2025-12-04T08:42:54.8149526Z [169074] Checking whether to label PR as stale. 2025-12-04T08:42:54.8149900Z [169074] Skipping because PR was updated recently 2025-12-04T08:42:54.8150381Z ##[endgroup] 2025-12-04T08:42:55.9666342Z ##[group]Processing PR #169075 2025-12-04T08:42:55.9667561Z [169075] URL: https://github.com/pytorch/pytorch/pull/169075 2025-12-04T08:42:55.9668560Z [169075] Checking whether to label PR as stale. 2025-12-04T08:42:55.9669549Z [169075] Skipping because PR was updated recently 2025-12-04T08:42:55.9670746Z ##[endgroup] 2025-12-04T08:42:55.9671600Z ##[group]Processing PR #169076 2025-12-04T08:42:55.9672460Z [169076] URL: https://github.com/pytorch/pytorch/pull/169076 2025-12-04T08:42:55.9673347Z [169076] Checking whether to label PR as stale. 2025-12-04T08:42:55.9674188Z [169076] Skipping because PR was updated recently 2025-12-04T08:42:55.9675511Z ##[endgroup] 2025-12-04T08:42:55.9676227Z ##[group]Processing PR #169079 2025-12-04T08:42:55.9676933Z [169079] URL: https://github.com/pytorch/pytorch/pull/169079 2025-12-04T08:42:55.9677698Z [169079] Checking whether to label PR as stale. 2025-12-04T08:42:55.9678382Z [169079] Skipping because PR was updated recently 2025-12-04T08:42:55.9679292Z ##[endgroup] 2025-12-04T08:42:55.9679984Z ##[group]Processing PR #169081 2025-12-04T08:42:55.9680581Z [169081] URL: https://github.com/pytorch/pytorch/pull/169081 2025-12-04T08:42:55.9681344Z [169081] Checking whether to label PR as stale. 2025-12-04T08:42:55.9682024Z [169081] Skipping because PR was updated recently 2025-12-04T08:42:55.9683329Z ##[endgroup] 2025-12-04T08:42:55.9684024Z ##[group]Processing PR #169085 2025-12-04T08:42:55.9684680Z [169085] URL: https://github.com/pytorch/pytorch/pull/169085 2025-12-04T08:42:55.9685450Z [169085] Checking whether to label PR as stale. 2025-12-04T08:42:55.9686094Z [169085] Skipping because PR was updated recently 2025-12-04T08:42:55.9686969Z ##[endgroup] 2025-12-04T08:42:55.9687689Z ##[group]Processing PR #169090 2025-12-04T08:42:55.9688355Z [169090] URL: https://github.com/pytorch/pytorch/pull/169090 2025-12-04T08:42:55.9689059Z [169090] Checking whether to label PR as stale. 2025-12-04T08:42:55.9689751Z [169090] Skipping because PR was updated recently 2025-12-04T08:42:55.9690655Z ##[endgroup] 2025-12-04T08:42:55.9691488Z ##[group]Processing PR #169091 2025-12-04T08:42:55.9692054Z [169091] URL: https://github.com/pytorch/pytorch/pull/169091 2025-12-04T08:42:55.9692842Z [169091] Checking whether to label PR as stale. 2025-12-04T08:42:55.9693517Z [169091] Skipping because PR was updated recently 2025-12-04T08:42:55.9694427Z ##[endgroup] 2025-12-04T08:42:55.9695033Z ##[group]Processing PR #169094 2025-12-04T08:42:55.9695693Z [169094] URL: https://github.com/pytorch/pytorch/pull/169094 2025-12-04T08:42:55.9696475Z [169094] Checking whether to label PR as stale. 2025-12-04T08:42:55.9697158Z [169094] Skipping because PR was updated recently 2025-12-04T08:42:55.9698022Z ##[endgroup] 2025-12-04T08:42:55.9699093Z ##[group]Processing PR #169097 2025-12-04T08:42:55.9699779Z [169097] URL: https://github.com/pytorch/pytorch/pull/169097 2025-12-04T08:42:55.9700494Z [169097] Checking whether to label PR as stale. 2025-12-04T08:42:55.9701194Z [169097] Skipping because PR was updated recently 2025-12-04T08:42:55.9702120Z ##[endgroup] 2025-12-04T08:42:55.9702771Z ##[group]Processing PR #169100 2025-12-04T08:42:55.9703480Z [169100] URL: https://github.com/pytorch/pytorch/pull/169100 2025-12-04T08:42:55.9704256Z [169100] Checking whether to label PR as stale. 2025-12-04T08:42:55.9704936Z [169100] Skipping because PR was updated recently 2025-12-04T08:42:55.9705819Z ##[endgroup] 2025-12-04T08:42:55.9706380Z ##[group]Processing PR #169102 2025-12-04T08:42:55.9707033Z [169102] URL: https://github.com/pytorch/pytorch/pull/169102 2025-12-04T08:42:55.9707818Z [169102] Checking whether to label PR as stale. 2025-12-04T08:42:55.9708499Z [169102] Skipping because PR was updated recently 2025-12-04T08:42:55.9709275Z ##[endgroup] 2025-12-04T08:42:55.9709984Z ##[group]Processing PR #169103 2025-12-04T08:42:55.9710658Z [169103] URL: https://github.com/pytorch/pytorch/pull/169103 2025-12-04T08:42:55.9711417Z [169103] Checking whether to label PR as stale. 2025-12-04T08:42:55.9712090Z [169103] Skipping because PR was updated recently 2025-12-04T08:42:55.9712929Z ##[endgroup] 2025-12-04T08:42:55.9713616Z ##[group]Processing PR #169104 2025-12-04T08:42:55.9714292Z [169104] URL: https://github.com/pytorch/pytorch/pull/169104 2025-12-04T08:42:55.9715057Z [169104] Checking whether to label PR as stale. 2025-12-04T08:42:55.9715719Z [169104] Skipping because PR was updated recently 2025-12-04T08:42:55.9716641Z ##[endgroup] 2025-12-04T08:42:55.9717614Z ##[group]Processing PR #169105 2025-12-04T08:42:55.9718230Z [169105] URL: https://github.com/pytorch/pytorch/pull/169105 2025-12-04T08:42:55.9718965Z [169105] Checking whether to label PR as stale. 2025-12-04T08:42:55.9719649Z [169105] Skipping because PR was updated recently 2025-12-04T08:42:55.9720581Z ##[endgroup] 2025-12-04T08:42:55.9721248Z ##[group]Processing PR #169107 2025-12-04T08:42:55.9721900Z [169107] URL: https://github.com/pytorch/pytorch/pull/169107 2025-12-04T08:42:55.9722664Z [169107] Checking whether to label PR as stale. 2025-12-04T08:42:55.9723364Z [169107] Skipping because PR was updated recently 2025-12-04T08:42:55.9724187Z ##[endgroup] 2025-12-04T08:42:55.9724876Z ##[group]Processing PR #169108 2025-12-04T08:42:55.9725547Z [169108] URL: https://github.com/pytorch/pytorch/pull/169108 2025-12-04T08:42:55.9726325Z [169108] Checking whether to label PR as stale. 2025-12-04T08:42:55.9727191Z [169108] Skipping because PR was updated recently 2025-12-04T08:42:55.9728106Z ##[endgroup] 2025-12-04T08:42:55.9728798Z ##[group]Processing PR #169109 2025-12-04T08:42:55.9729433Z [169109] URL: https://github.com/pytorch/pytorch/pull/169109 2025-12-04T08:42:55.9730194Z [169109] Checking whether to label PR as stale. 2025-12-04T08:42:55.9730869Z [169109] Skipping because PR was updated recently 2025-12-04T08:42:55.9731914Z ##[endgroup] 2025-12-04T08:42:55.9732529Z ##[group]Processing PR #169110 2025-12-04T08:42:55.9733199Z [169110] URL: https://github.com/pytorch/pytorch/pull/169110 2025-12-04T08:42:55.9734363Z [169110] Checking whether to label PR as stale. 2025-12-04T08:42:55.9735056Z [169110] Skipping because PR was updated recently 2025-12-04T08:42:55.9735853Z ##[endgroup] 2025-12-04T08:42:55.9736545Z ##[group]Processing PR #169114 2025-12-04T08:42:55.9737218Z [169114] URL: https://github.com/pytorch/pytorch/pull/169114 2025-12-04T08:42:55.9737982Z [169114] Checking whether to label PR as stale. 2025-12-04T08:42:55.9738597Z [169114] Skipping because PR was updated recently 2025-12-04T08:42:55.9739502Z ##[endgroup] 2025-12-04T08:42:55.9740202Z ##[group]Processing PR #169115 2025-12-04T08:42:55.9740853Z [169115] URL: https://github.com/pytorch/pytorch/pull/169115 2025-12-04T08:42:55.9741604Z [169115] Checking whether to label PR as stale. 2025-12-04T08:42:55.9742580Z [169115] Skipping because PR was updated recently 2025-12-04T08:42:55.9743497Z ##[endgroup] 2025-12-04T08:42:55.9744157Z ##[group]Processing PR #169116 2025-12-04T08:42:55.9744827Z [169116] URL: https://github.com/pytorch/pytorch/pull/169116 2025-12-04T08:42:55.9745593Z [169116] Checking whether to label PR as stale. 2025-12-04T08:42:55.9746285Z [169116] Skipping because PR was updated recently 2025-12-04T08:42:55.9747131Z ##[endgroup] 2025-12-04T08:42:55.9747836Z ##[group]Processing PR #169117 2025-12-04T08:42:55.9748505Z [169117] URL: https://github.com/pytorch/pytorch/pull/169117 2025-12-04T08:42:55.9749238Z [169117] Checking whether to label PR as stale. 2025-12-04T08:42:55.9749918Z [169117] Skipping because PR was updated recently 2025-12-04T08:42:55.9750878Z ##[endgroup] 2025-12-04T08:42:55.9751590Z ##[group]Processing PR #169121 2025-12-04T08:42:55.9752158Z [169121] URL: https://github.com/pytorch/pytorch/pull/169121 2025-12-04T08:42:55.9752857Z [169121] Checking whether to label PR as stale. 2025-12-04T08:42:55.9753534Z [169121] Skipping because PR was updated recently 2025-12-04T08:42:55.9754456Z ##[endgroup] 2025-12-04T08:42:55.9755172Z ##[group]Processing PR #169122 2025-12-04T08:42:55.9755808Z [169122] URL: https://github.com/pytorch/pytorch/pull/169122 2025-12-04T08:42:55.9756579Z [169122] Checking whether to label PR as stale. 2025-12-04T08:42:55.9757272Z [169122] Skipping because PR was updated recently 2025-12-04T08:42:55.9758129Z ##[endgroup] 2025-12-04T08:42:55.9758824Z ##[group]Processing PR #169123 2025-12-04T08:42:55.9759491Z [169123] URL: https://github.com/pytorch/pytorch/pull/169123 2025-12-04T08:42:55.9760252Z [169123] Checking whether to label PR as stale. 2025-12-04T08:42:55.9760935Z [169123] Skipping because PR was updated recently 2025-12-04T08:42:55.9761813Z ##[endgroup] 2025-12-04T08:42:55.9762543Z ##[group]Processing PR #169125 2025-12-04T08:42:55.9763195Z [169125] URL: https://github.com/pytorch/pytorch/pull/169125 2025-12-04T08:42:55.9763924Z [169125] Checking whether to label PR as stale. 2025-12-04T08:42:55.9764594Z [169125] Skipping because PR was updated recently 2025-12-04T08:42:55.9765510Z ##[endgroup] 2025-12-04T08:42:55.9768575Z ##[group]Processing PR #169126 2025-12-04T08:42:55.9769269Z [169126] URL: https://github.com/pytorch/pytorch/pull/169126 2025-12-04T08:42:55.9770045Z [169126] Checking whether to label PR as stale. 2025-12-04T08:42:55.9770714Z [169126] Skipping because PR was updated recently 2025-12-04T08:42:55.9771787Z ##[endgroup] 2025-12-04T08:42:55.9772477Z ##[group]Processing PR #169127 2025-12-04T08:42:55.9773150Z [169127] URL: https://github.com/pytorch/pytorch/pull/169127 2025-12-04T08:42:55.9774540Z [169127] Checking whether to label PR as stale. 2025-12-04T08:42:55.9775161Z [169127] Skipping because PR was updated recently 2025-12-04T08:42:55.9777761Z ##[endgroup] 2025-12-04T08:42:55.9778407Z ##[group]Processing PR #169128 2025-12-04T08:42:55.9778972Z [169128] URL: https://github.com/pytorch/pytorch/pull/169128 2025-12-04T08:42:55.9779674Z [169128] Checking whether to label PR as stale. 2025-12-04T08:42:55.9780307Z [169128] Skipping because PR was updated recently 2025-12-04T08:42:55.9781105Z ##[endgroup] 2025-12-04T08:42:55.9781730Z ##[group]Processing PR #169130 2025-12-04T08:42:55.9782333Z [169130] URL: https://github.com/pytorch/pytorch/pull/169130 2025-12-04T08:42:55.9783000Z [169130] Checking whether to label PR as stale. 2025-12-04T08:42:55.9783518Z [169130] Skipping because PR was updated recently 2025-12-04T08:42:55.9792209Z ##[endgroup] 2025-12-04T08:42:55.9792864Z ##[group]Processing PR #169134 2025-12-04T08:42:55.9793488Z [169134] URL: https://github.com/pytorch/pytorch/pull/169134 2025-12-04T08:42:55.9794106Z [169134] Checking whether to label PR as stale. 2025-12-04T08:42:55.9794634Z [169134] Skipping because PR was updated recently 2025-12-04T08:42:55.9795336Z ##[endgroup] 2025-12-04T08:42:55.9795966Z ##[group]Processing PR #169135 2025-12-04T08:42:55.9796509Z [169135] URL: https://github.com/pytorch/pytorch/pull/169135 2025-12-04T08:42:55.9797379Z [169135] Checking whether to label PR as stale. 2025-12-04T08:42:55.9797939Z [169135] Skipping because PR was updated recently 2025-12-04T08:42:55.9798748Z ##[endgroup] 2025-12-04T08:42:55.9799338Z ##[group]Processing PR #169137 2025-12-04T08:42:55.9799880Z [169137] URL: https://github.com/pytorch/pytorch/pull/169137 2025-12-04T08:42:55.9800492Z [169137] Checking whether to label PR as stale. 2025-12-04T08:42:55.9801055Z [169137] Skipping because PR was updated recently 2025-12-04T08:42:55.9801855Z ##[endgroup] 2025-12-04T08:42:55.9802490Z ##[group]Processing PR #169138 2025-12-04T08:42:55.9803073Z [169138] URL: https://github.com/pytorch/pytorch/pull/169138 2025-12-04T08:42:55.9805880Z [169138] Checking whether to label PR as stale. 2025-12-04T08:42:55.9806586Z [169138] Skipping because PR was updated recently 2025-12-04T08:42:55.9807496Z ##[endgroup] 2025-12-04T08:42:55.9808219Z ##[group]Processing PR #169139 2025-12-04T08:42:55.9808881Z [169139] URL: https://github.com/pytorch/pytorch/pull/169139 2025-12-04T08:42:55.9809678Z [169139] Checking whether to label PR as stale. 2025-12-04T08:42:55.9810245Z [169139] Skipping because PR was updated recently 2025-12-04T08:42:55.9810954Z ##[endgroup] 2025-12-04T08:42:55.9811619Z ##[group]Processing PR #169141 2025-12-04T08:42:55.9812192Z [169141] URL: https://github.com/pytorch/pytorch/pull/169141 2025-12-04T08:42:55.9812806Z [169141] Checking whether to label PR as stale. 2025-12-04T08:42:55.9813347Z [169141] Skipping because PR was updated recently 2025-12-04T08:42:55.9814105Z ##[endgroup] 2025-12-04T08:42:55.9814613Z ##[group]Processing PR #169142 2025-12-04T08:42:55.9815117Z [169142] URL: https://github.com/pytorch/pytorch/pull/169142 2025-12-04T08:42:55.9815773Z [169142] Checking whether to label PR as stale. 2025-12-04T08:42:55.9816424Z [169142] Skipping because PR was updated recently 2025-12-04T08:42:55.9817255Z ##[endgroup] 2025-12-04T08:42:55.9817898Z ##[group]Processing PR #169143 2025-12-04T08:42:55.9818397Z [169143] URL: https://github.com/pytorch/pytorch/pull/169143 2025-12-04T08:42:55.9818940Z [169143] Checking whether to label PR as stale. 2025-12-04T08:42:55.9819309Z [169143] Skipping because PR was updated recently 2025-12-04T08:42:55.9819806Z ##[endgroup] 2025-12-04T08:42:55.9820196Z ##[group]Processing PR #169148 2025-12-04T08:42:55.9820563Z [169148] URL: https://github.com/pytorch/pytorch/pull/169148 2025-12-04T08:42:55.9820970Z [169148] Checking whether to label PR as stale. 2025-12-04T08:42:55.9821374Z [169148] Skipping because PR was updated recently 2025-12-04T08:42:55.9821962Z ##[endgroup] 2025-12-04T08:42:55.9822334Z ##[group]Processing PR #169149 2025-12-04T08:42:55.9822889Z [169149] URL: https://github.com/pytorch/pytorch/pull/169149 2025-12-04T08:42:55.9823314Z [169149] Checking whether to label PR as stale. 2025-12-04T08:42:55.9823792Z [169149] Skipping because PR was updated recently 2025-12-04T08:42:55.9824286Z ##[endgroup] 2025-12-04T08:42:55.9824678Z ##[group]Processing PR #169151 2025-12-04T08:42:55.9825035Z [169151] URL: https://github.com/pytorch/pytorch/pull/169151 2025-12-04T08:42:55.9825467Z [169151] Checking whether to label PR as stale. 2025-12-04T08:42:55.9825833Z [169151] Skipping because PR was updated recently 2025-12-04T08:42:55.9826318Z ##[endgroup] 2025-12-04T08:42:55.9826702Z ##[group]Processing PR #169155 2025-12-04T08:42:55.9827065Z [169155] URL: https://github.com/pytorch/pytorch/pull/169155 2025-12-04T08:42:55.9827471Z [169155] Checking whether to label PR as stale. 2025-12-04T08:42:55.9827845Z [169155] Skipping because PR was updated recently 2025-12-04T08:42:55.9828329Z ##[endgroup] 2025-12-04T08:42:55.9828695Z ##[group]Processing PR #169156 2025-12-04T08:42:55.9829063Z [169156] URL: https://github.com/pytorch/pytorch/pull/169156 2025-12-04T08:42:55.9829479Z [169156] Checking whether to label PR as stale. 2025-12-04T08:42:55.9829838Z [169156] Skipping because PR was updated recently 2025-12-04T08:42:55.9830321Z ##[endgroup] 2025-12-04T08:42:55.9830700Z ##[group]Processing PR #169158 2025-12-04T08:42:55.9831133Z [169158] URL: https://github.com/pytorch/pytorch/pull/169158 2025-12-04T08:42:55.9831551Z [169158] Checking whether to label PR as stale. 2025-12-04T08:42:55.9831908Z [169158] Skipping because PR was updated recently 2025-12-04T08:42:55.9832393Z ##[endgroup] 2025-12-04T08:42:55.9832777Z ##[group]Processing PR #169159 2025-12-04T08:42:55.9833142Z [169159] URL: https://github.com/pytorch/pytorch/pull/169159 2025-12-04T08:42:55.9833545Z [169159] Checking whether to label PR as stale. 2025-12-04T08:42:55.9834355Z [169159] Skipping because PR was updated recently 2025-12-04T08:42:55.9834855Z ##[endgroup] 2025-12-04T08:42:55.9835228Z ##[group]Processing PR #169161 2025-12-04T08:42:55.9835606Z [169161] URL: https://github.com/pytorch/pytorch/pull/169161 2025-12-04T08:42:55.9836012Z [169161] Checking whether to label PR as stale. 2025-12-04T08:42:55.9836388Z [169161] Skipping because PR was updated recently 2025-12-04T08:42:55.9836876Z ##[endgroup] 2025-12-04T08:42:55.9837266Z ##[group]Processing PR #169162 2025-12-04T08:42:55.9837626Z [169162] URL: https://github.com/pytorch/pytorch/pull/169162 2025-12-04T08:42:55.9838047Z [169162] Checking whether to label PR as stale. 2025-12-04T08:42:55.9838410Z [169162] Skipping because PR was updated recently 2025-12-04T08:42:55.9838896Z ##[endgroup] 2025-12-04T08:42:55.9839280Z ##[group]Processing PR #169164 2025-12-04T08:42:55.9839632Z [169164] URL: https://github.com/pytorch/pytorch/pull/169164 2025-12-04T08:42:55.9840047Z [169164] Checking whether to label PR as stale. 2025-12-04T08:42:55.9840420Z [169164] Skipping because PR was updated recently 2025-12-04T08:42:55.9840892Z ##[endgroup] 2025-12-04T08:42:55.9841287Z ##[group]Processing PR #169165 2025-12-04T08:42:55.9841660Z [169165] URL: https://github.com/pytorch/pytorch/pull/169165 2025-12-04T08:42:55.9842070Z [169165] Checking whether to label PR as stale. 2025-12-04T08:42:55.9842446Z [169165] Skipping because PR was updated recently 2025-12-04T08:42:55.9842935Z ##[endgroup] 2025-12-04T08:42:55.9843326Z ##[group]Processing PR #169166 2025-12-04T08:42:55.9843688Z [169166] URL: https://github.com/pytorch/pytorch/pull/169166 2025-12-04T08:42:55.9844112Z [169166] Checking whether to label PR as stale. 2025-12-04T08:42:55.9844476Z [169166] Skipping because PR was updated recently 2025-12-04T08:42:55.9844968Z ##[endgroup] 2025-12-04T08:42:55.9845357Z ##[group]Processing PR #169167 2025-12-04T08:42:55.9845709Z [169167] URL: https://github.com/pytorch/pytorch/pull/169167 2025-12-04T08:42:55.9846127Z [169167] Checking whether to label PR as stale. 2025-12-04T08:42:55.9846499Z [169167] Skipping because PR was updated recently 2025-12-04T08:42:55.9846972Z ##[endgroup] 2025-12-04T08:42:55.9847604Z ##[group]Processing PR #169168 2025-12-04T08:42:55.9847973Z [169168] URL: https://github.com/pytorch/pytorch/pull/169168 2025-12-04T08:42:55.9848381Z [169168] Checking whether to label PR as stale. 2025-12-04T08:42:55.9848757Z [169168] Skipping because PR was updated recently 2025-12-04T08:42:55.9849242Z ##[endgroup] 2025-12-04T08:42:55.9849611Z ##[group]Processing PR #169171 2025-12-04T08:42:55.9849980Z [169171] URL: https://github.com/pytorch/pytorch/pull/169171 2025-12-04T08:42:55.9850396Z [169171] Checking whether to label PR as stale. 2025-12-04T08:42:55.9850757Z [169171] Skipping because PR was updated recently 2025-12-04T08:42:55.9851240Z ##[endgroup] 2025-12-04T08:42:55.9851742Z ##[group]Processing PR #169172 2025-12-04T08:42:55.9852099Z [169172] URL: https://github.com/pytorch/pytorch/pull/169172 2025-12-04T08:42:55.9852518Z [169172] Checking whether to label PR as stale. 2025-12-04T08:42:55.9852879Z [169172] Skipping because PR was updated recently 2025-12-04T08:42:55.9853375Z ##[endgroup] 2025-12-04T08:42:55.9853760Z ##[group]Processing PR #169173 2025-12-04T08:42:55.9854125Z [169173] URL: https://github.com/pytorch/pytorch/pull/169173 2025-12-04T08:42:55.9854531Z [169173] Checking whether to label PR as stale. 2025-12-04T08:42:55.9854906Z [169173] Skipping because PR was updated recently 2025-12-04T08:42:55.9855391Z ##[endgroup] 2025-12-04T08:42:55.9855885Z ##[group]Processing PR #169176 2025-12-04T08:42:55.9856253Z [169176] URL: https://github.com/pytorch/pytorch/pull/169176 2025-12-04T08:42:55.9856673Z [169176] Checking whether to label PR as stale. 2025-12-04T08:42:55.9857035Z [169176] Skipping because PR was updated recently 2025-12-04T08:42:55.9857526Z ##[endgroup] 2025-12-04T08:42:55.9857912Z ##[group]Processing PR #169177 2025-12-04T08:42:55.9858262Z [169177] URL: https://github.com/pytorch/pytorch/pull/169177 2025-12-04T08:42:55.9858684Z [169177] Checking whether to label PR as stale. 2025-12-04T08:42:55.9859046Z [169177] Skipping because PR was updated recently 2025-12-04T08:42:55.9859537Z ##[endgroup] 2025-12-04T08:42:55.9859919Z ##[group]Processing PR #169180 2025-12-04T08:42:55.9860285Z [169180] URL: https://github.com/pytorch/pytorch/pull/169180 2025-12-04T08:42:55.9860689Z [169180] Checking whether to label PR as stale. 2025-12-04T08:42:55.9861062Z [169180] Skipping because PR was updated recently 2025-12-04T08:42:55.9861542Z ##[endgroup] 2025-12-04T08:42:55.9861913Z ##[group]Processing PR #169181 2025-12-04T08:42:55.9862276Z [169181] URL: https://github.com/pytorch/pytorch/pull/169181 2025-12-04T08:42:55.9862679Z [169181] Checking whether to label PR as stale. 2025-12-04T08:42:55.9863056Z [169181] Skipping because PR was updated recently 2025-12-04T08:42:55.9863541Z ##[endgroup] 2025-12-04T08:42:55.9863927Z ##[group]Processing PR #169183 2025-12-04T08:42:55.9864276Z [169183] URL: https://github.com/pytorch/pytorch/pull/169183 2025-12-04T08:42:55.9864693Z [169183] Checking whether to label PR as stale. 2025-12-04T08:42:55.9865053Z [169183] Skipping because PR was updated recently 2025-12-04T08:42:55.9865539Z ##[endgroup] 2025-12-04T08:42:55.9865919Z ##[group]Processing PR #169185 2025-12-04T08:42:55.9866272Z [169185] URL: https://github.com/pytorch/pytorch/pull/169185 2025-12-04T08:42:55.9866689Z [169185] Checking whether to label PR as stale. 2025-12-04T08:42:55.9867061Z [169185] Skipping because PR was updated recently 2025-12-04T08:42:55.9867531Z ##[endgroup] 2025-12-04T08:42:55.9867915Z ##[group]Processing PR #169189 2025-12-04T08:42:55.9868278Z [169189] URL: https://github.com/pytorch/pytorch/pull/169189 2025-12-04T08:42:55.9868682Z [169189] Checking whether to label PR as stale. 2025-12-04T08:42:55.9869058Z [169189] Skipping because PR was updated recently 2025-12-04T08:42:55.9869541Z ##[endgroup] 2025-12-04T08:42:55.9869926Z ##[group]Processing PR #169192 2025-12-04T08:42:55.9870282Z [169192] URL: https://github.com/pytorch/pytorch/pull/169192 2025-12-04T08:42:55.9870705Z [169192] Checking whether to label PR as stale. 2025-12-04T08:42:55.9871065Z [169192] Skipping because PR was updated recently 2025-12-04T08:42:55.9871647Z ##[endgroup] 2025-12-04T08:42:55.9872032Z ##[group]Processing PR #169196 2025-12-04T08:42:55.9872383Z [169196] URL: https://github.com/pytorch/pytorch/pull/169196 2025-12-04T08:42:55.9872800Z [169196] Checking whether to label PR as stale. 2025-12-04T08:42:55.9873173Z [169196] Skipping because PR was updated recently 2025-12-04T08:42:55.9873651Z ##[endgroup] 2025-12-04T08:42:55.9874035Z ##[group]Processing PR #169200 2025-12-04T08:42:55.9874415Z [169200] URL: https://github.com/pytorch/pytorch/pull/169200 2025-12-04T08:42:55.9874822Z [169200] Checking whether to label PR as stale. 2025-12-04T08:42:55.9875200Z [169200] Skipping because PR was updated recently 2025-12-04T08:42:55.9875692Z ##[endgroup] 2025-12-04T08:42:55.9876065Z ##[group]Processing PR #169202 2025-12-04T08:42:55.9876430Z [169202] URL: https://github.com/pytorch/pytorch/pull/169202 2025-12-04T08:42:55.9876852Z [169202] Checking whether to label PR as stale. 2025-12-04T08:42:55.9877224Z [169202] Skipping because PR was updated recently 2025-12-04T08:42:55.9877718Z ##[endgroup] 2025-12-04T08:42:55.9878100Z ##[group]Processing PR #169203 2025-12-04T08:42:55.9878454Z [169203] URL: https://github.com/pytorch/pytorch/pull/169203 2025-12-04T08:42:55.9878882Z [169203] Checking whether to label PR as stale. 2025-12-04T08:42:55.9879245Z [169203] Skipping because PR was updated recently 2025-12-04T08:42:55.9879812Z ##[endgroup] 2025-12-04T08:42:55.9880202Z ##[group]Processing PR #169204 2025-12-04T08:42:55.9880565Z [169204] URL: https://github.com/pytorch/pytorch/pull/169204 2025-12-04T08:42:55.9880970Z [169204] Checking whether to label PR as stale. 2025-12-04T08:42:55.9890880Z [169204] Skipping because PR was updated recently 2025-12-04T08:42:55.9891571Z ##[endgroup] 2025-12-04T08:42:55.9891976Z ##[group]Processing PR #169206 2025-12-04T08:42:55.9892364Z [169206] URL: https://github.com/pytorch/pytorch/pull/169206 2025-12-04T08:42:55.9892785Z [169206] Checking whether to label PR as stale. 2025-12-04T08:42:55.9893175Z [169206] Skipping because PR was updated recently 2025-12-04T08:42:55.9893668Z ##[endgroup] 2025-12-04T08:42:55.9894060Z ##[group]Processing PR #169207 2025-12-04T08:42:55.9894418Z [169207] URL: https://github.com/pytorch/pytorch/pull/169207 2025-12-04T08:42:55.9894847Z [169207] Checking whether to label PR as stale. 2025-12-04T08:42:55.9895217Z [169207] Skipping because PR was updated recently 2025-12-04T08:42:55.9895707Z ##[endgroup] 2025-12-04T08:42:55.9896093Z ##[group]Processing PR #169211 2025-12-04T08:42:55.9896450Z [169211] URL: https://github.com/pytorch/pytorch/pull/169211 2025-12-04T08:42:55.9896871Z [169211] Checking whether to label PR as stale. 2025-12-04T08:42:55.9897237Z [169211] Skipping because PR was updated recently 2025-12-04T08:42:55.9897727Z ##[endgroup] 2025-12-04T08:42:55.9898117Z ##[group]Processing PR #169212 2025-12-04T08:42:55.9898484Z [169212] URL: https://github.com/pytorch/pytorch/pull/169212 2025-12-04T08:42:55.9898891Z [169212] Checking whether to label PR as stale. 2025-12-04T08:42:55.9899274Z [169212] Skipping because PR was updated recently 2025-12-04T08:42:55.9899764Z ##[endgroup] 2025-12-04T08:42:55.9900140Z ##[group]Processing PR #169214 2025-12-04T08:42:55.9900504Z [169214] URL: https://github.com/pytorch/pytorch/pull/169214 2025-12-04T08:42:55.9900925Z [169214] Checking whether to label PR as stale. 2025-12-04T08:42:55.9901293Z [169214] Skipping because PR was updated recently 2025-12-04T08:42:55.9901781Z ##[endgroup] 2025-12-04T08:42:55.9902167Z ##[group]Processing PR #169215 2025-12-04T08:42:55.9902519Z [169215] URL: https://github.com/pytorch/pytorch/pull/169215 2025-12-04T08:42:55.9902942Z [169215] Checking whether to label PR as stale. 2025-12-04T08:42:55.9903308Z [169215] Skipping because PR was updated recently 2025-12-04T08:42:55.9903794Z ##[endgroup] 2025-12-04T08:42:55.9904181Z ##[group]Processing PR #169216 2025-12-04T08:42:55.9904552Z [169216] URL: https://github.com/pytorch/pytorch/pull/169216 2025-12-04T08:42:55.9904961Z [169216] Checking whether to label PR as stale. 2025-12-04T08:42:55.9905484Z [169216] Skipping because PR was updated recently 2025-12-04T08:42:55.9905978Z ##[endgroup] 2025-12-04T08:42:55.9906357Z ##[group]Processing PR #169218 2025-12-04T08:42:55.9906728Z [169218] URL: https://github.com/pytorch/pytorch/pull/169218 2025-12-04T08:42:55.9907138Z [169218] Checking whether to label PR as stale. 2025-12-04T08:42:55.9907526Z [169218] Skipping because PR was updated recently 2025-12-04T08:42:55.9908022Z ##[endgroup] 2025-12-04T08:42:55.9908407Z ##[group]Processing PR #169219 2025-12-04T08:42:55.9908759Z [169219] URL: https://github.com/pytorch/pytorch/pull/169219 2025-12-04T08:42:55.9909177Z [169219] Checking whether to label PR as stale. 2025-12-04T08:42:55.9909541Z [169219] Skipping because PR was updated recently 2025-12-04T08:42:55.9910031Z ##[endgroup] 2025-12-04T08:42:55.9910418Z ##[group]Processing PR #169220 2025-12-04T08:42:55.9910784Z [169220] URL: https://github.com/pytorch/pytorch/pull/169220 2025-12-04T08:42:55.9911439Z [169220] Checking whether to label PR as stale. 2025-12-04T08:42:55.9911823Z [169220] Skipping because PR was updated recently 2025-12-04T08:42:55.9912307Z ##[endgroup] 2025-12-04T08:42:55.9912702Z ##[group]Processing PR #169229 2025-12-04T08:42:55.9913068Z [169229] URL: https://github.com/pytorch/pytorch/pull/169229 2025-12-04T08:42:55.9913476Z [169229] Checking whether to label PR as stale. 2025-12-04T08:42:55.9913961Z [169229] Skipping because PR was updated recently 2025-12-04T08:42:55.9914455Z ##[endgroup] 2025-12-04T08:42:55.9914845Z ##[group]Processing PR #169230 2025-12-04T08:42:55.9915199Z [169230] URL: https://github.com/pytorch/pytorch/pull/169230 2025-12-04T08:42:55.9915622Z [169230] Checking whether to label PR as stale. 2025-12-04T08:42:55.9915991Z [169230] Skipping because PR was updated recently 2025-12-04T08:42:55.9916482Z ##[endgroup] 2025-12-04T08:42:55.9916871Z ##[group]Processing PR #169231 2025-12-04T08:42:55.9917223Z [169231] URL: https://github.com/pytorch/pytorch/pull/169231 2025-12-04T08:42:55.9917653Z [169231] Checking whether to label PR as stale. 2025-12-04T08:42:55.9918026Z [169231] Skipping because PR was updated recently 2025-12-04T08:42:55.9918496Z ##[endgroup] 2025-12-04T08:42:55.9918877Z ##[group]Processing PR #169238 2025-12-04T08:42:55.9919243Z [169238] URL: https://github.com/pytorch/pytorch/pull/169238 2025-12-04T08:42:55.9919653Z [169238] Checking whether to label PR as stale. 2025-12-04T08:42:55.9920028Z [169238] Skipping because PR was updated recently 2025-12-04T08:42:55.9920515Z ##[endgroup] 2025-12-04T08:42:55.9920903Z ##[group]Processing PR #169240 2025-12-04T08:42:55.9921256Z [169240] URL: https://github.com/pytorch/pytorch/pull/169240 2025-12-04T08:42:55.9921680Z [169240] Checking whether to label PR as stale. 2025-12-04T08:42:55.9922044Z [169240] Skipping because PR was updated recently 2025-12-04T08:42:55.9922533Z ##[endgroup] 2025-12-04T08:42:55.9922923Z ##[group]Processing PR #169241 2025-12-04T08:42:55.9923278Z [169241] URL: https://github.com/pytorch/pytorch/pull/169241 2025-12-04T08:42:55.9923705Z [169241] Checking whether to label PR as stale. 2025-12-04T08:42:55.9924089Z [169241] Skipping because PR was updated recently 2025-12-04T08:42:55.9924564Z ##[endgroup] 2025-12-04T08:42:55.9924953Z ##[group]Processing PR #169242 2025-12-04T08:42:55.9925319Z [169242] URL: https://github.com/pytorch/pytorch/pull/169242 2025-12-04T08:42:55.9925730Z [169242] Checking whether to label PR as stale. 2025-12-04T08:42:55.9926106Z [169242] Skipping because PR was updated recently 2025-12-04T08:42:55.9926591Z ##[endgroup] 2025-12-04T08:42:55.9926978Z ##[group]Processing PR #169245 2025-12-04T08:42:55.9927332Z [169245] URL: https://github.com/pytorch/pytorch/pull/169245 2025-12-04T08:42:55.9927754Z [169245] Checking whether to label PR as stale. 2025-12-04T08:42:55.9928114Z [169245] Skipping because PR was updated recently 2025-12-04T08:42:55.9928595Z ##[endgroup] 2025-12-04T08:42:55.9928978Z ##[group]Processing PR #169246 2025-12-04T08:42:55.9929344Z [169246] URL: https://github.com/pytorch/pytorch/pull/169246 2025-12-04T08:42:55.9929837Z [169246] Checking whether to label PR as stale. 2025-12-04T08:42:55.9930223Z [169246] Skipping because PR was updated recently 2025-12-04T08:42:55.9930713Z ##[endgroup] 2025-12-04T08:42:55.9931091Z ##[group]Processing PR #169249 2025-12-04T08:42:55.9931581Z [169249] URL: https://github.com/pytorch/pytorch/pull/169249 2025-12-04T08:42:55.9931998Z [169249] Checking whether to label PR as stale. 2025-12-04T08:42:55.9932378Z [169249] Skipping because PR was updated recently 2025-12-04T08:42:55.9932879Z ##[endgroup] 2025-12-04T08:42:55.9933266Z ##[group]Processing PR #169250 2025-12-04T08:42:55.9933616Z [169250] URL: https://github.com/pytorch/pytorch/pull/169250 2025-12-04T08:42:55.9934605Z [169250] Checking whether to label PR as stale. 2025-12-04T08:42:55.9934971Z [169250] Skipping because PR was updated recently 2025-12-04T08:42:55.9935471Z ##[endgroup] 2025-12-04T08:42:55.9935859Z ##[group]Processing PR #169251 2025-12-04T08:42:55.9936224Z [169251] URL: https://github.com/pytorch/pytorch/pull/169251 2025-12-04T08:42:55.9936636Z [169251] Checking whether to label PR as stale. 2025-12-04T08:42:55.9937009Z [169251] Skipping because PR was updated recently 2025-12-04T08:42:55.9937477Z ##[endgroup] 2025-12-04T08:42:55.9937861Z ##[group]Processing PR #169254 2025-12-04T08:42:55.9938222Z [169254] URL: https://github.com/pytorch/pytorch/pull/169254 2025-12-04T08:42:55.9938816Z [169254] Checking whether to label PR as stale. 2025-12-04T08:42:55.9939194Z [169254] Skipping because PR was updated recently 2025-12-04T08:42:55.9939684Z ##[endgroup] 2025-12-04T08:42:55.9940070Z ##[group]Processing PR #169257 2025-12-04T08:42:55.9940418Z [169257] URL: https://github.com/pytorch/pytorch/pull/169257 2025-12-04T08:42:55.9940836Z [169257] Checking whether to label PR as stale. 2025-12-04T08:42:55.9941195Z [169257] Skipping because PR was updated recently 2025-12-04T08:42:55.9941677Z ##[endgroup] 2025-12-04T08:42:55.9942058Z ##[group]Processing PR #169258 2025-12-04T08:42:55.9942418Z [169258] URL: https://github.com/pytorch/pytorch/pull/169258 2025-12-04T08:42:55.9942838Z [169258] Checking whether to label PR as stale. 2025-12-04T08:42:55.9943210Z [169258] Skipping because PR was updated recently 2025-12-04T08:42:55.9943681Z ##[endgroup] 2025-12-04T08:42:55.9944068Z ##[group]Processing PR #169259 2025-12-04T08:42:55.9944437Z [169259] URL: https://github.com/pytorch/pytorch/pull/169259 2025-12-04T08:42:55.9944846Z [169259] Checking whether to label PR as stale. 2025-12-04T08:42:55.9945220Z [169259] Skipping because PR was updated recently 2025-12-04T08:42:55.9945700Z ##[endgroup] 2025-12-04T08:42:55.9946081Z ##[group]Processing PR #169260 2025-12-04T08:42:55.9946431Z [169260] URL: https://github.com/pytorch/pytorch/pull/169260 2025-12-04T08:42:55.9946847Z [169260] Checking whether to label PR as stale. 2025-12-04T08:42:55.9947206Z [169260] Skipping because PR was updated recently 2025-12-04T08:42:55.9947689Z ##[endgroup] 2025-12-04T08:42:55.9948072Z ##[group]Processing PR #169261 2025-12-04T08:42:55.9948429Z [169261] URL: https://github.com/pytorch/pytorch/pull/169261 2025-12-04T08:42:55.9948848Z [169261] Checking whether to label PR as stale. 2025-12-04T08:42:55.9949225Z [169261] Skipping because PR was updated recently 2025-12-04T08:42:55.9949695Z ##[endgroup] 2025-12-04T08:42:55.9950079Z ##[group]Processing PR #169262 2025-12-04T08:42:55.9950447Z [169262] URL: https://github.com/pytorch/pytorch/pull/169262 2025-12-04T08:42:55.9950851Z [169262] Checking whether to label PR as stale. 2025-12-04T08:42:55.9951226Z [169262] Skipping because PR was updated recently 2025-12-04T08:42:55.9951710Z ##[endgroup] 2025-12-04T08:42:55.9952079Z ##[group]Processing PR #169263 2025-12-04T08:42:55.9952442Z [169263] URL: https://github.com/pytorch/pytorch/pull/169263 2025-12-04T08:42:55.9952857Z [169263] Checking whether to label PR as stale. 2025-12-04T08:42:55.9953218Z [169263] Skipping because PR was updated recently 2025-12-04T08:42:55.9953698Z ##[endgroup] 2025-12-04T08:42:55.9954076Z ##[group]Processing PR #169264 2025-12-04T08:42:55.9954739Z [169264] URL: https://github.com/pytorch/pytorch/pull/169264 2025-12-04T08:42:55.9955159Z [169264] Checking whether to label PR as stale. 2025-12-04T08:42:55.9955523Z [169264] Skipping because PR was updated recently 2025-12-04T08:42:55.9956012Z ##[endgroup] 2025-12-04T08:42:55.9956397Z ##[group]Processing PR #169265 2025-12-04T08:42:55.9956764Z [169265] URL: https://github.com/pytorch/pytorch/pull/169265 2025-12-04T08:42:55.9957166Z [169265] Checking whether to label PR as stale. 2025-12-04T08:42:55.9957538Z [169265] Skipping because PR was updated recently 2025-12-04T08:42:55.9958021Z ##[endgroup] 2025-12-04T08:42:57.0592591Z ##[group]Processing PR #169267 2025-12-04T08:42:57.0593259Z [169267] URL: https://github.com/pytorch/pytorch/pull/169267 2025-12-04T08:42:57.0593957Z [169267] Checking whether to label PR as stale. 2025-12-04T08:42:57.0594581Z [169267] Skipping because PR was updated recently 2025-12-04T08:42:57.0595432Z ##[endgroup] 2025-12-04T08:42:57.0596102Z ##[group]Processing PR #169270 2025-12-04T08:42:57.0596688Z [169270] URL: https://github.com/pytorch/pytorch/pull/169270 2025-12-04T08:42:57.0597850Z [169270] Checking whether to label PR as stale. 2025-12-04T08:42:57.0598592Z [169270] Skipping because PR was updated recently 2025-12-04T08:42:57.0599555Z ##[endgroup] 2025-12-04T08:42:57.0600330Z ##[group]Processing PR #169271 2025-12-04T08:42:57.0601518Z [169271] URL: https://github.com/pytorch/pytorch/pull/169271 2025-12-04T08:42:57.0602397Z [169271] Checking whether to label PR as stale. 2025-12-04T08:42:57.0603168Z [169271] Skipping because PR was updated recently 2025-12-04T08:42:57.0604140Z ##[endgroup] 2025-12-04T08:42:57.0604917Z ##[group]Processing PR #169273 2025-12-04T08:42:57.0605629Z [169273] URL: https://github.com/pytorch/pytorch/pull/169273 2025-12-04T08:42:57.0606444Z [169273] Checking whether to label PR as stale. 2025-12-04T08:42:57.0607190Z [169273] Skipping because PR was updated recently 2025-12-04T08:42:57.0608128Z ##[endgroup] 2025-12-04T08:42:57.0608905Z ##[group]Processing PR #169274 2025-12-04T08:42:57.0609641Z [169274] URL: https://github.com/pytorch/pytorch/pull/169274 2025-12-04T08:42:57.0610447Z [169274] Checking whether to label PR as stale. 2025-12-04T08:42:57.0611190Z [169274] Skipping because PR was updated recently 2025-12-04T08:42:57.0612229Z ##[endgroup] 2025-12-04T08:42:57.0613005Z ##[group]Processing PR #169279 2025-12-04T08:42:57.0613737Z [169279] URL: https://github.com/pytorch/pytorch/pull/169279 2025-12-04T08:42:57.0614553Z [169279] Checking whether to label PR as stale. 2025-12-04T08:42:57.0615306Z [169279] Skipping because PR was updated recently 2025-12-04T08:42:57.0616240Z ##[endgroup] 2025-12-04T08:42:57.0616995Z ##[group]Processing PR #169280 2025-12-04T08:42:57.0617730Z [169280] URL: https://github.com/pytorch/pytorch/pull/169280 2025-12-04T08:42:57.0618524Z [169280] Checking whether to label PR as stale. 2025-12-04T08:42:57.0619279Z [169280] Skipping because PR was updated recently 2025-12-04T08:42:57.0620236Z ##[endgroup] 2025-12-04T08:42:57.0620983Z ##[group]Processing PR #169281 2025-12-04T08:42:57.0621698Z [169281] URL: https://github.com/pytorch/pytorch/pull/169281 2025-12-04T08:42:57.0622515Z [169281] Checking whether to label PR as stale. 2025-12-04T08:42:57.0623260Z [169281] Skipping because PR was updated recently 2025-12-04T08:42:57.0624203Z ##[endgroup] 2025-12-04T08:42:57.0624958Z ##[group]Processing PR #169282 2025-12-04T08:42:57.0625691Z [169282] URL: https://github.com/pytorch/pytorch/pull/169282 2025-12-04T08:42:57.0626500Z [169282] Checking whether to label PR as stale. 2025-12-04T08:42:57.0627256Z [169282] Skipping because PR was updated recently 2025-12-04T08:42:57.0628047Z ##[endgroup] 2025-12-04T08:42:57.0628678Z ##[group]Processing PR #169284 2025-12-04T08:42:57.0631607Z [169284] URL: https://github.com/pytorch/pytorch/pull/169284 2025-12-04T08:42:57.0632303Z [169284] Checking whether to label PR as stale. 2025-12-04T08:42:57.0632917Z [169284] Skipping because PR was updated recently 2025-12-04T08:42:57.0634356Z ##[endgroup] 2025-12-04T08:42:57.0634992Z ##[group]Processing PR #169285 2025-12-04T08:42:57.0635534Z [169285] URL: https://github.com/pytorch/pytorch/pull/169285 2025-12-04T08:42:57.0636105Z [169285] Checking whether to label PR as stale. 2025-12-04T08:42:57.0636652Z [169285] Skipping because PR was updated recently 2025-12-04T08:42:57.0637435Z ##[endgroup] 2025-12-04T08:42:57.0638015Z ##[group]Processing PR #169286 2025-12-04T08:42:57.0638508Z [169286] URL: https://github.com/pytorch/pytorch/pull/169286 2025-12-04T08:42:57.0639151Z [169286] Checking whether to label PR as stale. 2025-12-04T08:42:57.0639683Z [169286] Skipping because PR was updated recently 2025-12-04T08:42:57.0640414Z ##[endgroup] 2025-12-04T08:42:57.0640996Z ##[group]Processing PR #169287 2025-12-04T08:42:57.0641505Z [169287] URL: https://github.com/pytorch/pytorch/pull/169287 2025-12-04T08:42:57.0642173Z [169287] Checking whether to label PR as stale. 2025-12-04T08:42:57.0642758Z [169287] Skipping because PR was updated recently 2025-12-04T08:42:57.0643508Z ##[endgroup] 2025-12-04T08:42:57.0644062Z ##[group]Processing PR #169288 2025-12-04T08:42:57.0644554Z [169288] URL: https://github.com/pytorch/pytorch/pull/169288 2025-12-04T08:42:57.0645124Z [169288] Checking whether to label PR as stale. 2025-12-04T08:42:57.0645654Z [169288] Skipping because PR was updated recently 2025-12-04T08:42:57.0646337Z ##[endgroup] 2025-12-04T08:42:57.0647048Z ##[group]Processing PR #169292 2025-12-04T08:42:57.0647415Z [169292] URL: https://github.com/pytorch/pytorch/pull/169292 2025-12-04T08:42:57.0647843Z [169292] Checking whether to label PR as stale. 2025-12-04T08:42:57.0648207Z [169292] Skipping because PR was updated recently 2025-12-04T08:42:57.0648697Z ##[endgroup] 2025-12-04T08:42:57.0649086Z ##[group]Processing PR #169293 2025-12-04T08:42:57.0649457Z [169293] URL: https://github.com/pytorch/pytorch/pull/169293 2025-12-04T08:42:57.0649862Z [169293] Checking whether to label PR as stale. 2025-12-04T08:42:57.0650238Z [169293] Skipping because PR was updated recently 2025-12-04T08:42:57.0650727Z ##[endgroup] 2025-12-04T08:42:57.0651167Z ##[group]Processing PR #169295 2025-12-04T08:42:57.0651676Z [169295] URL: https://github.com/pytorch/pytorch/pull/169295 2025-12-04T08:42:57.0652099Z [169295] Checking whether to label PR as stale. 2025-12-04T08:42:57.0652462Z [169295] Skipping because PR was updated recently 2025-12-04T08:42:57.0652956Z ##[endgroup] 2025-12-04T08:42:57.0653342Z ##[group]Processing PR #169296 2025-12-04T08:42:57.0653696Z [169296] URL: https://github.com/pytorch/pytorch/pull/169296 2025-12-04T08:42:57.0654113Z [169296] Checking whether to label PR as stale. 2025-12-04T08:42:57.0654476Z [169296] Skipping because PR was updated recently 2025-12-04T08:42:57.0654963Z ##[endgroup] 2025-12-04T08:42:57.0655351Z ##[group]Processing PR #169297 2025-12-04T08:42:57.0655714Z [169297] URL: https://github.com/pytorch/pytorch/pull/169297 2025-12-04T08:42:57.0656117Z [169297] Checking whether to label PR as stale. 2025-12-04T08:42:57.0656700Z [169297] Skipping because PR was updated recently 2025-12-04T08:42:57.0657199Z ##[endgroup] 2025-12-04T08:42:57.0657569Z ##[group]Processing PR #169299 2025-12-04T08:42:57.0657935Z [169299] URL: https://github.com/pytorch/pytorch/pull/169299 2025-12-04T08:42:57.0658342Z [169299] Checking whether to label PR as stale. 2025-12-04T08:42:57.0658715Z [169299] Skipping because PR was updated recently 2025-12-04T08:42:57.0659204Z ##[endgroup] 2025-12-04T08:42:57.0659591Z ##[group]Processing PR #169301 2025-12-04T08:42:57.0659945Z [169301] URL: https://github.com/pytorch/pytorch/pull/169301 2025-12-04T08:42:57.0660364Z [169301] Checking whether to label PR as stale. 2025-12-04T08:42:57.0660726Z [169301] Skipping because PR was updated recently 2025-12-04T08:42:57.0661209Z ##[endgroup] 2025-12-04T08:42:57.0661593Z ##[group]Processing PR #169302 2025-12-04T08:42:57.0661943Z [169302] URL: https://github.com/pytorch/pytorch/pull/169302 2025-12-04T08:42:57.0662362Z [169302] Checking whether to label PR as stale. 2025-12-04T08:42:57.0662951Z [169302] Skipping because PR was updated recently 2025-12-04T08:42:57.0663425Z ##[endgroup] 2025-12-04T08:42:57.0663817Z ##[group]Processing PR #169303 2025-12-04T08:42:57.0664187Z [169303] URL: https://github.com/pytorch/pytorch/pull/169303 2025-12-04T08:42:57.0664590Z [169303] Checking whether to label PR as stale. 2025-12-04T08:42:57.0664966Z [169303] Skipping because PR was updated recently 2025-12-04T08:42:57.0665446Z ##[endgroup] 2025-12-04T08:42:57.0665826Z ##[group]Processing PR #169304 2025-12-04T08:42:57.0666174Z [169304] URL: https://github.com/pytorch/pytorch/pull/169304 2025-12-04T08:42:57.0666594Z [169304] Checking whether to label PR as stale. 2025-12-04T08:42:57.0666955Z [169304] Skipping because PR was updated recently 2025-12-04T08:42:57.0667432Z ##[endgroup] 2025-12-04T08:42:57.0667810Z ##[group]Processing PR #169305 2025-12-04T08:42:57.0668160Z [169305] URL: https://github.com/pytorch/pytorch/pull/169305 2025-12-04T08:42:57.0668575Z [169305] Checking whether to label PR as stale. 2025-12-04T08:42:57.0668953Z [169305] Skipping because PR was updated recently 2025-12-04T08:42:57.0669421Z ##[endgroup] 2025-12-04T08:42:57.0669803Z ##[group]Processing PR #169308 2025-12-04T08:42:57.0670170Z [169308] URL: https://github.com/pytorch/pytorch/pull/169308 2025-12-04T08:42:57.0670573Z [169308] Checking whether to label PR as stale. 2025-12-04T08:42:57.0671023Z [169308] Skipping because PR was updated recently 2025-12-04T08:42:57.0671509Z ##[endgroup] 2025-12-04T08:42:57.0671879Z ##[group]Processing PR #169312 2025-12-04T08:42:57.0672244Z [169312] URL: https://github.com/pytorch/pytorch/pull/169312 2025-12-04T08:42:57.0672665Z [169312] Checking whether to label PR as stale. 2025-12-04T08:42:57.0673030Z [169312] Skipping because PR was updated recently 2025-12-04T08:42:57.0673513Z ##[endgroup] 2025-12-04T08:42:57.0673893Z ##[group]Processing PR #169315 2025-12-04T08:42:57.0674242Z [169315] URL: https://github.com/pytorch/pytorch/pull/169315 2025-12-04T08:42:57.0674659Z [169315] Checking whether to label PR as stale. 2025-12-04T08:42:57.0675024Z [169315] Skipping because PR was updated recently 2025-12-04T08:42:57.0675510Z ##[endgroup] 2025-12-04T08:42:57.0675893Z ##[group]Processing PR #169317 2025-12-04T08:42:57.0676262Z [169317] URL: https://github.com/pytorch/pytorch/pull/169317 2025-12-04T08:42:57.0676671Z [169317] Checking whether to label PR as stale. 2025-12-04T08:42:57.0677049Z [169317] Skipping because PR was updated recently 2025-12-04T08:42:57.0677537Z ##[endgroup] 2025-12-04T08:42:57.0677910Z ##[group]Processing PR #169319 2025-12-04T08:42:57.0678275Z [169319] URL: https://github.com/pytorch/pytorch/pull/169319 2025-12-04T08:42:57.0678693Z [169319] Checking whether to label PR as stale. 2025-12-04T08:42:57.0679054Z [169319] Skipping because PR was updated recently 2025-12-04T08:42:57.0679537Z ##[endgroup] 2025-12-04T08:42:57.0679915Z ##[group]Processing PR #169321 2025-12-04T08:42:57.0680266Z [169321] URL: https://github.com/pytorch/pytorch/pull/169321 2025-12-04T08:42:57.0680689Z [169321] Checking whether to label PR as stale. 2025-12-04T08:42:57.0681047Z [169321] Skipping because PR was updated recently 2025-12-04T08:42:57.0681525Z ##[endgroup] 2025-12-04T08:42:57.0681906Z ##[group]Processing PR #169322 2025-12-04T08:42:57.0682265Z [169322] URL: https://github.com/pytorch/pytorch/pull/169322 2025-12-04T08:42:57.0682697Z [169322] Checking whether to label PR as stale. 2025-12-04T08:42:57.0683076Z [169322] Skipping because PR was updated recently 2025-12-04T08:42:57.0683567Z ##[endgroup] 2025-12-04T08:42:57.0683949Z ##[group]Processing PR #169325 2025-12-04T08:42:57.0684302Z [169325] URL: https://github.com/pytorch/pytorch/pull/169325 2025-12-04T08:42:57.0684726Z [169325] Checking whether to label PR as stale. 2025-12-04T08:42:57.0685092Z [169325] Skipping because PR was updated recently 2025-12-04T08:42:57.0685592Z ##[endgroup] 2025-12-04T08:42:57.0685981Z ##[group]Processing PR #169326 2025-12-04T08:42:57.0686335Z [169326] URL: https://github.com/pytorch/pytorch/pull/169326 2025-12-04T08:42:57.0686836Z [169326] Checking whether to label PR as stale. 2025-12-04T08:42:57.0687212Z [169326] Skipping because PR was updated recently 2025-12-04T08:42:57.0687690Z ##[endgroup] 2025-12-04T08:42:57.0688077Z ##[group]Processing PR #169327 2025-12-04T08:42:57.0688444Z [169327] URL: https://github.com/pytorch/pytorch/pull/169327 2025-12-04T08:42:57.0688856Z [169327] Checking whether to label PR as stale. 2025-12-04T08:42:57.0689228Z [169327] Skipping because PR was updated recently 2025-12-04T08:42:57.0689711Z ##[endgroup] 2025-12-04T08:42:57.0690081Z ##[group]Processing PR #169328 2025-12-04T08:42:57.0690443Z [169328] URL: https://github.com/pytorch/pytorch/pull/169328 2025-12-04T08:42:57.0690856Z [169328] Checking whether to label PR as stale. 2025-12-04T08:42:57.0691215Z [169328] Skipping because PR was updated recently 2025-12-04T08:42:57.0691840Z ##[endgroup] 2025-12-04T08:42:57.0692222Z ##[group]Processing PR #169332 2025-12-04T08:42:57.0692576Z [169332] URL: https://github.com/pytorch/pytorch/pull/169332 2025-12-04T08:42:57.0692997Z [169332] Checking whether to label PR as stale. 2025-12-04T08:42:57.0693359Z [169332] Skipping because PR was updated recently 2025-12-04T08:42:57.0693840Z ##[endgroup] 2025-12-04T08:42:57.0694227Z ##[group]Processing PR #169333 2025-12-04T08:42:57.0694594Z [169333] URL: https://github.com/pytorch/pytorch/pull/169333 2025-12-04T08:42:57.0695086Z [169333] Checking whether to label PR as stale. 2025-12-04T08:42:57.0695467Z [169333] Skipping because PR was updated recently 2025-12-04T08:42:57.0695958Z ##[endgroup] 2025-12-04T08:42:57.0696327Z ##[group]Processing PR #169334 2025-12-04T08:42:57.0696695Z [169334] URL: https://github.com/pytorch/pytorch/pull/169334 2025-12-04T08:42:57.0697101Z [169334] Checking whether to label PR as stale. 2025-12-04T08:42:57.0697474Z [169334] Skipping because PR was updated recently 2025-12-04T08:42:57.0697958Z ##[endgroup] 2025-12-04T08:42:57.0698339Z ##[group]Processing PR #169336 2025-12-04T08:42:57.0698691Z [169336] URL: https://github.com/pytorch/pytorch/pull/169336 2025-12-04T08:42:57.0699117Z [169336] Checking whether to label PR as stale. 2025-12-04T08:42:57.0699477Z [169336] Skipping because PR was updated recently 2025-12-04T08:42:57.0699962Z ##[endgroup] 2025-12-04T08:42:57.0700346Z ##[group]Processing PR #169337 2025-12-04T08:42:57.0700711Z [169337] URL: https://github.com/pytorch/pytorch/pull/169337 2025-12-04T08:42:57.0701121Z [169337] Checking whether to label PR as stale. 2025-12-04T08:42:57.0701493Z [169337] Skipping because PR was updated recently 2025-12-04T08:42:57.0701965Z ##[endgroup] 2025-12-04T08:42:57.0702349Z ##[group]Processing PR #169338 2025-12-04T08:42:57.0702715Z [169338] URL: https://github.com/pytorch/pytorch/pull/169338 2025-12-04T08:42:57.0703118Z [169338] Checking whether to label PR as stale. 2025-12-04T08:42:57.0703492Z [169338] Skipping because PR was updated recently 2025-12-04T08:42:57.0703972Z ##[endgroup] 2025-12-04T08:42:57.0704355Z ##[group]Processing PR #169339 2025-12-04T08:42:57.0704710Z [169339] URL: https://github.com/pytorch/pytorch/pull/169339 2025-12-04T08:42:57.0705127Z [169339] Checking whether to label PR as stale. 2025-12-04T08:42:57.0705484Z [169339] Skipping because PR was updated recently 2025-12-04T08:42:57.0705967Z ##[endgroup] 2025-12-04T08:42:57.0706351Z ##[group]Processing PR #169340 2025-12-04T08:42:57.0706700Z [169340] URL: https://github.com/pytorch/pytorch/pull/169340 2025-12-04T08:42:57.0707120Z [169340] Checking whether to label PR as stale. 2025-12-04T08:42:57.0707489Z [169340] Skipping because PR was updated recently 2025-12-04T08:42:57.0707960Z ##[endgroup] 2025-12-04T08:42:57.0708338Z ##[group]Processing PR #169341 2025-12-04T08:42:57.0708705Z [169341] URL: https://github.com/pytorch/pytorch/pull/169341 2025-12-04T08:42:57.0709114Z [169341] Checking whether to label PR as stale. 2025-12-04T08:42:57.0709489Z [169341] Skipping because PR was updated recently 2025-12-04T08:42:57.0709969Z ##[endgroup] 2025-12-04T08:42:57.0710350Z ##[group]Processing PR #169343 2025-12-04T08:42:57.0710800Z [169343] URL: https://github.com/pytorch/pytorch/pull/169343 2025-12-04T08:42:57.0711222Z [169343] Checking whether to label PR as stale. 2025-12-04T08:42:57.0711587Z [169343] Skipping because PR was updated recently 2025-12-04T08:42:57.0712076Z ##[endgroup] 2025-12-04T08:42:57.0712467Z ##[group]Processing PR #169344 2025-12-04T08:42:57.0712825Z [169344] URL: https://github.com/pytorch/pytorch/pull/169344 2025-12-04T08:42:57.0713245Z [169344] Checking whether to label PR as stale. 2025-12-04T08:42:57.0713619Z [169344] Skipping because PR was updated recently 2025-12-04T08:42:57.0714089Z ##[endgroup] 2025-12-04T08:42:57.0714469Z ##[group]Processing PR #169346 2025-12-04T08:42:57.0714833Z [169346] URL: https://github.com/pytorch/pytorch/pull/169346 2025-12-04T08:42:57.0715238Z [169346] Checking whether to label PR as stale. 2025-12-04T08:42:57.0715613Z [169346] Skipping because PR was updated recently 2025-12-04T08:42:57.0716098Z ##[endgroup] 2025-12-04T08:42:57.0716470Z ##[group]Processing PR #169348 2025-12-04T08:42:57.0716842Z [169348] URL: https://github.com/pytorch/pytorch/pull/169348 2025-12-04T08:42:57.0717262Z [169348] Checking whether to label PR as stale. 2025-12-04T08:42:57.0717630Z [169348] Skipping because PR was updated recently 2025-12-04T08:42:57.0718123Z ##[endgroup] 2025-12-04T08:42:57.0718513Z ##[group]Processing PR #169350 2025-12-04T08:42:57.0718952Z [169350] URL: https://github.com/pytorch/pytorch/pull/169350 2025-12-04T08:42:57.0719379Z [169350] Checking whether to label PR as stale. 2025-12-04T08:42:57.0719744Z [169350] Skipping because PR was updated recently 2025-12-04T08:42:57.0720237Z ##[endgroup] 2025-12-04T08:42:57.0720627Z ##[group]Processing PR #169353 2025-12-04T08:42:57.0720997Z [169353] URL: https://github.com/pytorch/pytorch/pull/169353 2025-12-04T08:42:57.0721406Z [169353] Checking whether to label PR as stale. 2025-12-04T08:42:57.0721789Z [169353] Skipping because PR was updated recently 2025-12-04T08:42:57.0722275Z ##[endgroup] 2025-12-04T08:42:57.0722650Z ##[group]Processing PR #169354 2025-12-04T08:42:57.0723016Z [169354] URL: https://github.com/pytorch/pytorch/pull/169354 2025-12-04T08:42:57.0723418Z [169354] Checking whether to label PR as stale. 2025-12-04T08:42:57.0723793Z [169354] Skipping because PR was updated recently 2025-12-04T08:42:57.0724278Z ##[endgroup] 2025-12-04T08:42:57.0724659Z ##[group]Processing PR #169355 2025-12-04T08:42:57.0725014Z [169355] URL: https://github.com/pytorch/pytorch/pull/169355 2025-12-04T08:42:57.0725429Z [169355] Checking whether to label PR as stale. 2025-12-04T08:42:57.0725788Z [169355] Skipping because PR was updated recently 2025-12-04T08:42:57.0726270Z ##[endgroup] 2025-12-04T08:42:57.0726653Z ##[group]Processing PR #169356 2025-12-04T08:42:57.0727017Z [169356] URL: https://github.com/pytorch/pytorch/pull/169356 2025-12-04T08:42:57.0727424Z [169356] Checking whether to label PR as stale. 2025-12-04T08:42:57.0727802Z [169356] Skipping because PR was updated recently 2025-12-04T08:42:57.0728280Z ##[endgroup] 2025-12-04T08:42:57.0728669Z ##[group]Processing PR #169358 2025-12-04T08:42:57.0729040Z [169358] URL: https://github.com/pytorch/pytorch/pull/169358 2025-12-04T08:42:57.0729449Z [169358] Checking whether to label PR as stale. 2025-12-04T08:42:57.0729826Z [169358] Skipping because PR was updated recently 2025-12-04T08:42:57.0730316Z ##[endgroup] 2025-12-04T08:42:57.0730697Z ##[group]Processing PR #169359 2025-12-04T08:42:57.0731053Z [169359] URL: https://github.com/pytorch/pytorch/pull/169359 2025-12-04T08:42:57.0731671Z [169359] Checking whether to label PR as stale. 2025-12-04T08:42:57.0732034Z [169359] Skipping because PR was updated recently 2025-12-04T08:42:57.0732525Z ##[endgroup] 2025-12-04T08:42:57.0732912Z ##[group]Processing PR #169360 2025-12-04T08:42:57.0733265Z [169360] URL: https://github.com/pytorch/pytorch/pull/169360 2025-12-04T08:42:57.0733687Z [169360] Checking whether to label PR as stale. 2025-12-04T08:42:57.0734566Z [169360] Skipping because PR was updated recently 2025-12-04T08:42:57.0735253Z ##[endgroup] 2025-12-04T08:42:57.0735644Z ##[group]Processing PR #169362 2025-12-04T08:42:57.0736018Z [169362] URL: https://github.com/pytorch/pytorch/pull/169362 2025-12-04T08:42:57.0736429Z [169362] Checking whether to label PR as stale. 2025-12-04T08:42:57.0736807Z [169362] Skipping because PR was updated recently 2025-12-04T08:42:57.0737291Z ##[endgroup] 2025-12-04T08:42:57.0737674Z ##[group]Processing PR #169363 2025-12-04T08:42:57.0738025Z [169363] URL: https://github.com/pytorch/pytorch/pull/169363 2025-12-04T08:42:57.0738443Z [169363] Checking whether to label PR as stale. 2025-12-04T08:42:57.0738803Z [169363] Skipping because PR was updated recently 2025-12-04T08:42:57.0739286Z ##[endgroup] 2025-12-04T08:42:57.0739671Z ##[group]Processing PR #169364 2025-12-04T08:42:57.0740020Z [169364] URL: https://github.com/pytorch/pytorch/pull/169364 2025-12-04T08:42:57.0740435Z [169364] Checking whether to label PR as stale. 2025-12-04T08:42:57.0740810Z [169364] Skipping because PR was updated recently 2025-12-04T08:42:57.0741284Z ##[endgroup] 2025-12-04T08:42:57.0741660Z ##[group]Processing PR #169365 2025-12-04T08:42:57.0742022Z [169365] URL: https://github.com/pytorch/pytorch/pull/169365 2025-12-04T08:42:57.0742425Z [169365] Checking whether to label PR as stale. 2025-12-04T08:42:57.0742796Z [169365] Skipping because PR was updated recently 2025-12-04T08:42:57.0743281Z ##[endgroup] 2025-12-04T08:42:57.0743775Z ##[group]Processing PR #169366 2025-12-04T08:42:57.0744147Z [169366] URL: https://github.com/pytorch/pytorch/pull/169366 2025-12-04T08:42:57.0744567Z [169366] Checking whether to label PR as stale. 2025-12-04T08:42:57.0744929Z [169366] Skipping because PR was updated recently 2025-12-04T08:42:57.0745420Z ##[endgroup] 2025-12-04T08:42:57.0745803Z ##[group]Processing PR #169367 2025-12-04T08:42:57.0746154Z [169367] URL: https://github.com/pytorch/pytorch/pull/169367 2025-12-04T08:42:57.0746573Z [169367] Checking whether to label PR as stale. 2025-12-04T08:42:57.0746934Z [169367] Skipping because PR was updated recently 2025-12-04T08:42:57.0747426Z ##[endgroup] 2025-12-04T08:42:57.0747815Z ##[group]Processing PR #169368 2025-12-04T08:42:57.0748183Z [169368] URL: https://github.com/pytorch/pytorch/pull/169368 2025-12-04T08:42:57.0748591Z [169368] Checking whether to label PR as stale. 2025-12-04T08:42:57.0748965Z [169368] Skipping because PR was updated recently 2025-12-04T08:42:57.0749447Z ##[endgroup] 2025-12-04T08:42:57.0749819Z ##[group]Processing PR #169370 2025-12-04T08:42:57.0750178Z [169370] URL: https://github.com/pytorch/pytorch/pull/169370 2025-12-04T08:42:57.0750595Z [169370] Checking whether to label PR as stale. 2025-12-04T08:42:57.0750956Z [169370] Skipping because PR was updated recently 2025-12-04T08:42:57.0751466Z ##[endgroup] 2025-12-04T08:42:57.0751853Z ##[group]Processing PR #169372 2025-12-04T08:42:57.0752205Z [169372] URL: https://github.com/pytorch/pytorch/pull/169372 2025-12-04T08:42:57.0752629Z [169372] Checking whether to label PR as stale. 2025-12-04T08:42:57.0752990Z [169372] Skipping because PR was updated recently 2025-12-04T08:42:57.0753488Z ##[endgroup] 2025-12-04T08:42:57.0753878Z ##[group]Processing PR #169373 2025-12-04T08:42:57.0754249Z [169373] URL: https://github.com/pytorch/pytorch/pull/169373 2025-12-04T08:42:57.0754656Z [169373] Checking whether to label PR as stale. 2025-12-04T08:42:57.0755035Z [169373] Skipping because PR was updated recently 2025-12-04T08:42:57.0755529Z ##[endgroup] 2025-12-04T08:42:57.0755901Z ##[group]Processing PR #169374 2025-12-04T08:42:57.0756267Z [169374] URL: https://github.com/pytorch/pytorch/pull/169374 2025-12-04T08:42:57.0756672Z [169374] Checking whether to label PR as stale. 2025-12-04T08:42:57.0757051Z [169374] Skipping because PR was updated recently 2025-12-04T08:42:57.0766570Z ##[endgroup] 2025-12-04T08:42:57.0767193Z ##[group]Processing PR #169375 2025-12-04T08:42:57.0767576Z [169375] URL: https://github.com/pytorch/pytorch/pull/169375 2025-12-04T08:42:57.0768014Z [169375] Checking whether to label PR as stale. 2025-12-04T08:42:57.0768567Z [169375] Skipping because PR was updated recently 2025-12-04T08:42:57.0769077Z ##[endgroup] 2025-12-04T08:42:57.0769475Z ##[group]Processing PR #169377 2025-12-04T08:42:57.0769848Z [169377] URL: https://github.com/pytorch/pytorch/pull/169377 2025-12-04T08:42:57.0770260Z [169377] Checking whether to label PR as stale. 2025-12-04T08:42:57.0770644Z [169377] Skipping because PR was updated recently 2025-12-04T08:42:57.0771126Z ##[endgroup] 2025-12-04T08:42:57.0771671Z ##[group]Processing PR #169379 2025-12-04T08:42:57.0772045Z [169379] URL: https://github.com/pytorch/pytorch/pull/169379 2025-12-04T08:42:57.0772457Z [169379] Checking whether to label PR as stale. 2025-12-04T08:42:57.0772835Z [169379] Skipping because PR was updated recently 2025-12-04T08:42:57.0773329Z ##[endgroup] 2025-12-04T08:42:57.0773717Z ##[group]Processing PR #169380 2025-12-04T08:42:57.0774074Z [169380] URL: https://github.com/pytorch/pytorch/pull/169380 2025-12-04T08:42:57.0774500Z [169380] Checking whether to label PR as stale. 2025-12-04T08:42:57.0774868Z [169380] Skipping because PR was updated recently 2025-12-04T08:42:57.0775362Z ##[endgroup] 2025-12-04T08:42:57.0775751Z ##[group]Processing PR #169382 2025-12-04T08:42:57.0776103Z [169382] URL: https://github.com/pytorch/pytorch/pull/169382 2025-12-04T08:42:57.0776523Z [169382] Checking whether to label PR as stale. 2025-12-04T08:42:57.0776991Z [169382] Skipping because PR was updated recently 2025-12-04T08:42:57.0777466Z ##[endgroup] 2025-12-04T08:42:57.0777852Z ##[group]Processing PR #169385 2025-12-04T08:42:57.0778222Z [169385] URL: https://github.com/pytorch/pytorch/pull/169385 2025-12-04T08:42:57.0778628Z [169385] Checking whether to label PR as stale. 2025-12-04T08:42:57.0779006Z [169385] Skipping because PR was updated recently 2025-12-04T08:42:57.0779493Z ##[endgroup] 2025-12-04T08:42:57.0779884Z ##[group]Processing PR #169387 2025-12-04T08:42:57.0780241Z [169387] URL: https://github.com/pytorch/pytorch/pull/169387 2025-12-04T08:42:57.0780663Z [169387] Checking whether to label PR as stale. 2025-12-04T08:42:57.0781034Z [169387] Skipping because PR was updated recently 2025-12-04T08:42:57.0781526Z ##[endgroup] 2025-12-04T08:42:57.0781913Z ##[group]Processing PR #169389 2025-12-04T08:42:57.0782265Z [169389] URL: https://github.com/pytorch/pytorch/pull/169389 2025-12-04T08:42:57.0782690Z [169389] Checking whether to label PR as stale. 2025-12-04T08:42:57.0783073Z [169389] Skipping because PR was updated recently 2025-12-04T08:42:57.0783545Z ##[endgroup] 2025-12-04T08:42:57.0783933Z ##[group]Processing PR #169391 2025-12-04T08:42:57.0784299Z [169391] URL: https://github.com/pytorch/pytorch/pull/169391 2025-12-04T08:42:57.0784709Z [169391] Checking whether to label PR as stale. 2025-12-04T08:42:57.0785085Z [169391] Skipping because PR was updated recently 2025-12-04T08:42:57.0785572Z ##[endgroup] 2025-12-04T08:42:57.0785945Z ##[group]Processing PR #169393 2025-12-04T08:42:57.0786316Z [169393] URL: https://github.com/pytorch/pytorch/pull/169393 2025-12-04T08:42:57.0786738Z [169393] Checking whether to label PR as stale. 2025-12-04T08:42:57.0787110Z [169393] Skipping because PR was updated recently 2025-12-04T08:42:57.0787596Z ##[endgroup] 2025-12-04T08:42:57.0787982Z ##[group]Processing PR #169395 2025-12-04T08:42:57.0788334Z [169395] URL: https://github.com/pytorch/pytorch/pull/169395 2025-12-04T08:42:57.0788752Z [169395] Checking whether to label PR as stale. 2025-12-04T08:42:57.0789120Z [169395] Skipping because PR was updated recently 2025-12-04T08:42:57.0789607Z ##[endgroup] 2025-12-04T08:42:57.0789998Z ##[group]Processing PR #169399 2025-12-04T08:42:57.0790370Z [169399] URL: https://github.com/pytorch/pytorch/pull/169399 2025-12-04T08:42:57.0790777Z [169399] Checking whether to label PR as stale. 2025-12-04T08:42:57.0791152Z [169399] Skipping because PR was updated recently 2025-12-04T08:42:57.0791637Z ##[endgroup] 2025-12-04T08:42:57.0792014Z ##[group]Processing PR #169400 2025-12-04T08:42:57.0792382Z [169400] URL: https://github.com/pytorch/pytorch/pull/169400 2025-12-04T08:42:57.0792885Z [169400] Checking whether to label PR as stale. 2025-12-04T08:42:57.0793247Z [169400] Skipping because PR was updated recently 2025-12-04T08:42:57.0793734Z ##[endgroup] 2025-12-04T08:42:57.0794120Z ##[group]Processing PR #169401 2025-12-04T08:42:57.0794472Z [169401] URL: https://github.com/pytorch/pytorch/pull/169401 2025-12-04T08:42:57.0794894Z [169401] Checking whether to label PR as stale. 2025-12-04T08:42:57.0795258Z [169401] Skipping because PR was updated recently 2025-12-04T08:42:57.0795747Z ##[endgroup] 2025-12-04T08:42:57.0796132Z ##[group]Processing PR #169403 2025-12-04T08:42:57.0796498Z [169403] URL: https://github.com/pytorch/pytorch/pull/169403 2025-12-04T08:42:57.0796910Z [169403] Checking whether to label PR as stale. 2025-12-04T08:42:57.0797288Z [169403] Skipping because PR was updated recently 2025-12-04T08:42:57.0797761Z ##[endgroup] 2025-12-04T08:42:57.0798146Z ##[group]Processing PR #169404 2025-12-04T08:42:57.0798514Z [169404] URL: https://github.com/pytorch/pytorch/pull/169404 2025-12-04T08:42:57.0798928Z [169404] Checking whether to label PR as stale. 2025-12-04T08:42:57.0799307Z [169404] Skipping because PR was updated recently 2025-12-04T08:42:57.0799796Z ##[endgroup] 2025-12-04T08:42:57.0800185Z ##[group]Processing PR #169405 2025-12-04T08:42:57.0800538Z [169405] URL: https://github.com/pytorch/pytorch/pull/169405 2025-12-04T08:42:57.0801027Z [169405] Checking whether to label PR as stale. 2025-12-04T08:42:57.0801392Z [169405] Skipping because PR was updated recently 2025-12-04T08:42:57.0801881Z ##[endgroup] 2025-12-04T08:42:57.0802275Z ##[group]Processing PR #169409 2025-12-04T08:42:57.0802644Z [169409] URL: https://github.com/pytorch/pytorch/pull/169409 2025-12-04T08:42:57.0803050Z [169409] Checking whether to label PR as stale. 2025-12-04T08:42:57.0803434Z [169409] Skipping because PR was updated recently 2025-12-04T08:42:57.0803914Z ##[endgroup] 2025-12-04T08:42:57.0805253Z ##[group]Processing PR #169410 2025-12-04T08:42:57.0805964Z [169410] URL: https://github.com/pytorch/pytorch/pull/169410 2025-12-04T08:42:57.0806657Z [169410] Checking whether to label PR as stale. 2025-12-04T08:42:57.0807320Z [169410] Skipping because PR was updated recently 2025-12-04T08:42:57.0808072Z ##[endgroup] 2025-12-04T08:42:57.0808688Z ##[group]Processing PR #169412 2025-12-04T08:42:57.0809280Z [169412] URL: https://github.com/pytorch/pytorch/pull/169412 2025-12-04T08:42:57.0809888Z [169412] Checking whether to label PR as stale. 2025-12-04T08:42:57.0810487Z [169412] Skipping because PR was updated recently 2025-12-04T08:42:57.0811217Z ##[endgroup] 2025-12-04T08:42:57.0811926Z ##[group]Processing PR #169415 2025-12-04T08:42:57.0812497Z [169415] URL: https://github.com/pytorch/pytorch/pull/169415 2025-12-04T08:42:57.0813109Z [169415] Checking whether to label PR as stale. 2025-12-04T08:42:57.0813704Z [169415] Skipping because PR was updated recently 2025-12-04T08:42:57.0814413Z ##[endgroup] 2025-12-04T08:42:57.0815024Z ##[group]Processing PR #169416 2025-12-04T08:42:57.0815613Z [169416] URL: https://github.com/pytorch/pytorch/pull/169416 2025-12-04T08:42:57.0816218Z [169416] Checking whether to label PR as stale. 2025-12-04T08:42:57.0816811Z [169416] Skipping because PR was updated recently 2025-12-04T08:42:57.0817540Z ##[endgroup] 2025-12-04T08:42:57.0818150Z ##[group]Processing PR #169417 2025-12-04T08:42:57.0818717Z [169417] URL: https://github.com/pytorch/pytorch/pull/169417 2025-12-04T08:42:57.0819342Z [169417] Checking whether to label PR as stale. 2025-12-04T08:42:57.0819941Z [169417] Skipping because PR was updated recently 2025-12-04T08:42:57.0820647Z ##[endgroup] 2025-12-04T08:42:57.0821250Z ##[group]Processing PR #169418 2025-12-04T08:42:57.0821833Z [169418] URL: https://github.com/pytorch/pytorch/pull/169418 2025-12-04T08:42:57.0822445Z [169418] Checking whether to label PR as stale. 2025-12-04T08:42:57.0823024Z [169418] Skipping because PR was updated recently 2025-12-04T08:42:57.0823757Z ##[endgroup] 2025-12-04T08:42:57.0824369Z ##[group]Processing PR #169419 2025-12-04T08:42:57.0825098Z [169419] URL: https://github.com/pytorch/pytorch/pull/169419 2025-12-04T08:42:57.0825714Z [169419] Checking whether to label PR as stale. 2025-12-04T08:42:57.0826320Z [169419] Skipping because PR was updated recently 2025-12-04T08:42:57.0827054Z ##[endgroup] 2025-12-04T08:42:57.0827649Z ##[group]Processing PR #169423 2025-12-04T08:42:57.0828231Z [169423] URL: https://github.com/pytorch/pytorch/pull/169423 2025-12-04T08:42:57.0828860Z [169423] Checking whether to label PR as stale. 2025-12-04T08:42:57.0829430Z [169423] Skipping because PR was updated recently 2025-12-04T08:42:57.0830156Z ##[endgroup] 2025-12-04T08:42:57.0830766Z ##[group]Processing PR #169424 2025-12-04T08:42:57.0831348Z [169424] URL: https://github.com/pytorch/pytorch/pull/169424 2025-12-04T08:42:57.0831951Z [169424] Checking whether to label PR as stale. 2025-12-04T08:42:57.0832547Z [169424] Skipping because PR was updated recently 2025-12-04T08:42:57.0833269Z ##[endgroup] 2025-12-04T08:42:57.0834294Z ##[group]Processing PR #169425 2025-12-04T08:42:57.0834884Z [169425] URL: https://github.com/pytorch/pytorch/pull/169425 2025-12-04T08:42:57.0835504Z [169425] Checking whether to label PR as stale. 2025-12-04T08:42:57.0836083Z [169425] Skipping because PR was updated recently 2025-12-04T08:42:57.0836808Z ##[endgroup] 2025-12-04T08:42:57.0837411Z ##[group]Processing PR #169427 2025-12-04T08:42:57.0838208Z [169427] URL: https://github.com/pytorch/pytorch/pull/169427 2025-12-04T08:42:57.0838819Z [169427] Checking whether to label PR as stale. 2025-12-04T08:42:57.0839418Z [169427] Skipping because PR was updated recently 2025-12-04T08:42:57.0840146Z ##[endgroup] 2025-12-04T08:42:57.0840744Z ##[group]Processing PR #169430 2025-12-04T08:42:57.0841307Z [169430] URL: https://github.com/pytorch/pytorch/pull/169430 2025-12-04T08:42:57.0841929Z [169430] Checking whether to label PR as stale. 2025-12-04T08:42:57.0842513Z [169430] Skipping because PR was updated recently 2025-12-04T08:42:57.0843239Z ##[endgroup] 2025-12-04T08:42:57.0843852Z ##[group]Processing PR #169432 2025-12-04T08:42:57.0844442Z [169432] URL: https://github.com/pytorch/pytorch/pull/169432 2025-12-04T08:42:57.0845039Z [169432] Checking whether to label PR as stale. 2025-12-04T08:42:57.0845644Z [169432] Skipping because PR was updated recently 2025-12-04T08:42:57.0846368Z ##[endgroup] 2025-12-04T08:42:57.0846970Z ##[group]Processing PR #169434 2025-12-04T08:42:57.0847543Z [169434] URL: https://github.com/pytorch/pytorch/pull/169434 2025-12-04T08:42:57.0848154Z [169434] Checking whether to label PR as stale. 2025-12-04T08:42:57.0848768Z [169434] Skipping because PR was updated recently 2025-12-04T08:42:57.0849399Z ##[endgroup] 2025-12-04T08:42:57.9374148Z ##[group]Processing PR #169436 2025-12-04T08:42:57.9374572Z [169436] URL: https://github.com/pytorch/pytorch/pull/169436 2025-12-04T08:42:57.9375016Z [169436] Checking whether to label PR as stale. 2025-12-04T08:42:57.9375389Z [169436] Skipping because PR was updated recently 2025-12-04T08:42:57.9375903Z ##[endgroup] 2025-12-04T08:42:57.9376329Z ##[group]Processing PR #169437 2025-12-04T08:42:57.9376687Z [169437] URL: https://github.com/pytorch/pytorch/pull/169437 2025-12-04T08:42:57.9377118Z [169437] Checking whether to label PR as stale. 2025-12-04T08:42:57.9377503Z [169437] Skipping because PR was updated recently 2025-12-04T08:42:57.9377985Z ##[endgroup] 2025-12-04T08:42:57.9378370Z ##[group]Processing PR #169438 2025-12-04T08:42:57.9378752Z [169438] URL: https://github.com/pytorch/pytorch/pull/169438 2025-12-04T08:42:57.9379159Z [169438] Checking whether to label PR as stale. 2025-12-04T08:42:57.9379609Z [169438] Skipping because PR was updated recently 2025-12-04T08:42:57.9380348Z ##[endgroup] 2025-12-04T08:42:57.9380919Z ##[group]Processing PR #169441 2025-12-04T08:42:57.9381497Z [169441] URL: https://github.com/pytorch/pytorch/pull/169441 2025-12-04T08:42:57.9382095Z [169441] Checking whether to label PR as stale. 2025-12-04T08:42:57.9382729Z [169441] Skipping because PR was updated recently 2025-12-04T08:42:57.9383494Z ##[endgroup] 2025-12-04T08:42:57.9384520Z ##[group]Processing PR #169442 2025-12-04T08:42:57.9385107Z [169442] URL: https://github.com/pytorch/pytorch/pull/169442 2025-12-04T08:42:57.9385754Z [169442] Checking whether to label PR as stale. 2025-12-04T08:42:57.9386365Z [169442] Skipping because PR was updated recently 2025-12-04T08:42:57.9387135Z ##[endgroup] 2025-12-04T08:42:57.9387743Z ##[group]Processing PR #169446 2025-12-04T08:42:57.9388380Z [169446] URL: https://github.com/pytorch/pytorch/pull/169446 2025-12-04T08:42:57.9389039Z [169446] Checking whether to label PR as stale. 2025-12-04T08:42:57.9389679Z [169446] Skipping because PR was updated recently 2025-12-04T08:42:57.9390496Z ##[endgroup] 2025-12-04T08:42:57.9391144Z ##[group]Processing PR #169447 2025-12-04T08:42:57.9391771Z [169447] URL: https://github.com/pytorch/pytorch/pull/169447 2025-12-04T08:42:57.9392435Z [169447] Checking whether to label PR as stale. 2025-12-04T08:42:57.9394416Z [169447] Skipping because PR was updated recently 2025-12-04T08:42:57.9395340Z ##[endgroup] 2025-12-04T08:42:57.9395924Z ##[group]Processing PR #169450 2025-12-04T08:42:57.9396424Z [169450] URL: https://github.com/pytorch/pytorch/pull/169450 2025-12-04T08:42:57.9397017Z [169450] Checking whether to label PR as stale. 2025-12-04T08:42:57.9397604Z [169450] Skipping because PR was updated recently 2025-12-04T08:42:57.9398480Z ##[endgroup] 2025-12-04T08:42:57.9399423Z ##[group]Processing PR #169452 2025-12-04T08:42:57.9400110Z [169452] URL: https://github.com/pytorch/pytorch/pull/169452 2025-12-04T08:42:57.9400813Z [169452] Checking whether to label PR as stale. 2025-12-04T08:42:57.9401497Z [169452] Skipping because PR was updated recently 2025-12-04T08:42:57.9402400Z ##[endgroup] 2025-12-04T08:42:57.9403033Z ##[group]Processing PR #169454 2025-12-04T08:42:57.9403620Z [169454] URL: https://github.com/pytorch/pytorch/pull/169454 2025-12-04T08:42:57.9404296Z [169454] Checking whether to label PR as stale. 2025-12-04T08:42:57.9404874Z [169454] Skipping because PR was updated recently 2025-12-04T08:42:57.9405686Z ##[endgroup] 2025-12-04T08:42:57.9406299Z ##[group]Processing PR #169455 2025-12-04T08:42:57.9406869Z [169455] URL: https://github.com/pytorch/pytorch/pull/169455 2025-12-04T08:42:57.9407541Z [169455] Checking whether to label PR as stale. 2025-12-04T08:42:57.9408166Z [169455] Skipping because PR was updated recently 2025-12-04T08:42:57.9409023Z ##[endgroup] 2025-12-04T08:42:57.9409686Z ##[group]Processing PR #169456 2025-12-04T08:42:57.9410294Z [169456] URL: https://github.com/pytorch/pytorch/pull/169456 2025-12-04T08:42:57.9410993Z [169456] Checking whether to label PR as stale. 2025-12-04T08:42:57.9411768Z [169456] Skipping because PR was updated recently 2025-12-04T08:42:57.9412611Z ##[endgroup] 2025-12-04T08:42:57.9413249Z ##[group]Processing PR #169459 2025-12-04T08:42:57.9413856Z [169459] URL: https://github.com/pytorch/pytorch/pull/169459 2025-12-04T08:42:57.9414553Z [169459] Checking whether to label PR as stale. 2025-12-04T08:42:57.9415184Z [169459] Skipping because PR was updated recently 2025-12-04T08:42:57.9416047Z ##[endgroup] 2025-12-04T08:42:57.9416702Z ##[group]Processing PR #169460 2025-12-04T08:42:57.9417313Z [169460] URL: https://github.com/pytorch/pytorch/pull/169460 2025-12-04T08:42:57.9418068Z [169460] Checking whether to label PR as stale. 2025-12-04T08:42:57.9418743Z [169460] Skipping because PR was updated recently 2025-12-04T08:42:57.9419606Z ##[endgroup] 2025-12-04T08:42:57.9420253Z ##[group]Processing PR #169462 2025-12-04T08:42:57.9420883Z [169462] URL: https://github.com/pytorch/pytorch/pull/169462 2025-12-04T08:42:57.9421573Z [169462] Checking whether to label PR as stale. 2025-12-04T08:42:57.9422194Z [169462] Skipping because PR was updated recently 2025-12-04T08:42:57.9422957Z ##[endgroup] 2025-12-04T08:42:57.9423590Z ##[group]Processing PR #169463 2025-12-04T08:42:57.9424185Z [169463] URL: https://github.com/pytorch/pytorch/pull/169463 2025-12-04T08:42:57.9424863Z [169463] Checking whether to label PR as stale. 2025-12-04T08:42:57.9425464Z [169463] Skipping because PR was updated recently 2025-12-04T08:42:57.9426456Z ##[endgroup] 2025-12-04T08:42:57.9427059Z ##[group]Processing PR #169465 2025-12-04T08:42:57.9427652Z [169465] URL: https://github.com/pytorch/pytorch/pull/169465 2025-12-04T08:42:57.9428347Z [169465] Checking whether to label PR as stale. 2025-12-04T08:42:57.9429503Z [169465] Skipping because PR was updated recently 2025-12-04T08:42:57.9430345Z ##[endgroup] 2025-12-04T08:42:57.9430997Z ##[group]Processing PR #169467 2025-12-04T08:42:57.9431571Z [169467] URL: https://github.com/pytorch/pytorch/pull/169467 2025-12-04T08:42:57.9432284Z [169467] Checking whether to label PR as stale. 2025-12-04T08:42:57.9432883Z [169467] Skipping because PR was updated recently 2025-12-04T08:42:57.9433677Z ##[endgroup] 2025-12-04T08:42:57.9434804Z ##[group]Processing PR #169468 2025-12-04T08:42:57.9435425Z [169468] URL: https://github.com/pytorch/pytorch/pull/169468 2025-12-04T08:42:57.9436118Z [169468] Checking whether to label PR as stale. 2025-12-04T08:42:57.9436761Z [169468] Skipping because PR was updated recently 2025-12-04T08:42:57.9437593Z ##[endgroup] 2025-12-04T08:42:57.9438240Z ##[group]Processing PR #169470 2025-12-04T08:42:57.9438855Z [169470] URL: https://github.com/pytorch/pytorch/pull/169470 2025-12-04T08:42:57.9440272Z [169470] Checking whether to label PR as stale. 2025-12-04T08:42:57.9440919Z [169470] Skipping because PR was updated recently 2025-12-04T08:42:57.9441992Z ##[endgroup] 2025-12-04T08:42:57.9442641Z ##[group]Processing PR #169471 2025-12-04T08:42:57.9443258Z [169471] URL: https://github.com/pytorch/pytorch/pull/169471 2025-12-04T08:42:57.9443929Z [169471] Checking whether to label PR as stale. 2025-12-04T08:42:57.9444527Z [169471] Skipping because PR was updated recently 2025-12-04T08:42:57.9445738Z ##[endgroup] 2025-12-04T08:42:57.9446393Z ##[group]Processing PR #169472 2025-12-04T08:42:57.9446982Z [169472] URL: https://github.com/pytorch/pytorch/pull/169472 2025-12-04T08:42:57.9447683Z [169472] Checking whether to label PR as stale. 2025-12-04T08:42:57.9448323Z [169472] Skipping because PR was updated recently 2025-12-04T08:42:57.9449141Z ##[endgroup] 2025-12-04T08:42:57.9449757Z ##[group]Processing PR #169473 2025-12-04T08:42:57.9450368Z [169473] URL: https://github.com/pytorch/pytorch/pull/169473 2025-12-04T08:42:57.9451048Z [169473] Checking whether to label PR as stale. 2025-12-04T08:42:57.9451788Z [169473] Skipping because PR was updated recently 2025-12-04T08:42:57.9452626Z ##[endgroup] 2025-12-04T08:42:57.9453259Z ##[group]Processing PR #169474 2025-12-04T08:42:57.9453838Z [169474] URL: https://github.com/pytorch/pytorch/pull/169474 2025-12-04T08:42:57.9454514Z [169474] Checking whether to label PR as stale. 2025-12-04T08:42:57.9455108Z [169474] Skipping because PR was updated recently 2025-12-04T08:42:57.9455896Z ##[endgroup] 2025-12-04T08:42:57.9456508Z ##[group]Processing PR #169475 2025-12-04T08:42:57.9457107Z [169475] URL: https://github.com/pytorch/pytorch/pull/169475 2025-12-04T08:42:57.9457806Z [169475] Checking whether to label PR as stale. 2025-12-04T08:42:57.9458436Z [169475] Skipping because PR was updated recently 2025-12-04T08:42:57.9459230Z ##[endgroup] 2025-12-04T08:42:57.9459879Z ##[group]Processing PR #169476 2025-12-04T08:42:57.9460486Z [169476] URL: https://github.com/pytorch/pytorch/pull/169476 2025-12-04T08:42:57.9461163Z [169476] Checking whether to label PR as stale. 2025-12-04T08:42:57.9461791Z [169476] Skipping because PR was updated recently 2025-12-04T08:42:57.9462631Z ##[endgroup] 2025-12-04T08:42:57.9463227Z ##[group]Processing PR #169478 2025-12-04T08:42:57.9463831Z [169478] URL: https://github.com/pytorch/pytorch/pull/169478 2025-12-04T08:42:57.9464572Z [169478] Checking whether to label PR as stale. 2025-12-04T08:42:57.9465166Z [169478] Skipping because PR was updated recently 2025-12-04T08:42:57.9465991Z ##[endgroup] 2025-12-04T08:42:57.9466650Z ##[group]Processing PR #169482 2025-12-04T08:42:57.9467243Z [169482] URL: https://github.com/pytorch/pytorch/pull/169482 2025-12-04T08:42:57.9467935Z [169482] Checking whether to label PR as stale. 2025-12-04T08:42:57.9468779Z [169482] Skipping because PR was updated recently 2025-12-04T08:42:57.9469613Z ##[endgroup] 2025-12-04T08:42:57.9470266Z ##[group]Processing PR #169483 2025-12-04T08:42:57.9470913Z [169483] URL: https://github.com/pytorch/pytorch/pull/169483 2025-12-04T08:42:57.9471634Z [169483] Checking whether to label PR as stale. 2025-12-04T08:42:57.9472270Z [169483] Skipping because PR was updated recently 2025-12-04T08:42:57.9473075Z ##[endgroup] 2025-12-04T08:42:57.9473689Z ##[group]Processing PR #169485 2025-12-04T08:42:57.9474283Z [169485] URL: https://github.com/pytorch/pytorch/pull/169485 2025-12-04T08:42:57.9474981Z [169485] Checking whether to label PR as stale. 2025-12-04T08:42:57.9475634Z [169485] Skipping because PR was updated recently 2025-12-04T08:42:57.9476491Z ##[endgroup] 2025-12-04T08:42:57.9477182Z ##[group]Processing PR #169486 2025-12-04T08:42:57.9477785Z [169486] URL: https://github.com/pytorch/pytorch/pull/169486 2025-12-04T08:42:57.9478550Z [169486] Checking whether to label PR as stale. 2025-12-04T08:42:57.9479197Z [169486] Skipping because PR was updated recently 2025-12-04T08:42:57.9480038Z ##[endgroup] 2025-12-04T08:42:57.9480670Z ##[group]Processing PR #169487 2025-12-04T08:42:57.9481325Z [169487] URL: https://github.com/pytorch/pytorch/pull/169487 2025-12-04T08:42:57.9482007Z [169487] Checking whether to label PR as stale. 2025-12-04T08:42:57.9482796Z [169487] Skipping because PR was updated recently 2025-12-04T08:42:57.9483692Z ##[endgroup] 2025-12-04T08:42:57.9484358Z ##[group]Processing PR #169491 2025-12-04T08:42:57.9484954Z [169491] URL: https://github.com/pytorch/pytorch/pull/169491 2025-12-04T08:42:57.9485623Z [169491] Checking whether to label PR as stale. 2025-12-04T08:42:57.9486221Z [169491] Skipping because PR was updated recently 2025-12-04T08:42:57.9487038Z ##[endgroup] 2025-12-04T08:42:57.9487705Z ##[group]Processing PR #169493 2025-12-04T08:42:57.9488281Z [169493] URL: https://github.com/pytorch/pytorch/pull/169493 2025-12-04T08:42:57.9488958Z [169493] Checking whether to label PR as stale. 2025-12-04T08:42:57.9489561Z [169493] Skipping because PR was updated recently 2025-12-04T08:42:57.9490369Z ##[endgroup] 2025-12-04T08:42:57.9491009Z ##[group]Processing PR #169496 2025-12-04T08:42:57.9491705Z [169496] URL: https://github.com/pytorch/pytorch/pull/169496 2025-12-04T08:42:57.9492425Z [169496] Checking whether to label PR as stale. 2025-12-04T08:42:57.9493096Z [169496] Skipping because PR was updated recently 2025-12-04T08:42:57.9493936Z ##[endgroup] 2025-12-04T08:42:57.9494545Z ##[group]Processing PR #169497 2025-12-04T08:42:57.9495146Z [169497] URL: https://github.com/pytorch/pytorch/pull/169497 2025-12-04T08:42:57.9495846Z [169497] Checking whether to label PR as stale. 2025-12-04T08:42:57.9496479Z [169497] Skipping because PR was updated recently 2025-12-04T08:42:57.9497318Z ##[endgroup] 2025-12-04T08:42:57.9497971Z ##[group]Processing PR #169498 2025-12-04T08:42:57.9498560Z [169498] URL: https://github.com/pytorch/pytorch/pull/169498 2025-12-04T08:42:57.9499284Z [169498] Checking whether to label PR as stale. 2025-12-04T08:42:57.9499912Z [169498] Skipping because PR was updated recently 2025-12-04T08:42:57.9500816Z ##[endgroup] 2025-12-04T08:42:57.9501489Z ##[group]Processing PR #169503 2025-12-04T08:42:57.9502145Z [169503] URL: https://github.com/pytorch/pytorch/pull/169503 2025-12-04T08:42:57.9502924Z [169503] Checking whether to label PR as stale. 2025-12-04T08:42:57.9503628Z [169503] Skipping because PR was updated recently 2025-12-04T08:42:57.9504504Z ##[endgroup] 2025-12-04T08:42:57.9505115Z ##[group]Processing PR #169504 2025-12-04T08:42:57.9505727Z [169504] URL: https://github.com/pytorch/pytorch/pull/169504 2025-12-04T08:42:57.9506417Z [169504] Checking whether to label PR as stale. 2025-12-04T08:42:57.9507036Z [169504] Skipping because PR was updated recently 2025-12-04T08:42:57.9507870Z ##[endgroup] 2025-12-04T08:42:57.9508540Z ##[group]Processing PR #169505 2025-12-04T08:42:57.9509112Z [169505] URL: https://github.com/pytorch/pytorch/pull/169505 2025-12-04T08:42:57.9510091Z [169505] Checking whether to label PR as stale. 2025-12-04T08:42:57.9510687Z [169505] Skipping because PR was updated recently 2025-12-04T08:42:57.9511495Z ##[endgroup] 2025-12-04T08:42:57.9512123Z ##[group]Processing PR #169506 2025-12-04T08:42:57.9512725Z [169506] URL: https://github.com/pytorch/pytorch/pull/169506 2025-12-04T08:42:57.9513454Z [169506] Checking whether to label PR as stale. 2025-12-04T08:42:57.9514084Z [169506] Skipping because PR was updated recently 2025-12-04T08:42:57.9514898Z ##[endgroup] 2025-12-04T08:42:57.9515504Z ##[group]Processing PR #169507 2025-12-04T08:42:57.9516124Z [169507] URL: https://github.com/pytorch/pytorch/pull/169507 2025-12-04T08:42:57.9516794Z [169507] Checking whether to label PR as stale. 2025-12-04T08:42:57.9517458Z [169507] Skipping because PR was updated recently 2025-12-04T08:42:57.9518340Z ##[endgroup] 2025-12-04T08:42:57.9519016Z ##[group]Processing PR #169508 2025-12-04T08:42:57.9519651Z [169508] URL: https://github.com/pytorch/pytorch/pull/169508 2025-12-04T08:42:57.9520428Z [169508] Checking whether to label PR as stale. 2025-12-04T08:42:57.9521061Z [169508] Skipping because PR was updated recently 2025-12-04T08:42:57.9521920Z ##[endgroup] 2025-12-04T08:42:57.9522586Z ##[group]Processing PR #169509 2025-12-04T08:42:57.9523208Z [169509] URL: https://github.com/pytorch/pytorch/pull/169509 2025-12-04T08:42:57.9524117Z [169509] Checking whether to label PR as stale. 2025-12-04T08:42:57.9524785Z [169509] Skipping because PR was updated recently 2025-12-04T08:42:57.9525573Z ##[endgroup] 2025-12-04T08:42:57.9526227Z ##[group]Processing PR #169510 2025-12-04T08:42:57.9526886Z [169510] URL: https://github.com/pytorch/pytorch/pull/169510 2025-12-04T08:42:57.9527612Z [169510] Checking whether to label PR as stale. 2025-12-04T08:42:57.9528278Z [169510] Skipping because PR was updated recently 2025-12-04T08:42:57.9529063Z ##[endgroup] 2025-12-04T08:42:57.9529673Z ##[group]Processing PR #169511 2025-12-04T08:42:57.9530284Z [169511] URL: https://github.com/pytorch/pytorch/pull/169511 2025-12-04T08:42:57.9531054Z [169511] Checking whether to label PR as stale. 2025-12-04T08:42:57.9531722Z [169511] Skipping because PR was updated recently 2025-12-04T08:42:57.9551143Z ##[endgroup] 2025-12-04T08:42:57.9551860Z ##[group]Processing PR #169513 2025-12-04T08:42:57.9552514Z [169513] URL: https://github.com/pytorch/pytorch/pull/169513 2025-12-04T08:42:57.9553305Z [169513] Checking whether to label PR as stale. 2025-12-04T08:42:57.9553889Z [169513] Skipping because PR was updated recently 2025-12-04T08:42:57.9554712Z ##[endgroup] 2025-12-04T08:42:57.9557606Z ##[group]Processing PR #169514 2025-12-04T08:42:57.9558183Z [169514] URL: https://github.com/pytorch/pytorch/pull/169514 2025-12-04T08:42:57.9558824Z [169514] Checking whether to label PR as stale. 2025-12-04T08:42:57.9559416Z [169514] Skipping because PR was updated recently 2025-12-04T08:42:57.9560207Z ##[endgroup] 2025-12-04T08:42:57.9560895Z ##[group]Processing PR #169515 2025-12-04T08:42:57.9561483Z [169515] URL: https://github.com/pytorch/pytorch/pull/169515 2025-12-04T08:42:57.9564332Z [169515] Checking whether to label PR as stale. 2025-12-04T08:42:57.9564919Z [169515] Skipping because PR was updated recently 2025-12-04T08:42:57.9565640Z ##[endgroup] 2025-12-04T08:42:57.9566205Z ##[group]Processing PR #169516 2025-12-04T08:42:57.9566782Z [169516] URL: https://github.com/pytorch/pytorch/pull/169516 2025-12-04T08:42:57.9567470Z [169516] Checking whether to label PR as stale. 2025-12-04T08:42:57.9568057Z [169516] Skipping because PR was updated recently 2025-12-04T08:42:57.9568865Z ##[endgroup] 2025-12-04T08:42:57.9569486Z ##[group]Processing PR #169517 2025-12-04T08:42:57.9572272Z [169517] URL: https://github.com/pytorch/pytorch/pull/169517 2025-12-04T08:42:57.9601249Z [169517] Checking whether to label PR as stale. 2025-12-04T08:42:57.9601787Z [169517] Skipping because PR was updated recently 2025-12-04T08:42:57.9602508Z ##[endgroup] 2025-12-04T08:42:57.9603237Z ##[group]Processing PR #169518 2025-12-04T08:42:57.9603944Z [169518] URL: https://github.com/pytorch/pytorch/pull/169518 2025-12-04T08:42:57.9604362Z [169518] Checking whether to label PR as stale. 2025-12-04T08:42:57.9604743Z [169518] Skipping because PR was updated recently 2025-12-04T08:42:57.9605240Z ##[endgroup] 2025-12-04T08:42:57.9605627Z ##[group]Processing PR #169519 2025-12-04T08:42:57.9605993Z [169519] URL: https://github.com/pytorch/pytorch/pull/169519 2025-12-04T08:42:57.9606416Z [169519] Checking whether to label PR as stale. 2025-12-04T08:42:57.9606777Z [169519] Skipping because PR was updated recently 2025-12-04T08:42:57.9607262Z ##[endgroup] 2025-12-04T08:42:57.9607646Z ##[group]Processing PR #169520 2025-12-04T08:42:57.9608013Z [169520] URL: https://github.com/pytorch/pytorch/pull/169520 2025-12-04T08:42:57.9608420Z [169520] Checking whether to label PR as stale. 2025-12-04T08:42:57.9608797Z [169520] Skipping because PR was updated recently 2025-12-04T08:42:57.9609273Z ##[endgroup] 2025-12-04T08:42:57.9609670Z ##[group]Processing PR #169521 2025-12-04T08:42:57.9610041Z [169521] URL: https://github.com/pytorch/pytorch/pull/169521 2025-12-04T08:42:57.9611134Z [169521] Checking whether to label PR as stale. 2025-12-04T08:42:57.9611621Z [169521] Skipping because PR was updated recently 2025-12-04T08:42:57.9612122Z ##[endgroup] 2025-12-04T08:42:57.9612510Z ##[group]Processing PR #169524 2025-12-04T08:42:57.9613013Z [169524] URL: https://github.com/pytorch/pytorch/pull/169524 2025-12-04T08:42:57.9613435Z [169524] Checking whether to label PR as stale. 2025-12-04T08:42:57.9613947Z [169524] Skipping because PR was updated recently 2025-12-04T08:42:57.9614659Z ##[endgroup] 2025-12-04T08:42:57.9615239Z ##[group]Processing PR #169525 2025-12-04T08:42:57.9615780Z [169525] URL: https://github.com/pytorch/pytorch/pull/169525 2025-12-04T08:42:57.9616376Z [169525] Checking whether to label PR as stale. 2025-12-04T08:42:57.9616894Z [169525] Skipping because PR was updated recently 2025-12-04T08:42:57.9617610Z ##[endgroup] 2025-12-04T08:42:57.9618237Z ##[group]Processing PR #169526 2025-12-04T08:42:57.9618816Z [169526] URL: https://github.com/pytorch/pytorch/pull/169526 2025-12-04T08:42:57.9619383Z [169526] Checking whether to label PR as stale. 2025-12-04T08:42:57.9619983Z [169526] Skipping because PR was updated recently 2025-12-04T08:42:57.9620803Z ##[endgroup] 2025-12-04T08:42:57.9621463Z ##[group]Processing PR #169527 2025-12-04T08:42:57.9622076Z [169527] URL: https://github.com/pytorch/pytorch/pull/169527 2025-12-04T08:42:57.9622810Z [169527] Checking whether to label PR as stale. 2025-12-04T08:42:57.9623435Z [169527] Skipping because PR was updated recently 2025-12-04T08:42:57.9624275Z ##[endgroup] 2025-12-04T08:42:57.9624908Z ##[group]Processing PR #169528 2025-12-04T08:42:57.9625502Z [169528] URL: https://github.com/pytorch/pytorch/pull/169528 2025-12-04T08:42:57.9626222Z [169528] Checking whether to label PR as stale. 2025-12-04T08:42:57.9626847Z [169528] Skipping because PR was updated recently 2025-12-04T08:42:57.9627701Z ##[endgroup] 2025-12-04T08:42:57.9628353Z ##[group]Processing PR #169532 2025-12-04T08:42:57.9628973Z [169532] URL: https://github.com/pytorch/pytorch/pull/169532 2025-12-04T08:42:57.9629677Z [169532] Checking whether to label PR as stale. 2025-12-04T08:42:57.9630295Z [169532] Skipping because PR was updated recently 2025-12-04T08:42:57.9631096Z ##[endgroup] 2025-12-04T08:42:57.9631734Z ##[group]Processing PR #169533 2025-12-04T08:42:57.9632396Z [169533] URL: https://github.com/pytorch/pytorch/pull/169533 2025-12-04T08:42:57.9633166Z [169533] Checking whether to label PR as stale. 2025-12-04T08:42:57.9634131Z [169533] Skipping because PR was updated recently 2025-12-04T08:42:57.9634988Z ##[endgroup] 2025-12-04T08:42:57.9635654Z ##[group]Processing PR #169534 2025-12-04T08:42:57.9636267Z [169534] URL: https://github.com/pytorch/pytorch/pull/169534 2025-12-04T08:42:57.9637006Z [169534] Checking whether to label PR as stale. 2025-12-04T08:42:57.9637660Z [169534] Skipping because PR was updated recently 2025-12-04T08:42:57.9638755Z ##[endgroup] 2025-12-04T08:42:57.9639406Z ##[group]Processing PR #169535 2025-12-04T08:42:57.9640005Z [169535] URL: https://github.com/pytorch/pytorch/pull/169535 2025-12-04T08:42:57.9640663Z [169535] Checking whether to label PR as stale. 2025-12-04T08:42:57.9641280Z [169535] Skipping because PR was updated recently 2025-12-04T08:42:57.9642124Z ##[endgroup] 2025-12-04T08:42:57.9642778Z ##[group]Processing PR #169536 2025-12-04T08:42:57.9643356Z [169536] URL: https://github.com/pytorch/pytorch/pull/169536 2025-12-04T08:42:57.9644061Z [169536] Checking whether to label PR as stale. 2025-12-04T08:42:57.9644698Z [169536] Skipping because PR was updated recently 2025-12-04T08:42:57.9645509Z ##[endgroup] 2025-12-04T08:42:57.9646170Z ##[group]Processing PR #169539 2025-12-04T08:42:57.9646778Z [169539] URL: https://github.com/pytorch/pytorch/pull/169539 2025-12-04T08:42:57.9647507Z [169539] Checking whether to label PR as stale. 2025-12-04T08:42:57.9648142Z [169539] Skipping because PR was updated recently 2025-12-04T08:42:57.9648998Z ##[endgroup] 2025-12-04T08:42:57.9649663Z ##[group]Processing PR #169540 2025-12-04T08:42:57.9650293Z [169540] URL: https://github.com/pytorch/pytorch/pull/169540 2025-12-04T08:42:57.9651001Z [169540] Checking whether to label PR as stale. 2025-12-04T08:42:57.9651753Z [169540] Skipping because PR was updated recently 2025-12-04T08:42:57.9652568Z ##[endgroup] 2025-12-04T08:42:57.9653434Z ##[group]Processing PR #169541 2025-12-04T08:42:57.9654056Z [169541] URL: https://github.com/pytorch/pytorch/pull/169541 2025-12-04T08:42:57.9654767Z [169541] Checking whether to label PR as stale. 2025-12-04T08:42:57.9655427Z [169541] Skipping because PR was updated recently 2025-12-04T08:42:57.9668591Z ##[endgroup] 2025-12-04T08:42:57.9669250Z ##[group]Processing PR #169542 2025-12-04T08:42:57.9669868Z [169542] URL: https://github.com/pytorch/pytorch/pull/169542 2025-12-04T08:42:57.9670541Z [169542] Checking whether to label PR as stale. 2025-12-04T08:42:57.9671166Z [169542] Skipping because PR was updated recently 2025-12-04T08:42:57.9672024Z ##[endgroup] 2025-12-04T08:42:57.9672650Z ##[group]Processing PR #169543 2025-12-04T08:42:57.9673258Z [169543] URL: https://github.com/pytorch/pytorch/pull/169543 2025-12-04T08:42:57.9673935Z [169543] Checking whether to label PR as stale. 2025-12-04T08:42:57.9674554Z [169543] Skipping because PR was updated recently 2025-12-04T08:42:57.9675387Z ##[endgroup] 2025-12-04T08:42:57.9676034Z ##[group]Processing PR #169544 2025-12-04T08:42:57.9676624Z [169544] URL: https://github.com/pytorch/pytorch/pull/169544 2025-12-04T08:42:57.9677323Z [169544] Checking whether to label PR as stale. 2025-12-04T08:42:57.9677877Z [169544] Skipping because PR was updated recently 2025-12-04T08:42:57.9678650Z ##[endgroup] 2025-12-04T08:42:57.9679242Z ##[group]Processing PR #169546 2025-12-04T08:42:57.9679880Z [169546] URL: https://github.com/pytorch/pytorch/pull/169546 2025-12-04T08:42:57.9683135Z [169546] Checking whether to label PR as stale. 2025-12-04T08:42:57.9683760Z [169546] Skipping because PR was updated recently 2025-12-04T08:42:57.9684533Z ##[endgroup] 2025-12-04T08:42:57.9685152Z ##[group]Processing PR #169547 2025-12-04T08:42:57.9685774Z [169547] URL: https://github.com/pytorch/pytorch/pull/169547 2025-12-04T08:42:57.9686492Z [169547] Checking whether to label PR as stale. 2025-12-04T08:42:57.9687127Z [169547] Skipping because PR was updated recently 2025-12-04T08:42:57.9688005Z ##[endgroup] 2025-12-04T08:42:57.9688681Z ##[group]Processing PR #169548 2025-12-04T08:42:57.9689253Z [169548] URL: https://github.com/pytorch/pytorch/pull/169548 2025-12-04T08:42:57.9689914Z [169548] Checking whether to label PR as stale. 2025-12-04T08:42:57.9690494Z [169548] Skipping because PR was updated recently 2025-12-04T08:42:57.9691374Z ##[endgroup] 2025-12-04T08:42:57.9692716Z ##[group]Processing PR #169549 2025-12-04T08:42:57.9693596Z [169549] URL: https://github.com/pytorch/pytorch/pull/169549 2025-12-04T08:42:57.9694384Z [169549] Checking whether to label PR as stale. 2025-12-04T08:42:57.9695279Z [169549] Skipping because PR was updated recently 2025-12-04T08:42:57.9696247Z ##[endgroup] 2025-12-04T08:42:57.9696944Z ##[group]Processing PR #169550 2025-12-04T08:42:57.9697622Z [169550] URL: https://github.com/pytorch/pytorch/pull/169550 2025-12-04T08:42:57.9698397Z [169550] Checking whether to label PR as stale. 2025-12-04T08:42:57.9699108Z [169550] Skipping because PR was updated recently 2025-12-04T08:42:57.9699995Z ##[endgroup] 2025-12-04T08:42:57.9700695Z ##[group]Processing PR #169551 2025-12-04T08:42:57.9701320Z [169551] URL: https://github.com/pytorch/pytorch/pull/169551 2025-12-04T08:42:57.9702098Z [169551] Checking whether to label PR as stale. 2025-12-04T08:42:57.9702789Z [169551] Skipping because PR was updated recently 2025-12-04T08:42:57.9703706Z ##[endgroup] 2025-12-04T08:42:57.9704389Z ##[group]Processing PR #169552 2025-12-04T08:42:57.9705012Z [169552] URL: https://github.com/pytorch/pytorch/pull/169552 2025-12-04T08:42:57.9705818Z [169552] Checking whether to label PR as stale. 2025-12-04T08:42:57.9706473Z [169552] Skipping because PR was updated recently 2025-12-04T08:42:57.9707289Z ##[endgroup] 2025-12-04T08:42:57.9707949Z ##[group]Processing PR #169553 2025-12-04T08:42:57.9708613Z [169553] URL: https://github.com/pytorch/pytorch/pull/169553 2025-12-04T08:42:57.9709351Z [169553] Checking whether to label PR as stale. 2025-12-04T08:42:57.9710179Z [169553] Skipping because PR was updated recently 2025-12-04T08:42:57.9711056Z ##[endgroup] 2025-12-04T08:42:57.9711741Z ##[group]Processing PR #169554 2025-12-04T08:42:57.9712338Z [169554] URL: https://github.com/pytorch/pytorch/pull/169554 2025-12-04T08:42:57.9713029Z [169554] Checking whether to label PR as stale. 2025-12-04T08:42:57.9713629Z [169554] Skipping because PR was updated recently 2025-12-04T08:42:57.9714465Z ##[endgroup] 2025-12-04T08:42:57.9715106Z ##[group]Processing PR #169555 2025-12-04T08:42:57.9715698Z [169555] URL: https://github.com/pytorch/pytorch/pull/169555 2025-12-04T08:42:57.9716374Z [169555] Checking whether to label PR as stale. 2025-12-04T08:42:57.9716982Z [169555] Skipping because PR was updated recently 2025-12-04T08:42:57.9717825Z ##[endgroup] 2025-12-04T08:42:57.9718206Z Processed 1681 PRs total. 2025-12-04T08:42:57.9773446Z A job completed hook has been configured by the self-hosted runner administrator 2025-12-04T08:42:57.9797092Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-12-04T08:42:57.9803392Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-12-04T08:42:57.9803777Z ##[endgroup] 2025-12-04T08:42:57.9992439Z [!ALERT!] Swap in detected! [!ALERT!] 2025-12-04T08:43:11.3887204Z [!ALERT!] Swap out detected [!ALERT!] 2025-12-04T08:43:33.1196904Z Cleaning up orphan processes