2025-09-07T07:33:50.2523085Z Current runner version: '2.328.0' 2025-09-07T07:33:50.2532815Z Runner name: 'i-09627f4e1a562a17a' 2025-09-07T07:33:50.2534398Z Runner group name: 'default' 2025-09-07T07:33:50.2535720Z Machine name: 'ip-10-0-68-99' 2025-09-07T07:33:50.2540645Z ##[group]GITHUB_TOKEN Permissions 2025-09-07T07:33:50.2544003Z Contents: read 2025-09-07T07:33:50.2544889Z Metadata: read 2025-09-07T07:33:50.2545747Z PullRequests: write 2025-09-07T07:33:50.2546928Z ##[endgroup] 2025-09-07T07:33:50.2550100Z Secret source: Actions 2025-09-07T07:33:50.2551340Z Prepare workflow directory 2025-09-07T07:33:50.3379540Z Prepare all required actions 2025-09-07T07:33:50.3477901Z Getting action download info 2025-09-07T07:33:50.5345158Z Download action repository 'actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea' (SHA:60a0d83039c74a4aee543508d2ffcb1c3799cdea) 2025-09-07T07:33:50.8668306Z Complete job name: stale 2025-09-07T07:33:50.9079025Z A job started hook has been configured by the self-hosted runner administrator 2025-09-07T07:33:50.9201559Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-09-07T07:33:50.9211904Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T07:33:50.9212994Z ##[endgroup] 2025-09-07T07:33:52.1640653Z Runner Type: linux.large 2025-09-07T07:33:52.1642908Z Instance Type: c5.large 2025-09-07T07:33:52.1644146Z AMI Name: unknown 2025-09-07T07:33:52.1701551Z AMI ID: ami-05ffe3c48a9991133 2025-09-07T07:33:57.7524884Z ##[group]Run actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea 2025-09-07T07:33:57.7525589Z with: 2025-09-07T07:33:57.7539012Z 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-09-07T07:33:57.7552679Z github-token: *** 2025-09-07T07:33:57.7553104Z debug: false 2025-09-07T07:33:57.7553468Z user-agent: actions/github-script 2025-09-07T07:33:57.7553918Z result-encoding: json 2025-09-07T07:33:57.7554238Z retries: 0 2025-09-07T07:33:57.7554699Z retry-exempt-status-codes: 400,401,403,404,422 2025-09-07T07:33:57.7555130Z ##[endgroup] 2025-09-07T07:33:59.2111677Z ##[group]Processing PR #57772 2025-09-07T07:33:59.2112906Z [57772] URL: https://github.com/pytorch/pytorch/pull/57772 2025-09-07T07:33:59.2113854Z [57772] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2115257Z ##[endgroup] 2025-09-07T07:33:59.2116174Z ##[group]Processing PR #70978 2025-09-07T07:33:59.2116925Z [70978] URL: https://github.com/pytorch/pytorch/pull/70978 2025-09-07T07:33:59.2117791Z [70978] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2118862Z ##[endgroup] 2025-09-07T07:33:59.2119698Z ##[group]Processing PR #70979 2025-09-07T07:33:59.2120455Z [70979] URL: https://github.com/pytorch/pytorch/pull/70979 2025-09-07T07:33:59.2121276Z [70979] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2122356Z ##[endgroup] 2025-09-07T07:33:59.2123234Z ##[group]Processing PR #70989 2025-09-07T07:33:59.2123987Z [70989] URL: https://github.com/pytorch/pytorch/pull/70989 2025-09-07T07:33:59.2124829Z [70989] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2125921Z ##[endgroup] 2025-09-07T07:33:59.2126831Z ##[group]Processing PR #82997 2025-09-07T07:33:59.2127597Z [82997] URL: https://github.com/pytorch/pytorch/pull/82997 2025-09-07T07:33:59.2128448Z [82997] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2129505Z ##[endgroup] 2025-09-07T07:33:59.2130321Z ##[group]Processing PR #84545 2025-09-07T07:33:59.2131046Z [84545] URL: https://github.com/pytorch/pytorch/pull/84545 2025-09-07T07:33:59.2131896Z [84545] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2132933Z ##[endgroup] 2025-09-07T07:33:59.2133773Z ##[group]Processing PR #84843 2025-09-07T07:33:59.2135067Z [84843] URL: https://github.com/pytorch/pytorch/pull/84843 2025-09-07T07:33:59.2135951Z [84843] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2137024Z ##[endgroup] 2025-09-07T07:33:59.2137909Z ##[group]Processing PR #85699 2025-09-07T07:33:59.2138668Z [85699] URL: https://github.com/pytorch/pytorch/pull/85699 2025-09-07T07:33:59.2139518Z [85699] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2140554Z ##[endgroup] 2025-09-07T07:33:59.2141904Z ##[group]Processing PR #88106 2025-09-07T07:33:59.2142729Z [88106] URL: https://github.com/pytorch/pytorch/pull/88106 2025-09-07T07:33:59.2143569Z [88106] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2144605Z ##[endgroup] 2025-09-07T07:33:59.2145444Z ##[group]Processing PR #88196 2025-09-07T07:33:59.2146150Z [88196] URL: https://github.com/pytorch/pytorch/pull/88196 2025-09-07T07:33:59.2147130Z [88196] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2148112Z ##[endgroup] 2025-09-07T07:33:59.2148847Z ##[group]Processing PR #88221 2025-09-07T07:33:59.2149498Z [88221] URL: https://github.com/pytorch/pytorch/pull/88221 2025-09-07T07:33:59.2150300Z [88221] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2151265Z ##[endgroup] 2025-09-07T07:33:59.2152046Z ##[group]Processing PR #88998 2025-09-07T07:33:59.2152690Z [88998] URL: https://github.com/pytorch/pytorch/pull/88998 2025-09-07T07:33:59.2153428Z [88998] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2154467Z ##[endgroup] 2025-09-07T07:33:59.2155232Z ##[group]Processing PR #97825 2025-09-07T07:33:59.2155931Z [97825] URL: https://github.com/pytorch/pytorch/pull/97825 2025-09-07T07:33:59.2156724Z [97825] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2157686Z ##[endgroup] 2025-09-07T07:33:59.2158480Z ##[group]Processing PR #102148 2025-09-07T07:33:59.2159393Z [102148] URL: https://github.com/pytorch/pytorch/pull/102148 2025-09-07T07:33:59.2160182Z [102148] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2161248Z ##[endgroup] 2025-09-07T07:33:59.2162094Z ##[group]Processing PR #102613 2025-09-07T07:33:59.2162868Z [102613] URL: https://github.com/pytorch/pytorch/pull/102613 2025-09-07T07:33:59.2163723Z [102613] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2164813Z ##[endgroup] 2025-09-07T07:33:59.2165669Z ##[group]Processing PR #106149 2025-09-07T07:33:59.2166414Z [106149] URL: https://github.com/pytorch/pytorch/pull/106149 2025-09-07T07:33:59.2167306Z [106149] Checking whether to label PR as stale. 2025-09-07T07:33:59.2168058Z [106149] Skipping because PR was updated recently 2025-09-07T07:33:59.2169579Z ##[endgroup] 2025-09-07T07:33:59.2170415Z ##[group]Processing PR #108303 2025-09-07T07:33:59.2171180Z [108303] URL: https://github.com/pytorch/pytorch/pull/108303 2025-09-07T07:33:59.2172064Z [108303] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2173098Z ##[endgroup] 2025-09-07T07:33:59.2173932Z ##[group]Processing PR #110155 2025-09-07T07:33:59.2174660Z [110155] URL: https://github.com/pytorch/pytorch/pull/110155 2025-09-07T07:33:59.2175539Z [110155] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2176563Z ##[endgroup] 2025-09-07T07:33:59.2221129Z ##[group]Processing PR #111673 2025-09-07T07:33:59.2221903Z [111673] URL: https://github.com/pytorch/pytorch/pull/111673 2025-09-07T07:33:59.2222795Z [111673] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2223864Z ##[endgroup] 2025-09-07T07:33:59.2225003Z ##[group]Processing PR #112441 2025-09-07T07:33:59.2225695Z [112441] URL: https://github.com/pytorch/pytorch/pull/112441 2025-09-07T07:33:59.2226482Z [112441] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2227657Z ##[endgroup] 2025-09-07T07:33:59.2228497Z ##[group]Processing PR #113258 2025-09-07T07:33:59.2229248Z [113258] URL: https://github.com/pytorch/pytorch/pull/113258 2025-09-07T07:33:59.2230154Z [113258] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2231194Z ##[endgroup] 2025-09-07T07:33:59.2232030Z ##[group]Processing PR #115316 2025-09-07T07:33:59.2232771Z [115316] URL: https://github.com/pytorch/pytorch/pull/115316 2025-09-07T07:33:59.2233616Z [115316] Checking whether to label PR as stale. 2025-09-07T07:33:59.2234550Z [115316] Skipping because PR was updated recently 2025-09-07T07:33:59.2235588Z ##[endgroup] 2025-09-07T07:33:59.2236405Z ##[group]Processing PR #116534 2025-09-07T07:33:59.2237168Z [116534] URL: https://github.com/pytorch/pytorch/pull/116534 2025-09-07T07:33:59.2238357Z [116534] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2239386Z ##[endgroup] 2025-09-07T07:33:59.2240222Z ##[group]Processing PR #117905 2025-09-07T07:33:59.2240957Z [117905] URL: https://github.com/pytorch/pytorch/pull/117905 2025-09-07T07:33:59.2241827Z [117905] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2242866Z ##[endgroup] 2025-09-07T07:33:59.2243762Z ##[group]Processing PR #119496 2025-09-07T07:33:59.2244513Z [119496] URL: https://github.com/pytorch/pytorch/pull/119496 2025-09-07T07:33:59.2245399Z [119496] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2246435Z ##[endgroup] 2025-09-07T07:33:59.2247262Z ##[group]Processing PR #119977 2025-09-07T07:33:59.2247999Z [119977] URL: https://github.com/pytorch/pytorch/pull/119977 2025-09-07T07:33:59.2248882Z [119977] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2249913Z ##[endgroup] 2025-09-07T07:33:59.2250741Z ##[group]Processing PR #120076 2025-09-07T07:33:59.2251531Z [120076] URL: https://github.com/pytorch/pytorch/pull/120076 2025-09-07T07:33:59.2252410Z [120076] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2253398Z ##[endgroup] 2025-09-07T07:33:59.2254235Z ##[group]Processing PR #121445 2025-09-07T07:33:59.2255000Z [121445] URL: https://github.com/pytorch/pytorch/pull/121445 2025-09-07T07:33:59.2256074Z [121445] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2257121Z ##[endgroup] 2025-09-07T07:33:59.2257964Z ##[group]Processing PR #124490 2025-09-07T07:33:59.2258704Z [124490] URL: https://github.com/pytorch/pytorch/pull/124490 2025-09-07T07:33:59.2259555Z [124490] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2260595Z ##[endgroup] 2025-09-07T07:33:59.2261435Z ##[group]Processing PR #124624 2025-09-07T07:33:59.2262180Z [124624] URL: https://github.com/pytorch/pytorch/pull/124624 2025-09-07T07:33:59.2263049Z [124624] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2264103Z ##[endgroup] 2025-09-07T07:33:59.2264959Z ##[group]Processing PR #125270 2025-09-07T07:33:59.2265744Z [125270] URL: https://github.com/pytorch/pytorch/pull/125270 2025-09-07T07:33:59.2266733Z [125270] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2267749Z ##[endgroup] 2025-09-07T07:33:59.2268570Z ##[group]Processing PR #125326 2025-09-07T07:33:59.2269378Z [125326] URL: https://github.com/pytorch/pytorch/pull/125326 2025-09-07T07:33:59.2270252Z [125326] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2271283Z ##[endgroup] 2025-09-07T07:33:59.2272117Z ##[group]Processing PR #125428 2025-09-07T07:33:59.2272894Z [125428] URL: https://github.com/pytorch/pytorch/pull/125428 2025-09-07T07:33:59.2273769Z [125428] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2274809Z ##[endgroup] 2025-09-07T07:33:59.2275630Z ##[group]Processing PR #125995 2025-09-07T07:33:59.2276376Z [125995] URL: https://github.com/pytorch/pytorch/pull/125995 2025-09-07T07:33:59.2277261Z [125995] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2278314Z ##[endgroup] 2025-09-07T07:33:59.2279128Z ##[group]Processing PR #126199 2025-09-07T07:33:59.2279890Z [126199] URL: https://github.com/pytorch/pytorch/pull/126199 2025-09-07T07:33:59.2280797Z [126199] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2281806Z ##[endgroup] 2025-09-07T07:33:59.2282652Z ##[group]Processing PR #126348 2025-09-07T07:33:59.2283441Z [126348] URL: https://github.com/pytorch/pytorch/pull/126348 2025-09-07T07:33:59.2284272Z [126348] Checking whether to label PR as stale. 2025-09-07T07:33:59.2285066Z [126348] Skipping because PR was updated recently 2025-09-07T07:33:59.2286091Z ##[endgroup] 2025-09-07T07:33:59.2286917Z ##[group]Processing PR #130462 2025-09-07T07:33:59.2287668Z [130462] URL: https://github.com/pytorch/pytorch/pull/130462 2025-09-07T07:33:59.2288554Z [130462] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2289580Z ##[endgroup] 2025-09-07T07:33:59.2290420Z ##[group]Processing PR #130556 2025-09-07T07:33:59.2291361Z [130556] URL: https://github.com/pytorch/pytorch/pull/130556 2025-09-07T07:33:59.2292248Z [130556] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2293281Z ##[endgroup] 2025-09-07T07:33:59.2294098Z ##[group]Processing PR #130752 2025-09-07T07:33:59.2294870Z [130752] URL: https://github.com/pytorch/pytorch/pull/130752 2025-09-07T07:33:59.2295771Z [130752] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2296816Z ##[endgroup] 2025-09-07T07:33:59.2297639Z ##[group]Processing PR #130856 2025-09-07T07:33:59.2298391Z [130856] URL: https://github.com/pytorch/pytorch/pull/130856 2025-09-07T07:33:59.2299285Z [130856] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2300327Z ##[endgroup] 2025-09-07T07:33:59.2301160Z ##[group]Processing PR #130887 2025-09-07T07:33:59.2301908Z [130887] URL: https://github.com/pytorch/pytorch/pull/130887 2025-09-07T07:33:59.2302793Z [130887] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2303828Z ##[endgroup] 2025-09-07T07:33:59.2304637Z ##[group]Processing PR #131296 2025-09-07T07:33:59.2305376Z [131296] URL: https://github.com/pytorch/pytorch/pull/131296 2025-09-07T07:33:59.2306333Z [131296] PR is labeled stale, checking whether we should close it. 2025-09-07T07:33:59.2307330Z [131296] Skipping because PR was updated recently 2025-09-07T07:33:59.2308378Z ##[endgroup] 2025-09-07T07:33:59.2309453Z ##[group]Processing PR #132135 2025-09-07T07:33:59.2310244Z [132135] URL: https://github.com/pytorch/pytorch/pull/132135 2025-09-07T07:33:59.2311106Z [132135] Checking whether to label PR as stale. 2025-09-07T07:33:59.2311876Z [132135] Skipping because PR was updated recently 2025-09-07T07:33:59.2312900Z ##[endgroup] 2025-09-07T07:33:59.2313749Z ##[group]Processing PR #132414 2025-09-07T07:33:59.2314513Z [132414] URL: https://github.com/pytorch/pytorch/pull/132414 2025-09-07T07:33:59.2315426Z [132414] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2316458Z ##[endgroup] 2025-09-07T07:33:59.2363273Z ##[group]Processing PR #132814 2025-09-07T07:33:59.2364148Z [132814] URL: https://github.com/pytorch/pytorch/pull/132814 2025-09-07T07:33:59.2365031Z [132814] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2366120Z ##[endgroup] 2025-09-07T07:33:59.2366961Z ##[group]Processing PR #133289 2025-09-07T07:33:59.2367734Z [133289] URL: https://github.com/pytorch/pytorch/pull/133289 2025-09-07T07:33:59.2368665Z [133289] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2369703Z ##[endgroup] 2025-09-07T07:33:59.2370540Z ##[group]Processing PR #133296 2025-09-07T07:33:59.2371320Z [133296] URL: https://github.com/pytorch/pytorch/pull/133296 2025-09-07T07:33:59.2372179Z [133296] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2373202Z ##[endgroup] 2025-09-07T07:33:59.2374020Z ##[group]Processing PR #133297 2025-09-07T07:33:59.2374785Z [133297] URL: https://github.com/pytorch/pytorch/pull/133297 2025-09-07T07:33:59.2375686Z [133297] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2376739Z ##[endgroup] 2025-09-07T07:33:59.2377556Z ##[group]Processing PR #133315 2025-09-07T07:33:59.2378320Z [133315] URL: https://github.com/pytorch/pytorch/pull/133315 2025-09-07T07:33:59.2379215Z [133315] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2380223Z ##[endgroup] 2025-09-07T07:33:59.2381045Z ##[group]Processing PR #133392 2025-09-07T07:33:59.2381841Z [133392] URL: https://github.com/pytorch/pytorch/pull/133392 2025-09-07T07:33:59.2382733Z [133392] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2383759Z ##[endgroup] 2025-09-07T07:33:59.2384587Z ##[group]Processing PR #133419 2025-09-07T07:33:59.2385359Z [133419] URL: https://github.com/pytorch/pytorch/pull/133419 2025-09-07T07:33:59.2386236Z [133419] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2387388Z ##[endgroup] 2025-09-07T07:33:59.2388223Z ##[group]Processing PR #133423 2025-09-07T07:33:59.2388987Z [133423] URL: https://github.com/pytorch/pytorch/pull/133423 2025-09-07T07:33:59.2390155Z [133423] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2391197Z ##[endgroup] 2025-09-07T07:33:59.2392025Z ##[group]Processing PR #133667 2025-09-07T07:33:59.2392779Z [133667] URL: https://github.com/pytorch/pytorch/pull/133667 2025-09-07T07:33:59.2393657Z [133667] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2394691Z ##[endgroup] 2025-09-07T07:33:59.2395876Z ##[group]Processing PR #133753 2025-09-07T07:33:59.2396825Z [133753] URL: https://github.com/pytorch/pytorch/pull/133753 2025-09-07T07:33:59.2397903Z [133753] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2399076Z ##[endgroup] 2025-09-07T07:33:59.2403223Z ##[group]Processing PR #134881 2025-09-07T07:33:59.2404252Z [134881] URL: https://github.com/pytorch/pytorch/pull/134881 2025-09-07T07:33:59.2405206Z [134881] Checking whether to label PR as stale. 2025-09-07T07:33:59.2406182Z [134881] Skipping because PR was updated recently 2025-09-07T07:33:59.2407483Z ##[endgroup] 2025-09-07T07:33:59.2408604Z ##[group]Processing PR #134942 2025-09-07T07:33:59.2409575Z [134942] URL: https://github.com/pytorch/pytorch/pull/134942 2025-09-07T07:33:59.2410557Z [134942] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2411872Z ##[endgroup] 2025-09-07T07:33:59.2412947Z ##[group]Processing PR #135631 2025-09-07T07:33:59.2413983Z [135631] URL: https://github.com/pytorch/pytorch/pull/135631 2025-09-07T07:33:59.2415218Z [135631] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2416468Z ##[endgroup] 2025-09-07T07:33:59.2417587Z ##[group]Processing PR #135792 2025-09-07T07:33:59.2418457Z [135792] URL: https://github.com/pytorch/pytorch/pull/135792 2025-09-07T07:33:59.2419456Z [135792] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2420805Z ##[endgroup] 2025-09-07T07:33:59.2421777Z ##[group]Processing PR #136355 2025-09-07T07:33:59.2422767Z [136355] URL: https://github.com/pytorch/pytorch/pull/136355 2025-09-07T07:33:59.2423808Z [136355] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2424982Z ##[endgroup] 2025-09-07T07:33:59.2426165Z ##[group]Processing PR #136702 2025-09-07T07:33:59.2427189Z [136702] URL: https://github.com/pytorch/pytorch/pull/136702 2025-09-07T07:33:59.2428201Z [136702] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2429434Z ##[endgroup] 2025-09-07T07:33:59.2430520Z ##[group]Processing PR #136835 2025-09-07T07:33:59.2431471Z [136835] URL: https://github.com/pytorch/pytorch/pull/136835 2025-09-07T07:33:59.2432457Z [136835] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2433740Z ##[endgroup] 2025-09-07T07:33:59.2434996Z ##[group]Processing PR #137059 2025-09-07T07:33:59.2435832Z [137059] URL: https://github.com/pytorch/pytorch/pull/137059 2025-09-07T07:33:59.2437133Z [137059] PR is labeled stale, checking whether we should close it. 2025-09-07T07:33:59.2438171Z [137059] Skipping because PR was updated recently 2025-09-07T07:33:59.2439392Z ##[endgroup] 2025-09-07T07:33:59.2440455Z ##[group]Processing PR #137400 2025-09-07T07:33:59.2441376Z [137400] URL: https://github.com/pytorch/pytorch/pull/137400 2025-09-07T07:33:59.2442427Z [137400] Checking whether to label PR as stale. 2025-09-07T07:33:59.2443373Z [137400] Skipping because PR was updated recently 2025-09-07T07:33:59.2444629Z ##[endgroup] 2025-09-07T07:33:59.2445708Z ##[group]Processing PR #137568 2025-09-07T07:33:59.2446571Z [137568] URL: https://github.com/pytorch/pytorch/pull/137568 2025-09-07T07:33:59.2447719Z [137568] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2448945Z ##[endgroup] 2025-09-07T07:33:59.2449965Z ##[group]Processing PR #137583 2025-09-07T07:33:59.2450927Z [137583] URL: https://github.com/pytorch/pytorch/pull/137583 2025-09-07T07:33:59.2451958Z [137583] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2453208Z ##[endgroup] 2025-09-07T07:33:59.2454246Z ##[group]Processing PR #138068 2025-09-07T07:33:59.2455189Z [138068] URL: https://github.com/pytorch/pytorch/pull/138068 2025-09-07T07:33:59.2456416Z [138068] Checking whether to label PR as stale. 2025-09-07T07:33:59.2457349Z [138068] Skipping because PR was updated recently 2025-09-07T07:33:59.2458710Z ##[endgroup] 2025-09-07T07:33:59.2459736Z ##[group]Processing PR #138214 2025-09-07T07:33:59.2460551Z [138214] URL: https://github.com/pytorch/pytorch/pull/138214 2025-09-07T07:33:59.2461650Z [138214] Checking whether to label PR as stale. 2025-09-07T07:33:59.2462538Z [138214] Skipping because PR was updated recently 2025-09-07T07:33:59.2463814Z ##[endgroup] 2025-09-07T07:33:59.2464868Z ##[group]Processing PR #138388 2025-09-07T07:33:59.2465766Z [138388] URL: https://github.com/pytorch/pytorch/pull/138388 2025-09-07T07:33:59.2466917Z [138388] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2468241Z ##[endgroup] 2025-09-07T07:33:59.2469369Z ##[group]Processing PR #138436 2025-09-07T07:33:59.2470234Z [138436] URL: https://github.com/pytorch/pytorch/pull/138436 2025-09-07T07:33:59.2471260Z [138436] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2472595Z ##[endgroup] 2025-09-07T07:33:59.2473651Z ##[group]Processing PR #138471 2025-09-07T07:33:59.2474547Z [138471] URL: https://github.com/pytorch/pytorch/pull/138471 2025-09-07T07:33:59.2475611Z [138471] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2476797Z ##[endgroup] 2025-09-07T07:33:59.2477861Z ##[group]Processing PR #138513 2025-09-07T07:33:59.2479035Z [138513] URL: https://github.com/pytorch/pytorch/pull/138513 2025-09-07T07:33:59.2480148Z [138513] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2481351Z ##[endgroup] 2025-09-07T07:33:59.2482356Z ##[group]Processing PR #138519 2025-09-07T07:33:59.2483383Z [138519] URL: https://github.com/pytorch/pytorch/pull/138519 2025-09-07T07:33:59.2484338Z [138519] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2485589Z ##[endgroup] 2025-09-07T07:33:59.2486661Z ##[group]Processing PR #138626 2025-09-07T07:33:59.2487551Z [138626] URL: https://github.com/pytorch/pytorch/pull/138626 2025-09-07T07:33:59.2488678Z [138626] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2489927Z ##[endgroup] 2025-09-07T07:33:59.2490828Z ##[group]Processing PR #138996 2025-09-07T07:33:59.2491604Z [138996] URL: https://github.com/pytorch/pytorch/pull/138996 2025-09-07T07:33:59.2492442Z [138996] Checking whether to label PR as stale. 2025-09-07T07:33:59.2493235Z [138996] Skipping because PR was updated recently 2025-09-07T07:33:59.2494251Z ##[endgroup] 2025-09-07T07:33:59.2495077Z ##[group]Processing PR #139171 2025-09-07T07:33:59.2495828Z [139171] URL: https://github.com/pytorch/pytorch/pull/139171 2025-09-07T07:33:59.2496793Z [139171] PR is labeled stale, checking whether we should close it. 2025-09-07T07:33:59.2497645Z [139171] Skipping because PR was updated recently 2025-09-07T07:33:59.2498648Z ##[endgroup] 2025-09-07T07:33:59.2499467Z ##[group]Processing PR #139524 2025-09-07T07:33:59.2500229Z [139524] URL: https://github.com/pytorch/pytorch/pull/139524 2025-09-07T07:33:59.2501097Z [139524] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2502151Z ##[endgroup] 2025-09-07T07:33:59.2502968Z ##[group]Processing PR #139886 2025-09-07T07:33:59.2503706Z [139886] URL: https://github.com/pytorch/pytorch/pull/139886 2025-09-07T07:33:59.2504575Z [139886] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2505592Z ##[endgroup] 2025-09-07T07:33:59.2506389Z ##[group]Processing PR #139939 2025-09-07T07:33:59.2507242Z [139939] URL: https://github.com/pytorch/pytorch/pull/139939 2025-09-07T07:33:59.2508202Z [139939] PR is labeled stale, checking whether we should close it. 2025-09-07T07:33:59.2509042Z [139939] Skipping because PR was updated recently 2025-09-07T07:33:59.2509984Z ##[endgroup] 2025-09-07T07:33:59.2510792Z ##[group]Processing PR #139971 2025-09-07T07:33:59.2511512Z [139971] URL: https://github.com/pytorch/pytorch/pull/139971 2025-09-07T07:33:59.2512428Z [139971] PR is labeled stale, checking whether we should close it. 2025-09-07T07:33:59.2513248Z [139971] Skipping because PR was updated recently 2025-09-07T07:33:59.2514386Z ##[endgroup] 2025-09-07T07:33:59.2515144Z ##[group]Processing PR #140117 2025-09-07T07:33:59.2515863Z [140117] URL: https://github.com/pytorch/pytorch/pull/140117 2025-09-07T07:33:59.2516785Z [140117] PR is labeled stale, checking whether we should close it. 2025-09-07T07:33:59.2517653Z [140117] Skipping because PR was updated recently 2025-09-07T07:33:59.2518677Z ##[endgroup] 2025-09-07T07:33:59.2519485Z ##[group]Processing PR #140321 2025-09-07T07:33:59.2520229Z [140321] URL: https://github.com/pytorch/pytorch/pull/140321 2025-09-07T07:33:59.2521053Z [140321] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2521907Z ##[endgroup] 2025-09-07T07:33:59.2522519Z ##[group]Processing PR #140372 2025-09-07T07:33:59.2523156Z [140372] URL: https://github.com/pytorch/pytorch/pull/140372 2025-09-07T07:33:59.2523989Z [140372] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2525006Z ##[endgroup] 2025-09-07T07:33:59.2525733Z ##[group]Processing PR #140613 2025-09-07T07:33:59.2526392Z [140613] URL: https://github.com/pytorch/pytorch/pull/140613 2025-09-07T07:33:59.2527239Z [140613] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2528232Z ##[endgroup] 2025-09-07T07:33:59.2529005Z ##[group]Processing PR #140972 2025-09-07T07:33:59.2529732Z [140972] URL: https://github.com/pytorch/pytorch/pull/140972 2025-09-07T07:33:59.2530756Z [140972] Checking whether to label PR as stale. 2025-09-07T07:33:59.2531458Z [140972] Skipping because PR was updated recently 2025-09-07T07:33:59.2532499Z ##[endgroup] 2025-09-07T07:33:59.2533325Z ##[group]Processing PR #141842 2025-09-07T07:33:59.2534254Z [141842] URL: https://github.com/pytorch/pytorch/pull/141842 2025-09-07T07:33:59.2535785Z [141842] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2536881Z ##[endgroup] 2025-09-07T07:33:59.2537618Z ##[group]Processing PR #141912 2025-09-07T07:33:59.2538318Z [141912] URL: https://github.com/pytorch/pytorch/pull/141912 2025-09-07T07:33:59.2539120Z [141912] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2539942Z ##[endgroup] 2025-09-07T07:33:59.2540611Z ##[group]Processing PR #141961 2025-09-07T07:33:59.2541187Z [141961] URL: https://github.com/pytorch/pytorch/pull/141961 2025-09-07T07:33:59.2541938Z [141961] PR is labeled stale, checking whether we should close it. 2025-09-07T07:33:59.2542666Z [141961] Skipping because PR was updated recently 2025-09-07T07:33:59.2543521Z ##[endgroup] 2025-09-07T07:33:59.2544301Z ##[group]Processing PR #142114 2025-09-07T07:33:59.2545010Z [142114] URL: https://github.com/pytorch/pytorch/pull/142114 2025-09-07T07:33:59.2545840Z [142114] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2546955Z ##[endgroup] 2025-09-07T07:33:59.2547774Z ##[group]Processing PR #142160 2025-09-07T07:33:59.2548516Z [142160] URL: https://github.com/pytorch/pytorch/pull/142160 2025-09-07T07:33:59.2549402Z [142160] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2550363Z ##[endgroup] 2025-09-07T07:33:59.2551172Z ##[group]Processing PR #142295 2025-09-07T07:33:59.2551935Z [142295] URL: https://github.com/pytorch/pytorch/pull/142295 2025-09-07T07:33:59.2552783Z [142295] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2553799Z ##[endgroup] 2025-09-07T07:33:59.2554604Z ##[group]Processing PR #143812 2025-09-07T07:33:59.2555370Z [143812] URL: https://github.com/pytorch/pytorch/pull/143812 2025-09-07T07:33:59.2556249Z [143812] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2557258Z ##[endgroup] 2025-09-07T07:33:59.2558064Z ##[group]Processing PR #143959 2025-09-07T07:33:59.2558803Z [143959] URL: https://github.com/pytorch/pytorch/pull/143959 2025-09-07T07:33:59.2559654Z [143959] Checking whether to label PR as stale. 2025-09-07T07:33:59.2560422Z [143959] Skipping because PR was updated recently 2025-09-07T07:33:59.2561390Z ##[endgroup] 2025-09-07T07:33:59.2562202Z ##[group]Processing PR #144219 2025-09-07T07:33:59.2562960Z [144219] URL: https://github.com/pytorch/pytorch/pull/144219 2025-09-07T07:33:59.2564142Z [144219] PR is labeled stale, checking whether we should close it. 2025-09-07T07:33:59.2565030Z [144219] Skipping because PR was updated recently 2025-09-07T07:33:59.2566042Z ##[endgroup] 2025-09-07T07:33:59.2566834Z ##[group]Processing PR #144465 2025-09-07T07:33:59.2567581Z [144465] URL: https://github.com/pytorch/pytorch/pull/144465 2025-09-07T07:33:59.2568468Z [144465] Checking whether to label PR as stale. 2025-09-07T07:33:59.2569237Z [144465] Skipping because PR was updated recently 2025-09-07T07:33:59.2570246Z ##[endgroup] 2025-09-07T07:33:59.2571072Z ##[group]Processing PR #144944 2025-09-07T07:33:59.2571821Z [144944] URL: https://github.com/pytorch/pytorch/pull/144944 2025-09-07T07:33:59.2572799Z [144944] PR is labeled stale, checking whether we should close it. 2025-09-07T07:33:59.2573662Z [144944] Skipping because PR was updated recently 2025-09-07T07:33:59.2574661Z ##[endgroup] 2025-09-07T07:33:59.2575471Z ##[group]Processing PR #145260 2025-09-07T07:33:59.2576249Z [145260] URL: https://github.com/pytorch/pytorch/pull/145260 2025-09-07T07:33:59.2577005Z [145260] Checking whether to label PR as stale. 2025-09-07T07:33:59.2577770Z [145260] Skipping because PR was updated recently 2025-09-07T07:33:59.2578758Z ##[endgroup] 2025-09-07T07:33:59.2579543Z ##[group]Processing PR #145873 2025-09-07T07:33:59.2580515Z [145873] URL: https://github.com/pytorch/pytorch/pull/145873 2025-09-07T07:33:59.2581365Z [145873] Checking whether to label PR as stale. 2025-09-07T07:33:59.2582117Z [145873] Skipping because PR was updated recently 2025-09-07T07:33:59.2583106Z ##[endgroup] 2025-09-07T07:33:59.2584193Z ##[group]Processing PR #145922 2025-09-07T07:33:59.2584962Z [145922] URL: https://github.com/pytorch/pytorch/pull/145922 2025-09-07T07:33:59.2585852Z [145922] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2586930Z ##[endgroup] 2025-09-07T07:33:59.2587668Z ##[group]Processing PR #146101 2025-09-07T07:33:59.2588438Z [146101] URL: https://github.com/pytorch/pytorch/pull/146101 2025-09-07T07:33:59.2589347Z [146101] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2590333Z ##[endgroup] 2025-09-07T07:33:59.2591141Z ##[group]Processing PR #146172 2025-09-07T07:33:59.2591889Z [146172] URL: https://github.com/pytorch/pytorch/pull/146172 2025-09-07T07:33:59.2592743Z [146172] Skipping because PR has an exempting label. 2025-09-07T07:33:59.2593765Z ##[endgroup] 2025-09-07T07:34:00.4960335Z ##[group]Processing PR #146318 2025-09-07T07:34:00.4961541Z [146318] URL: https://github.com/pytorch/pytorch/pull/146318 2025-09-07T07:34:00.4962508Z [146318] Skipping because PR has an exempting label. 2025-09-07T07:34:00.4963587Z ##[endgroup] 2025-09-07T07:34:00.4964931Z ##[group]Processing PR #146506 2025-09-07T07:34:00.4965932Z [146506] URL: https://github.com/pytorch/pytorch/pull/146506 2025-09-07T07:34:00.4966877Z [146506] Checking whether to label PR as stale. 2025-09-07T07:34:00.4967680Z [146506] Skipping because PR was updated recently 2025-09-07T07:34:00.4968856Z ##[endgroup] 2025-09-07T07:34:00.4969726Z ##[group]Processing PR #146593 2025-09-07T07:34:00.4970533Z [146593] URL: https://github.com/pytorch/pytorch/pull/146593 2025-09-07T07:34:00.4971448Z [146593] Skipping because PR has an exempting label. 2025-09-07T07:34:00.4972496Z ##[endgroup] 2025-09-07T07:34:00.4973329Z ##[group]Processing PR #146983 2025-09-07T07:34:00.4974150Z [146983] URL: https://github.com/pytorch/pytorch/pull/146983 2025-09-07T07:34:00.4975190Z [146983] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.4976125Z [146983] Skipping because PR was updated recently 2025-09-07T07:34:00.4977156Z ##[endgroup] 2025-09-07T07:34:00.4977984Z ##[group]Processing PR #147253 2025-09-07T07:34:00.4978778Z [147253] URL: https://github.com/pytorch/pytorch/pull/147253 2025-09-07T07:34:00.4979788Z [147253] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.4980742Z [147253] Skipping because PR was updated recently 2025-09-07T07:34:00.4981822Z ##[endgroup] 2025-09-07T07:34:00.4984208Z ##[group]Processing PR #147360 2025-09-07T07:34:00.4987885Z [147360] URL: https://github.com/pytorch/pytorch/pull/147360 2025-09-07T07:34:00.4988639Z [147360] Checking whether to label PR as stale. 2025-09-07T07:34:00.4989307Z [147360] Skipping because PR was updated recently 2025-09-07T07:34:00.4990206Z ##[endgroup] 2025-09-07T07:34:00.4990913Z ##[group]Processing PR #147365 2025-09-07T07:34:00.4991633Z [147365] URL: https://github.com/pytorch/pytorch/pull/147365 2025-09-07T07:34:00.4992448Z [147365] Skipping because PR has an exempting label. 2025-09-07T07:34:00.4993356Z ##[endgroup] 2025-09-07T07:34:00.4994066Z ##[group]Processing PR #147470 2025-09-07T07:34:00.4994703Z [147470] URL: https://github.com/pytorch/pytorch/pull/147470 2025-09-07T07:34:00.4995431Z [147470] Checking whether to label PR as stale. 2025-09-07T07:34:00.4996096Z [147470] Skipping because PR was updated recently 2025-09-07T07:34:00.4996912Z ##[endgroup] 2025-09-07T07:34:00.4997473Z ##[group]Processing PR #147522 2025-09-07T07:34:00.4998027Z [147522] URL: https://github.com/pytorch/pytorch/pull/147522 2025-09-07T07:34:00.4998739Z [147522] Checking whether to label PR as stale. 2025-09-07T07:34:00.4999316Z [147522] Skipping because PR was updated recently 2025-09-07T07:34:00.5000117Z ##[endgroup] 2025-09-07T07:34:00.5000793Z ##[group]Processing PR #147653 2025-09-07T07:34:00.5001602Z [147653] URL: https://github.com/pytorch/pytorch/pull/147653 2025-09-07T07:34:00.5002335Z [147653] Skipping because PR has an exempting label. 2025-09-07T07:34:00.5003147Z ##[endgroup] 2025-09-07T07:34:00.5003796Z ##[group]Processing PR #147855 2025-09-07T07:34:00.5004355Z [147855] URL: https://github.com/pytorch/pytorch/pull/147855 2025-09-07T07:34:00.5005032Z [147855] Checking whether to label PR as stale. 2025-09-07T07:34:00.5005576Z [147855] Skipping because PR was updated recently 2025-09-07T07:34:00.5006269Z ##[endgroup] 2025-09-07T07:34:00.5006842Z ##[group]Processing PR #147927 2025-09-07T07:34:00.5007398Z [147927] URL: https://github.com/pytorch/pytorch/pull/147927 2025-09-07T07:34:00.5007935Z [147927] Skipping because PR has an exempting label. 2025-09-07T07:34:00.5008437Z ##[endgroup] 2025-09-07T07:34:00.5008818Z ##[group]Processing PR #147990 2025-09-07T07:34:00.5009160Z [147990] URL: https://github.com/pytorch/pytorch/pull/147990 2025-09-07T07:34:00.5009561Z [147990] Checking whether to label PR as stale. 2025-09-07T07:34:00.5009916Z [147990] Skipping because PR was updated recently 2025-09-07T07:34:00.5010383Z ##[endgroup] 2025-09-07T07:34:00.5010757Z ##[group]Processing PR #148023 2025-09-07T07:34:00.5011109Z [148023] URL: https://github.com/pytorch/pytorch/pull/148023 2025-09-07T07:34:00.5011512Z [148023] Skipping because PR has an exempting label. 2025-09-07T07:34:00.5011989Z ##[endgroup] 2025-09-07T07:34:00.5012360Z ##[group]Processing PR #148180 2025-09-07T07:34:00.5012699Z [148180] URL: https://github.com/pytorch/pytorch/pull/148180 2025-09-07T07:34:00.5013100Z [148180] Checking whether to label PR as stale. 2025-09-07T07:34:00.5013453Z [148180] Skipping because PR was updated recently 2025-09-07T07:34:00.5014058Z ##[endgroup] 2025-09-07T07:34:00.5014435Z ##[group]Processing PR #148328 2025-09-07T07:34:00.5014786Z [148328] URL: https://github.com/pytorch/pytorch/pull/148328 2025-09-07T07:34:00.5015497Z [148328] Checking whether to label PR as stale. 2025-09-07T07:34:00.5015877Z [148328] Skipping because PR was updated recently 2025-09-07T07:34:00.5016360Z ##[endgroup] 2025-09-07T07:34:00.5016723Z ##[group]Processing PR #148355 2025-09-07T07:34:00.5017074Z [148355] URL: https://github.com/pytorch/pytorch/pull/148355 2025-09-07T07:34:00.5017465Z [148355] Checking whether to label PR as stale. 2025-09-07T07:34:00.5017868Z [148355] Skipping because PR was updated recently 2025-09-07T07:34:00.5018342Z ##[endgroup] 2025-09-07T07:34:00.5018721Z ##[group]Processing PR #148408 2025-09-07T07:34:00.5019062Z [148408] URL: https://github.com/pytorch/pytorch/pull/148408 2025-09-07T07:34:00.5019465Z [148408] Checking whether to label PR as stale. 2025-09-07T07:34:00.5020114Z [148408] Skipping because PR was updated recently 2025-09-07T07:34:00.5020585Z ##[endgroup] 2025-09-07T07:34:00.5020959Z ##[group]Processing PR #148474 2025-09-07T07:34:00.5021299Z [148474] URL: https://github.com/pytorch/pytorch/pull/148474 2025-09-07T07:34:00.5021699Z [148474] Checking whether to label PR as stale. 2025-09-07T07:34:00.5022066Z [148474] Skipping because PR was updated recently 2025-09-07T07:34:00.5022517Z ##[endgroup] 2025-09-07T07:34:00.5022890Z ##[group]Processing PR #148484 2025-09-07T07:34:00.5023377Z [148484] URL: https://github.com/pytorch/pytorch/pull/148484 2025-09-07T07:34:00.5023807Z [148484] Checking whether to label PR as stale. 2025-09-07T07:34:00.5024167Z [148484] Skipping because PR was updated recently 2025-09-07T07:34:00.5024635Z ##[endgroup] 2025-09-07T07:34:00.5025008Z ##[group]Processing PR #148492 2025-09-07T07:34:00.5025344Z [148492] URL: https://github.com/pytorch/pytorch/pull/148492 2025-09-07T07:34:00.5025745Z [148492] Checking whether to label PR as stale. 2025-09-07T07:34:00.5026094Z [148492] Skipping because PR was updated recently 2025-09-07T07:34:00.5026561Z ##[endgroup] 2025-09-07T07:34:00.5027039Z ##[group]Processing PR #148569 2025-09-07T07:34:00.5027380Z [148569] URL: https://github.com/pytorch/pytorch/pull/148569 2025-09-07T07:34:00.5027782Z [148569] Checking whether to label PR as stale. 2025-09-07T07:34:00.5028222Z [148569] Skipping because PR was updated recently 2025-09-07T07:34:00.5028679Z ##[endgroup] 2025-09-07T07:34:00.5029058Z ##[group]Processing PR #148673 2025-09-07T07:34:00.5029411Z [148673] URL: https://github.com/pytorch/pytorch/pull/148673 2025-09-07T07:34:00.5029803Z [148673] Checking whether to label PR as stale. 2025-09-07T07:34:00.5030163Z [148673] Skipping because PR was updated recently 2025-09-07T07:34:00.5030629Z ##[endgroup] 2025-09-07T07:34:00.5030988Z ##[group]Processing PR #148674 2025-09-07T07:34:00.5031337Z [148674] URL: https://github.com/pytorch/pytorch/pull/148674 2025-09-07T07:34:00.5031743Z [148674] Checking whether to label PR as stale. 2025-09-07T07:34:00.5032090Z [148674] Skipping because PR was updated recently 2025-09-07T07:34:00.5032554Z ##[endgroup] 2025-09-07T07:34:00.5032929Z ##[group]Processing PR #148820 2025-09-07T07:34:00.5033267Z [148820] URL: https://github.com/pytorch/pytorch/pull/148820 2025-09-07T07:34:00.5033685Z [148820] Skipping because PR has an exempting label. 2025-09-07T07:34:00.5034428Z ##[endgroup] 2025-09-07T07:34:00.5034813Z ##[group]Processing PR #148900 2025-09-07T07:34:00.5035156Z [148900] URL: https://github.com/pytorch/pytorch/pull/148900 2025-09-07T07:34:00.5035576Z [148900] Skipping because PR has an exempting label. 2025-09-07T07:34:00.5036041Z ##[endgroup] 2025-09-07T07:34:00.5036414Z ##[group]Processing PR #148919 2025-09-07T07:34:00.5036763Z [148919] URL: https://github.com/pytorch/pytorch/pull/148919 2025-09-07T07:34:00.5037205Z [148919] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5037622Z [148919] Skipping because PR was updated recently 2025-09-07T07:34:00.5038092Z ##[endgroup] 2025-09-07T07:34:00.5038464Z ##[group]Processing PR #148956 2025-09-07T07:34:00.5038802Z [148956] URL: https://github.com/pytorch/pytorch/pull/148956 2025-09-07T07:34:00.5039253Z [148956] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5039657Z [148956] Skipping because PR was updated recently 2025-09-07T07:34:00.5040128Z ##[endgroup] 2025-09-07T07:34:00.5040506Z ##[group]Processing PR #149003 2025-09-07T07:34:00.5040843Z [149003] URL: https://github.com/pytorch/pytorch/pull/149003 2025-09-07T07:34:00.5041291Z [149003] Checking whether to label PR as stale. 2025-09-07T07:34:00.5041771Z [149003] Skipping because PR was updated recently 2025-09-07T07:34:00.5042222Z ##[endgroup] 2025-09-07T07:34:00.5042614Z ##[group]Processing PR #149122 2025-09-07T07:34:00.5042966Z [149122] URL: https://github.com/pytorch/pytorch/pull/149122 2025-09-07T07:34:00.5043352Z [149122] Checking whether to label PR as stale. 2025-09-07T07:34:00.5043866Z [149122] Skipping because PR was updated recently 2025-09-07T07:34:00.5044337Z ##[endgroup] 2025-09-07T07:34:00.5044711Z ##[group]Processing PR #149271 2025-09-07T07:34:00.5045049Z [149271] URL: https://github.com/pytorch/pytorch/pull/149271 2025-09-07T07:34:00.5045452Z [149271] Checking whether to label PR as stale. 2025-09-07T07:34:00.5045804Z [149271] Skipping because PR was updated recently 2025-09-07T07:34:00.5046294Z ##[endgroup] 2025-09-07T07:34:00.5046673Z ##[group]Processing PR #149536 2025-09-07T07:34:00.5047013Z [149536] URL: https://github.com/pytorch/pytorch/pull/149536 2025-09-07T07:34:00.5047414Z [149536] Checking whether to label PR as stale. 2025-09-07T07:34:00.5047774Z [149536] Skipping because PR was updated recently 2025-09-07T07:34:00.5048229Z ##[endgroup] 2025-09-07T07:34:00.5048601Z ##[group]Processing PR #149939 2025-09-07T07:34:00.5048953Z [149939] URL: https://github.com/pytorch/pytorch/pull/149939 2025-09-07T07:34:00.5049341Z [149939] Checking whether to label PR as stale. 2025-09-07T07:34:00.5049723Z [149939] Skipping because PR was updated recently 2025-09-07T07:34:00.5050297Z ##[endgroup] 2025-09-07T07:34:00.5050660Z ##[group]Processing PR #149961 2025-09-07T07:34:00.5051019Z [149961] URL: https://github.com/pytorch/pytorch/pull/149961 2025-09-07T07:34:00.5051419Z [149961] Checking whether to label PR as stale. 2025-09-07T07:34:00.5051877Z [149961] Skipping because PR was updated recently 2025-09-07T07:34:00.5052355Z ##[endgroup] 2025-09-07T07:34:00.5052735Z ##[group]Processing PR #150182 2025-09-07T07:34:00.5053076Z [150182] URL: https://github.com/pytorch/pytorch/pull/150182 2025-09-07T07:34:00.5053534Z [150182] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5053939Z [150182] Skipping because PR was updated recently 2025-09-07T07:34:00.5054404Z ##[endgroup] 2025-09-07T07:34:00.5054775Z ##[group]Processing PR #150282 2025-09-07T07:34:00.5055126Z [150282] URL: https://github.com/pytorch/pytorch/pull/150282 2025-09-07T07:34:00.5055517Z [150282] Checking whether to label PR as stale. 2025-09-07T07:34:00.5055875Z [150282] Skipping because PR was updated recently 2025-09-07T07:34:00.5056341Z ##[endgroup] 2025-09-07T07:34:00.5056703Z ##[group]Processing PR #150302 2025-09-07T07:34:00.5057052Z [150302] URL: https://github.com/pytorch/pytorch/pull/150302 2025-09-07T07:34:00.5057516Z [150302] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5057993Z [150302] Skipping because PR was updated recently 2025-09-07T07:34:00.5058463Z ##[endgroup] 2025-09-07T07:34:00.5058836Z ##[group]Processing PR #150552 2025-09-07T07:34:00.5059175Z [150552] URL: https://github.com/pytorch/pytorch/pull/150552 2025-09-07T07:34:00.5059627Z [150552] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5060031Z [150552] Skipping because PR was updated recently 2025-09-07T07:34:00.5060541Z ##[endgroup] 2025-09-07T07:34:00.5061264Z ##[group]Processing PR #150569 2025-09-07T07:34:00.5061621Z [150569] URL: https://github.com/pytorch/pytorch/pull/150569 2025-09-07T07:34:00.5062018Z [150569] Checking whether to label PR as stale. 2025-09-07T07:34:00.5062378Z [150569] Skipping because PR was updated recently 2025-09-07T07:34:00.5062849Z ##[endgroup] 2025-09-07T07:34:00.5063210Z ##[group]Processing PR #150583 2025-09-07T07:34:00.5063561Z [150583] URL: https://github.com/pytorch/pytorch/pull/150583 2025-09-07T07:34:00.5064009Z [150583] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5064427Z [150583] Skipping because PR was updated recently 2025-09-07T07:34:00.5064895Z ##[endgroup] 2025-09-07T07:34:00.5065270Z ##[group]Processing PR #150721 2025-09-07T07:34:00.5065608Z [150721] URL: https://github.com/pytorch/pytorch/pull/150721 2025-09-07T07:34:00.5066009Z [150721] Checking whether to label PR as stale. 2025-09-07T07:34:00.5066356Z [150721] Skipping because PR was updated recently 2025-09-07T07:34:00.5067156Z ##[endgroup] 2025-09-07T07:34:00.5067551Z ##[group]Processing PR #150793 2025-09-07T07:34:00.5068125Z [150793] URL: https://github.com/pytorch/pytorch/pull/150793 2025-09-07T07:34:00.5068573Z [150793] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5068996Z [150793] Skipping because PR was updated recently 2025-09-07T07:34:00.5069475Z ##[endgroup] 2025-09-07T07:34:00.5069840Z ##[group]Processing PR #150934 2025-09-07T07:34:00.5070193Z [150934] URL: https://github.com/pytorch/pytorch/pull/150934 2025-09-07T07:34:00.5070638Z [150934] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5071054Z [150934] Skipping because PR was updated recently 2025-09-07T07:34:00.5071520Z ##[endgroup] 2025-09-07T07:34:00.5071891Z ##[group]Processing PR #151191 2025-09-07T07:34:00.5072227Z [151191] URL: https://github.com/pytorch/pytorch/pull/151191 2025-09-07T07:34:00.5072682Z [151191] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5073082Z [151191] Skipping because PR was updated recently 2025-09-07T07:34:00.5073549Z ##[endgroup] 2025-09-07T07:34:00.5073925Z ##[group]Processing PR #151218 2025-09-07T07:34:00.5074275Z [151218] URL: https://github.com/pytorch/pytorch/pull/151218 2025-09-07T07:34:00.5074665Z [151218] Checking whether to label PR as stale. 2025-09-07T07:34:00.5075027Z [151218] Skipping because PR was updated recently 2025-09-07T07:34:00.5075479Z ##[endgroup] 2025-09-07T07:34:00.5075853Z ##[group]Processing PR #151298 2025-09-07T07:34:00.5076291Z [151298] URL: https://github.com/pytorch/pytorch/pull/151298 2025-09-07T07:34:00.5076735Z [151298] Checking whether to label PR as stale. 2025-09-07T07:34:00.5077092Z [151298] Skipping because PR was updated recently 2025-09-07T07:34:00.5077559Z ##[endgroup] 2025-09-07T07:34:00.5077928Z ##[group]Processing PR #151305 2025-09-07T07:34:00.5078263Z [151305] URL: https://github.com/pytorch/pytorch/pull/151305 2025-09-07T07:34:00.5078881Z [151305] Skipping because PR has an exempting label. 2025-09-07T07:34:00.5079369Z ##[endgroup] 2025-09-07T07:34:00.5079730Z ##[group]Processing PR #151314 2025-09-07T07:34:00.5080086Z [151314] URL: https://github.com/pytorch/pytorch/pull/151314 2025-09-07T07:34:00.5080481Z [151314] Checking whether to label PR as stale. 2025-09-07T07:34:00.5080841Z [151314] Skipping because PR was updated recently 2025-09-07T07:34:00.5081311Z ##[endgroup] 2025-09-07T07:34:00.5081684Z ##[group]Processing PR #151439 2025-09-07T07:34:00.5082027Z [151439] URL: https://github.com/pytorch/pytorch/pull/151439 2025-09-07T07:34:00.5082480Z [151439] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5082885Z [151439] Skipping because PR was updated recently 2025-09-07T07:34:00.5083352Z ##[endgroup] 2025-09-07T07:34:00.5083728Z ##[group]Processing PR #151447 2025-09-07T07:34:00.5084078Z [151447] URL: https://github.com/pytorch/pytorch/pull/151447 2025-09-07T07:34:00.5084469Z [151447] Checking whether to label PR as stale. 2025-09-07T07:34:00.5084830Z [151447] Skipping because PR was updated recently 2025-09-07T07:34:00.5085283Z ##[endgroup] 2025-09-07T07:34:00.5085662Z ##[group]Processing PR #151465 2025-09-07T07:34:00.5086011Z [151465] URL: https://github.com/pytorch/pytorch/pull/151465 2025-09-07T07:34:00.5086399Z [151465] Checking whether to label PR as stale. 2025-09-07T07:34:00.5086756Z [151465] Skipping because PR was updated recently 2025-09-07T07:34:00.5087219Z ##[endgroup] 2025-09-07T07:34:00.5087587Z ##[group]Processing PR #151531 2025-09-07T07:34:00.5087928Z [151531] URL: https://github.com/pytorch/pytorch/pull/151531 2025-09-07T07:34:00.5088381Z [151531] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5088785Z [151531] Skipping because PR was updated recently 2025-09-07T07:34:00.5089249Z ##[endgroup] 2025-09-07T07:34:00.5089795Z ##[group]Processing PR #151700 2025-09-07T07:34:00.5090139Z [151700] URL: https://github.com/pytorch/pytorch/pull/151700 2025-09-07T07:34:00.5090540Z [151700] Checking whether to label PR as stale. 2025-09-07T07:34:00.5090902Z [151700] Skipping because PR was updated recently 2025-09-07T07:34:00.5091467Z ##[endgroup] 2025-09-07T07:34:00.5091847Z ##[group]Processing PR #151758 2025-09-07T07:34:00.5092241Z [151758] URL: https://github.com/pytorch/pytorch/pull/151758 2025-09-07T07:34:00.5092746Z [151758] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5093162Z [151758] Skipping because PR was updated recently 2025-09-07T07:34:00.5093627Z ##[endgroup] 2025-09-07T07:34:00.5094008Z ##[group]Processing PR #151769 2025-09-07T07:34:00.5094348Z [151769] URL: https://github.com/pytorch/pytorch/pull/151769 2025-09-07T07:34:00.5094750Z [151769] Checking whether to label PR as stale. 2025-09-07T07:34:00.5095097Z [151769] Skipping because PR was updated recently 2025-09-07T07:34:00.5095563Z ##[endgroup] 2025-09-07T07:34:00.5095936Z ##[group]Processing PR #151780 2025-09-07T07:34:00.5096277Z [151780] URL: https://github.com/pytorch/pytorch/pull/151780 2025-09-07T07:34:00.5096677Z [151780] Checking whether to label PR as stale. 2025-09-07T07:34:00.5097041Z [151780] Skipping because PR was updated recently 2025-09-07T07:34:00.5097501Z ##[endgroup] 2025-09-07T07:34:00.5097877Z ##[group]Processing PR #151845 2025-09-07T07:34:00.5098240Z [151845] URL: https://github.com/pytorch/pytorch/pull/151845 2025-09-07T07:34:00.5098628Z [151845] Checking whether to label PR as stale. 2025-09-07T07:34:00.5179691Z [151845] Skipping because PR was updated recently 2025-09-07T07:34:00.5180700Z ##[endgroup] 2025-09-07T07:34:00.5181656Z ##[group]Processing PR #151916 2025-09-07T07:34:00.5182209Z [151916] URL: https://github.com/pytorch/pytorch/pull/151916 2025-09-07T07:34:00.5182824Z [151916] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5183414Z [151916] Skipping because PR was updated recently 2025-09-07T07:34:00.5184178Z ##[endgroup] 2025-09-07T07:34:00.5184782Z ##[group]Processing PR #151996 2025-09-07T07:34:00.5185324Z [151996] URL: https://github.com/pytorch/pytorch/pull/151996 2025-09-07T07:34:00.5186057Z [151996] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5186844Z [151996] Skipping because PR was updated recently 2025-09-07T07:34:00.5187705Z ##[endgroup] 2025-09-07T07:34:00.5188374Z ##[group]Processing PR #152026 2025-09-07T07:34:00.5189001Z [152026] URL: https://github.com/pytorch/pytorch/pull/152026 2025-09-07T07:34:00.5189761Z [152026] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5190353Z [152026] Skipping because PR was updated recently 2025-09-07T07:34:00.5191124Z ##[endgroup] 2025-09-07T07:34:00.5191533Z ##[group]Processing PR #152080 2025-09-07T07:34:00.5191896Z [152080] URL: https://github.com/pytorch/pytorch/pull/152080 2025-09-07T07:34:00.5192295Z [152080] Checking whether to label PR as stale. 2025-09-07T07:34:00.5192660Z [152080] Skipping because PR was updated recently 2025-09-07T07:34:00.5193132Z ##[endgroup] 2025-09-07T07:34:00.5193510Z ##[group]Processing PR #152094 2025-09-07T07:34:00.5193851Z [152094] URL: https://github.com/pytorch/pytorch/pull/152094 2025-09-07T07:34:00.5194308Z [152094] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5194722Z [152094] Skipping because PR was updated recently 2025-09-07T07:34:00.5195190Z ##[endgroup] 2025-09-07T07:34:00.5195735Z ##[group]Processing PR #152104 2025-09-07T07:34:00.5196077Z [152104] URL: https://github.com/pytorch/pytorch/pull/152104 2025-09-07T07:34:00.5196483Z [152104] Checking whether to label PR as stale. 2025-09-07T07:34:00.5196852Z [152104] Skipping because PR was updated recently 2025-09-07T07:34:00.5197312Z ##[endgroup] 2025-09-07T07:34:00.5197688Z ##[group]Processing PR #152158 2025-09-07T07:34:00.5198043Z [152158] URL: https://github.com/pytorch/pytorch/pull/152158 2025-09-07T07:34:00.5198451Z [152158] Skipping because PR has an exempting label. 2025-09-07T07:34:00.5198928Z ##[endgroup] 2025-09-07T07:34:00.5199303Z ##[group]Processing PR #152159 2025-09-07T07:34:00.5199657Z [152159] URL: https://github.com/pytorch/pytorch/pull/152159 2025-09-07T07:34:00.5200049Z [152159] Checking whether to label PR as stale. 2025-09-07T07:34:00.5200578Z [152159] Skipping because PR was updated recently 2025-09-07T07:34:00.5201037Z ##[endgroup] 2025-09-07T07:34:00.5201417Z ##[group]Processing PR #152228 2025-09-07T07:34:00.5201766Z [152228] URL: https://github.com/pytorch/pytorch/pull/152228 2025-09-07T07:34:00.5202159Z [152228] Checking whether to label PR as stale. 2025-09-07T07:34:00.5202526Z [152228] Skipping because PR was updated recently 2025-09-07T07:34:00.5203001Z ##[endgroup] 2025-09-07T07:34:00.5203377Z ##[group]Processing PR #152289 2025-09-07T07:34:00.5203715Z [152289] URL: https://github.com/pytorch/pytorch/pull/152289 2025-09-07T07:34:00.5204173Z [152289] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5204579Z [152289] Skipping because PR was updated recently 2025-09-07T07:34:00.5205048Z ##[endgroup] 2025-09-07T07:34:00.5205427Z ##[group]Processing PR #152348 2025-09-07T07:34:00.5205765Z [152348] URL: https://github.com/pytorch/pytorch/pull/152348 2025-09-07T07:34:00.5206220Z [152348] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5206647Z [152348] Skipping because PR was updated recently 2025-09-07T07:34:00.5207104Z ##[endgroup] 2025-09-07T07:34:00.5207485Z ##[group]Processing PR #152361 2025-09-07T07:34:00.5207839Z [152361] URL: https://github.com/pytorch/pytorch/pull/152361 2025-09-07T07:34:00.5208230Z [152361] Checking whether to label PR as stale. 2025-09-07T07:34:00.5208671Z [152361] Skipping because PR was updated recently 2025-09-07T07:34:00.5209144Z ##[endgroup] 2025-09-07T07:34:00.5209523Z ##[group]Processing PR #152624 2025-09-07T07:34:00.5209859Z [152624] URL: https://github.com/pytorch/pytorch/pull/152624 2025-09-07T07:34:00.5210262Z [152624] Checking whether to label PR as stale. 2025-09-07T07:34:00.5210606Z [152624] Skipping because PR was updated recently 2025-09-07T07:34:00.5211072Z ##[endgroup] 2025-09-07T07:34:00.5211445Z ##[group]Processing PR #152642 2025-09-07T07:34:00.5211779Z [152642] URL: https://github.com/pytorch/pytorch/pull/152642 2025-09-07T07:34:00.5212238Z [152642] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5212652Z [152642] Skipping because PR was updated recently 2025-09-07T07:34:00.5213113Z ##[endgroup] 2025-09-07T07:34:00.5213489Z ##[group]Processing PR #152734 2025-09-07T07:34:00.5213840Z [152734] URL: https://github.com/pytorch/pytorch/pull/152734 2025-09-07T07:34:00.5214285Z [152734] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5214698Z [152734] Skipping because PR was updated recently 2025-09-07T07:34:00.5215176Z ##[endgroup] 2025-09-07T07:34:00.5215547Z ##[group]Processing PR #152739 2025-09-07T07:34:00.5215884Z [152739] URL: https://github.com/pytorch/pytorch/pull/152739 2025-09-07T07:34:00.5216333Z [152739] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5216734Z [152739] Skipping because PR was updated recently 2025-09-07T07:34:00.5217198Z ##[endgroup] 2025-09-07T07:34:00.5217572Z ##[group]Processing PR #152771 2025-09-07T07:34:00.5217914Z [152771] URL: https://github.com/pytorch/pytorch/pull/152771 2025-09-07T07:34:00.5218318Z [152771] Checking whether to label PR as stale. 2025-09-07T07:34:00.5218678Z [152771] Skipping because PR was updated recently 2025-09-07T07:34:00.5219126Z ##[endgroup] 2025-09-07T07:34:00.5219496Z ##[group]Processing PR #152806 2025-09-07T07:34:00.5219851Z [152806] URL: https://github.com/pytorch/pytorch/pull/152806 2025-09-07T07:34:00.5220293Z [152806] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5220702Z [152806] Skipping because PR was updated recently 2025-09-07T07:34:00.5221164Z ##[endgroup] 2025-09-07T07:34:00.5221534Z ##[group]Processing PR #152828 2025-09-07T07:34:00.5221868Z [152828] URL: https://github.com/pytorch/pytorch/pull/152828 2025-09-07T07:34:00.5223594Z [152828] Checking whether to label PR as stale. 2025-09-07T07:34:00.5224242Z [152828] Skipping because PR was updated recently 2025-09-07T07:34:00.5224948Z ##[endgroup] 2025-09-07T07:34:00.5225547Z ##[group]Processing PR #152920 2025-09-07T07:34:00.5226225Z [152920] URL: https://github.com/pytorch/pytorch/pull/152920 2025-09-07T07:34:00.5226864Z [152920] Checking whether to label PR as stale. 2025-09-07T07:34:00.5227442Z [152920] Skipping because PR was updated recently 2025-09-07T07:34:00.5228127Z ##[endgroup] 2025-09-07T07:34:00.5228711Z ##[group]Processing PR #152949 2025-09-07T07:34:00.5229254Z [152949] URL: https://github.com/pytorch/pytorch/pull/152949 2025-09-07T07:34:00.5229841Z [152949] Checking whether to label PR as stale. 2025-09-07T07:34:00.5230504Z [152949] Skipping because PR was updated recently 2025-09-07T07:34:00.5231269Z ##[endgroup] 2025-09-07T07:34:00.5231858Z ##[group]Processing PR #153037 2025-09-07T07:34:00.5232404Z [153037] URL: https://github.com/pytorch/pytorch/pull/153037 2025-09-07T07:34:00.5232975Z [153037] Checking whether to label PR as stale. 2025-09-07T07:34:00.5233535Z [153037] Skipping because PR was updated recently 2025-09-07T07:34:00.5234346Z ##[endgroup] 2025-09-07T07:34:00.5235148Z ##[group]Processing PR #153038 2025-09-07T07:34:00.5235505Z [153038] URL: https://github.com/pytorch/pytorch/pull/153038 2025-09-07T07:34:00.5235914Z [153038] Checking whether to label PR as stale. 2025-09-07T07:34:00.5236262Z [153038] Skipping because PR was updated recently 2025-09-07T07:34:00.5236738Z ##[endgroup] 2025-09-07T07:34:00.5237145Z ##[group]Processing PR #153048 2025-09-07T07:34:00.5237828Z [153048] URL: https://github.com/pytorch/pytorch/pull/153048 2025-09-07T07:34:00.5238259Z [153048] Checking whether to label PR as stale. 2025-09-07T07:34:00.5238622Z [153048] Skipping because PR was updated recently 2025-09-07T07:34:00.5239101Z ##[endgroup] 2025-09-07T07:34:00.5239477Z ##[group]Processing PR #153097 2025-09-07T07:34:00.5240178Z [153097] URL: https://github.com/pytorch/pytorch/pull/153097 2025-09-07T07:34:00.5240602Z [153097] Checking whether to label PR as stale. 2025-09-07T07:34:00.5241155Z [153097] Skipping because PR was updated recently 2025-09-07T07:34:00.5241835Z ##[endgroup] 2025-09-07T07:34:00.5242418Z ##[group]Processing PR #153173 2025-09-07T07:34:00.5242957Z [153173] URL: https://github.com/pytorch/pytorch/pull/153173 2025-09-07T07:34:00.5243609Z [153173] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5244207Z [153173] Skipping because PR was updated recently 2025-09-07T07:34:00.5244936Z ##[endgroup] 2025-09-07T07:34:00.5245506Z ##[group]Processing PR #153213 2025-09-07T07:34:00.5246074Z [153213] URL: https://github.com/pytorch/pytorch/pull/153213 2025-09-07T07:34:00.5246723Z [153213] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5247309Z [153213] Skipping because PR was updated recently 2025-09-07T07:34:00.5247988Z ##[endgroup] 2025-09-07T07:34:00.5248611Z ##[group]Processing PR #153240 2025-09-07T07:34:00.5249213Z [153240] URL: https://github.com/pytorch/pytorch/pull/153240 2025-09-07T07:34:00.5249787Z [153240] Checking whether to label PR as stale. 2025-09-07T07:34:00.5250346Z [153240] Skipping because PR was updated recently 2025-09-07T07:34:00.5251028Z ##[endgroup] 2025-09-07T07:34:00.5251611Z ##[group]Processing PR #153317 2025-09-07T07:34:00.5252162Z [153317] URL: https://github.com/pytorch/pytorch/pull/153317 2025-09-07T07:34:00.5252771Z [153317] Skipping because PR has an exempting label. 2025-09-07T07:34:00.5253445Z ##[endgroup] 2025-09-07T07:34:00.5254008Z ##[group]Processing PR #153339 2025-09-07T07:34:00.5254559Z [153339] URL: https://github.com/pytorch/pytorch/pull/153339 2025-09-07T07:34:00.5255144Z [153339] Checking whether to label PR as stale. 2025-09-07T07:34:00.5255683Z [153339] Skipping because PR was updated recently 2025-09-07T07:34:00.5256356Z ##[endgroup] 2025-09-07T07:34:00.5256927Z ##[group]Processing PR #153342 2025-09-07T07:34:00.5257478Z [153342] URL: https://github.com/pytorch/pytorch/pull/153342 2025-09-07T07:34:00.5258047Z [153342] Checking whether to label PR as stale. 2025-09-07T07:34:00.5258600Z [153342] Skipping because PR was updated recently 2025-09-07T07:34:00.5259451Z ##[endgroup] 2025-09-07T07:34:00.5260034Z ##[group]Processing PR #153351 2025-09-07T07:34:00.5260566Z [153351] URL: https://github.com/pytorch/pytorch/pull/153351 2025-09-07T07:34:00.5261211Z [153351] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5261792Z [153351] Skipping because PR was updated recently 2025-09-07T07:34:00.5262463Z ##[endgroup] 2025-09-07T07:34:00.5263037Z ##[group]Processing PR #153376 2025-09-07T07:34:00.5263575Z [153376] URL: https://github.com/pytorch/pytorch/pull/153376 2025-09-07T07:34:00.5264143Z [153376] Checking whether to label PR as stale. 2025-09-07T07:34:00.5264691Z [153376] Skipping because PR was updated recently 2025-09-07T07:34:00.5265364Z ##[endgroup] 2025-09-07T07:34:00.5265942Z ##[group]Processing PR #153391 2025-09-07T07:34:00.5266470Z [153391] URL: https://github.com/pytorch/pytorch/pull/153391 2025-09-07T07:34:00.5267208Z [153391] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5267797Z [153391] Skipping because PR was updated recently 2025-09-07T07:34:00.5268481Z ##[endgroup] 2025-09-07T07:34:00.5269053Z ##[group]Processing PR #153493 2025-09-07T07:34:00.5269599Z [153493] URL: https://github.com/pytorch/pytorch/pull/153493 2025-09-07T07:34:00.5270163Z [153493] Checking whether to label PR as stale. 2025-09-07T07:34:00.5270709Z [153493] Skipping because PR was updated recently 2025-09-07T07:34:00.5271478Z ##[endgroup] 2025-09-07T07:34:00.5272063Z ##[group]Processing PR #153539 2025-09-07T07:34:00.5272595Z [153539] URL: https://github.com/pytorch/pytorch/pull/153539 2025-09-07T07:34:00.5273240Z [153539] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5273842Z [153539] Skipping because PR was updated recently 2025-09-07T07:34:00.5274497Z ##[endgroup] 2025-09-07T07:34:00.5275070Z ##[group]Processing PR #153557 2025-09-07T07:34:00.5275618Z [153557] URL: https://github.com/pytorch/pytorch/pull/153557 2025-09-07T07:34:00.5276224Z [153557] Skipping because PR has an exempting label. 2025-09-07T07:34:00.5276892Z ##[endgroup] 2025-09-07T07:34:00.5277467Z ##[group]Processing PR #153623 2025-09-07T07:34:00.5278010Z [153623] URL: https://github.com/pytorch/pytorch/pull/153623 2025-09-07T07:34:00.5278637Z [153623] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5279228Z [153623] Skipping because PR was updated recently 2025-09-07T07:34:00.5279929Z ##[endgroup] 2025-09-07T07:34:00.5280510Z ##[group]Processing PR #153662 2025-09-07T07:34:00.5281024Z [153662] URL: https://github.com/pytorch/pytorch/pull/153662 2025-09-07T07:34:00.5281738Z [153662] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5282342Z [153662] Skipping because PR was updated recently 2025-09-07T07:34:00.5283020Z ##[endgroup] 2025-09-07T07:34:00.5283582Z ##[group]Processing PR #153684 2025-09-07T07:34:00.5284138Z [153684] URL: https://github.com/pytorch/pytorch/pull/153684 2025-09-07T07:34:00.5284781Z [153684] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5285372Z [153684] Skipping because PR was updated recently 2025-09-07T07:34:00.5286058Z ##[endgroup] 2025-09-07T07:34:00.5286632Z ##[group]Processing PR #153784 2025-09-07T07:34:00.5287173Z [153784] URL: https://github.com/pytorch/pytorch/pull/153784 2025-09-07T07:34:00.5287924Z [153784] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5288353Z [153784] Skipping because PR was updated recently 2025-09-07T07:34:00.5288837Z ##[endgroup] 2025-09-07T07:34:00.5289197Z ##[group]Processing PR #153796 2025-09-07T07:34:00.5289547Z [153796] URL: https://github.com/pytorch/pytorch/pull/153796 2025-09-07T07:34:00.5290002Z [153796] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5290402Z [153796] Skipping because PR was updated recently 2025-09-07T07:34:00.5290870Z ##[endgroup] 2025-09-07T07:34:00.5291242Z ##[group]Processing PR #153806 2025-09-07T07:34:00.5291579Z [153806] URL: https://github.com/pytorch/pytorch/pull/153806 2025-09-07T07:34:00.5292168Z [153806] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:00.5292569Z [153806] Skipping because PR was updated recently 2025-09-07T07:34:00.5293037Z ##[endgroup] 2025-09-07T07:34:01.6531638Z ##[group]Processing PR #153807 2025-09-07T07:34:01.6532365Z [153807] URL: https://github.com/pytorch/pytorch/pull/153807 2025-09-07T07:34:01.6533119Z [153807] Checking whether to label PR as stale. 2025-09-07T07:34:01.6533793Z [153807] Skipping because PR was updated recently 2025-09-07T07:34:01.6535422Z ##[endgroup] 2025-09-07T07:34:01.6536247Z ##[group]Processing PR #153855 2025-09-07T07:34:01.6537005Z [153855] URL: https://github.com/pytorch/pytorch/pull/153855 2025-09-07T07:34:01.6537865Z [153855] Checking whether to label PR as stale. 2025-09-07T07:34:01.6538645Z [153855] Skipping because PR was updated recently 2025-09-07T07:34:01.6539608Z ##[endgroup] 2025-09-07T07:34:01.6540415Z ##[group]Processing PR #153893 2025-09-07T07:34:01.6541166Z [153893] URL: https://github.com/pytorch/pytorch/pull/153893 2025-09-07T07:34:01.6542065Z [153893] Skipping because PR has an exempting label. 2025-09-07T07:34:01.6543066Z ##[endgroup] 2025-09-07T07:34:01.6543852Z ##[group]Processing PR #153920 2025-09-07T07:34:01.6544581Z [153920] URL: https://github.com/pytorch/pytorch/pull/153920 2025-09-07T07:34:01.6545512Z [153920] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6546804Z [153920] Skipping because PR was updated recently 2025-09-07T07:34:01.6547916Z ##[endgroup] 2025-09-07T07:34:01.6548702Z ##[group]Processing PR #153966 2025-09-07T07:34:01.6549465Z [153966] URL: https://github.com/pytorch/pytorch/pull/153966 2025-09-07T07:34:01.6550297Z [153966] Checking whether to label PR as stale. 2025-09-07T07:34:01.6551042Z [153966] Skipping because PR was updated recently 2025-09-07T07:34:01.6552011Z ##[endgroup] 2025-09-07T07:34:01.6552797Z ##[group]Processing PR #154000 2025-09-07T07:34:01.6553554Z [154000] URL: https://github.com/pytorch/pytorch/pull/154000 2025-09-07T07:34:01.6554496Z [154000] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6555370Z [154000] Skipping because PR was updated recently 2025-09-07T07:34:01.6556349Z ##[endgroup] 2025-09-07T07:34:01.6557143Z ##[group]Processing PR #154032 2025-09-07T07:34:01.6557875Z [154032] URL: https://github.com/pytorch/pytorch/pull/154032 2025-09-07T07:34:01.6558768Z [154032] Skipping because PR has an exempting label. 2025-09-07T07:34:01.6559824Z ##[endgroup] 2025-09-07T07:34:01.6560494Z ##[group]Processing PR #154044 2025-09-07T07:34:01.6561100Z [154044] URL: https://github.com/pytorch/pytorch/pull/154044 2025-09-07T07:34:01.6561923Z [154044] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6562669Z [154044] Skipping because PR was updated recently 2025-09-07T07:34:01.6563529Z ##[endgroup] 2025-09-07T07:34:01.6564187Z ##[group]Processing PR #154113 2025-09-07T07:34:01.6564787Z [154113] URL: https://github.com/pytorch/pytorch/pull/154113 2025-09-07T07:34:01.6565611Z [154113] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6566384Z [154113] Skipping because PR was updated recently 2025-09-07T07:34:01.6567217Z ##[endgroup] 2025-09-07T07:34:01.6567852Z ##[group]Processing PR #154115 2025-09-07T07:34:01.6568414Z [154115] URL: https://github.com/pytorch/pytorch/pull/154115 2025-09-07T07:34:01.6569054Z [154115] Checking whether to label PR as stale. 2025-09-07T07:34:01.6569678Z [154115] Skipping because PR was updated recently 2025-09-07T07:34:01.6570534Z ##[endgroup] 2025-09-07T07:34:01.6651234Z ##[group]Processing PR #154145 2025-09-07T07:34:01.6651822Z [154145] URL: https://github.com/pytorch/pytorch/pull/154145 2025-09-07T07:34:01.6652553Z [154145] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6653198Z [154145] Skipping because PR was updated recently 2025-09-07T07:34:01.6654474Z ##[endgroup] 2025-09-07T07:34:01.6655049Z ##[group]Processing PR #154170 2025-09-07T07:34:01.6655554Z [154170] URL: https://github.com/pytorch/pytorch/pull/154170 2025-09-07T07:34:01.6656596Z [154170] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6657305Z [154170] Skipping because PR was updated recently 2025-09-07T07:34:01.6658139Z ##[endgroup] 2025-09-07T07:34:01.6658798Z ##[group]Processing PR #154203 2025-09-07T07:34:01.6659421Z [154203] URL: https://github.com/pytorch/pytorch/pull/154203 2025-09-07T07:34:01.6660204Z [154203] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6660945Z [154203] Skipping because PR was updated recently 2025-09-07T07:34:01.6661815Z ##[endgroup] 2025-09-07T07:34:01.6662466Z ##[group]Processing PR #154279 2025-09-07T07:34:01.6663109Z [154279] URL: https://github.com/pytorch/pytorch/pull/154279 2025-09-07T07:34:01.6663956Z [154279] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6664693Z [154279] Skipping because PR was updated recently 2025-09-07T07:34:01.6665557Z ##[endgroup] 2025-09-07T07:34:01.6666235Z ##[group]Processing PR #154293 2025-09-07T07:34:01.6666980Z [154293] URL: https://github.com/pytorch/pytorch/pull/154293 2025-09-07T07:34:01.6667672Z [154293] Checking whether to label PR as stale. 2025-09-07T07:34:01.6668307Z [154293] Skipping because PR was updated recently 2025-09-07T07:34:01.6669205Z ##[endgroup] 2025-09-07T07:34:01.6669875Z ##[group]Processing PR #154333 2025-09-07T07:34:01.6670728Z [154333] URL: https://github.com/pytorch/pytorch/pull/154333 2025-09-07T07:34:01.6671473Z [154333] Checking whether to label PR as stale. 2025-09-07T07:34:01.6672117Z [154333] Skipping because PR was updated recently 2025-09-07T07:34:01.6672937Z ##[endgroup] 2025-09-07T07:34:01.6673507Z ##[group]Processing PR #154339 2025-09-07T07:34:01.6674040Z [154339] URL: https://github.com/pytorch/pytorch/pull/154339 2025-09-07T07:34:01.6674761Z [154339] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6675424Z [154339] Skipping because PR was updated recently 2025-09-07T07:34:01.6676240Z ##[endgroup] 2025-09-07T07:34:01.6676857Z ##[group]Processing PR #154395 2025-09-07T07:34:01.6677386Z [154395] URL: https://github.com/pytorch/pytorch/pull/154395 2025-09-07T07:34:01.6677947Z [154395] Skipping because PR has an exempting label. 2025-09-07T07:34:01.6678670Z ##[endgroup] 2025-09-07T07:34:01.6679211Z ##[group]Processing PR #154475 2025-09-07T07:34:01.6679728Z [154475] URL: https://github.com/pytorch/pytorch/pull/154475 2025-09-07T07:34:01.6680383Z [154475] Checking whether to label PR as stale. 2025-09-07T07:34:01.6680925Z [154475] Skipping because PR was updated recently 2025-09-07T07:34:01.6681721Z ##[endgroup] 2025-09-07T07:34:01.6682357Z ##[group]Processing PR #154505 2025-09-07T07:34:01.6682947Z [154505] URL: https://github.com/pytorch/pytorch/pull/154505 2025-09-07T07:34:01.6683741Z [154505] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6684445Z [154505] Skipping because PR was updated recently 2025-09-07T07:34:01.6685297Z ##[endgroup] 2025-09-07T07:34:01.6685935Z ##[group]Processing PR #154551 2025-09-07T07:34:01.6686577Z [154551] URL: https://github.com/pytorch/pytorch/pull/154551 2025-09-07T07:34:01.6687731Z [154551] Checking whether to label PR as stale. 2025-09-07T07:34:01.6688317Z [154551] Skipping because PR was updated recently 2025-09-07T07:34:01.6689113Z ##[endgroup] 2025-09-07T07:34:01.6689740Z ##[group]Processing PR #154561 2025-09-07T07:34:01.6690337Z [154561] URL: https://github.com/pytorch/pytorch/pull/154561 2025-09-07T07:34:01.6691030Z [154561] Checking whether to label PR as stale. 2025-09-07T07:34:01.6691663Z [154561] Skipping because PR was updated recently 2025-09-07T07:34:01.6692480Z ##[endgroup] 2025-09-07T07:34:01.6693130Z ##[group]Processing PR #154569 2025-09-07T07:34:01.6693726Z [154569] URL: https://github.com/pytorch/pytorch/pull/154569 2025-09-07T07:34:01.6694360Z [154569] Checking whether to label PR as stale. 2025-09-07T07:34:01.6694902Z [154569] Skipping because PR was updated recently 2025-09-07T07:34:01.6695683Z ##[endgroup] 2025-09-07T07:34:01.6696474Z ##[group]Processing PR #154584 2025-09-07T07:34:01.6697076Z [154584] URL: https://github.com/pytorch/pytorch/pull/154584 2025-09-07T07:34:01.6697765Z [154584] Checking whether to label PR as stale. 2025-09-07T07:34:01.6698380Z [154584] Skipping because PR was updated recently 2025-09-07T07:34:01.6699225Z ##[endgroup] 2025-09-07T07:34:01.6699850Z ##[group]Processing PR #154594 2025-09-07T07:34:01.6700392Z [154594] URL: https://github.com/pytorch/pytorch/pull/154594 2025-09-07T07:34:01.6701107Z [154594] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6701817Z [154594] Skipping because PR was updated recently 2025-09-07T07:34:01.6702598Z ##[endgroup] 2025-09-07T07:34:01.6703216Z ##[group]Processing PR #154595 2025-09-07T07:34:01.6703842Z [154595] URL: https://github.com/pytorch/pytorch/pull/154595 2025-09-07T07:34:01.6704543Z [154595] Checking whether to label PR as stale. 2025-09-07T07:34:01.6705184Z [154595] Skipping because PR was updated recently 2025-09-07T07:34:01.6706040Z ##[endgroup] 2025-09-07T07:34:01.6706762Z ##[group]Processing PR #154601 2025-09-07T07:34:01.6707362Z [154601] URL: https://github.com/pytorch/pytorch/pull/154601 2025-09-07T07:34:01.6708031Z [154601] Checking whether to label PR as stale. 2025-09-07T07:34:01.6708634Z [154601] Skipping because PR was updated recently 2025-09-07T07:34:01.6709441Z ##[endgroup] 2025-09-07T07:34:01.6710231Z ##[group]Processing PR #154694 2025-09-07T07:34:01.6710793Z [154694] URL: https://github.com/pytorch/pytorch/pull/154694 2025-09-07T07:34:01.6711477Z [154694] Checking whether to label PR as stale. 2025-09-07T07:34:01.6712055Z [154694] Skipping because PR was updated recently 2025-09-07T07:34:01.6712905Z ##[endgroup] 2025-09-07T07:34:01.6713555Z ##[group]Processing PR #154702 2025-09-07T07:34:01.6714184Z [154702] URL: https://github.com/pytorch/pytorch/pull/154702 2025-09-07T07:34:01.6715004Z [154702] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6715736Z [154702] Skipping because PR was updated recently 2025-09-07T07:34:01.6716596Z ##[endgroup] 2025-09-07T07:34:01.6717260Z ##[group]Processing PR #154711 2025-09-07T07:34:01.6717902Z [154711] URL: https://github.com/pytorch/pytorch/pull/154711 2025-09-07T07:34:01.6718627Z [154711] Checking whether to label PR as stale. 2025-09-07T07:34:01.6719274Z [154711] Skipping because PR was updated recently 2025-09-07T07:34:01.6720132Z ##[endgroup] 2025-09-07T07:34:01.6720814Z ##[group]Processing PR #154733 2025-09-07T07:34:01.6721424Z [154733] URL: https://github.com/pytorch/pytorch/pull/154733 2025-09-07T07:34:01.6722159Z [154733] Checking whether to label PR as stale. 2025-09-07T07:34:01.6722804Z [154733] Skipping because PR was updated recently 2025-09-07T07:34:01.6723663Z ##[endgroup] 2025-09-07T07:34:01.6724336Z ##[group]Processing PR #154744 2025-09-07T07:34:01.6724978Z [154744] URL: https://github.com/pytorch/pytorch/pull/154744 2025-09-07T07:34:01.6726231Z [154744] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6726998Z [154744] Skipping because PR was updated recently 2025-09-07T07:34:01.6727770Z ##[endgroup] 2025-09-07T07:34:01.6728413Z ##[group]Processing PR #154766 2025-09-07T07:34:01.6729021Z [154766] URL: https://github.com/pytorch/pytorch/pull/154766 2025-09-07T07:34:01.6729743Z [154766] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6730463Z [154766] Skipping because PR was updated recently 2025-09-07T07:34:01.6731271Z ##[endgroup] 2025-09-07T07:34:01.6731879Z ##[group]Processing PR #154819 2025-09-07T07:34:01.6732416Z [154819] URL: https://github.com/pytorch/pytorch/pull/154819 2025-09-07T07:34:01.6733107Z [154819] Checking whether to label PR as stale. 2025-09-07T07:34:01.6733695Z [154819] Skipping because PR was updated recently 2025-09-07T07:34:01.6734758Z ##[endgroup] 2025-09-07T07:34:01.6735704Z ##[group]Processing PR #154827 2025-09-07T07:34:01.6736756Z [154827] URL: https://github.com/pytorch/pytorch/pull/154827 2025-09-07T07:34:01.6737453Z [154827] Checking whether to label PR as stale. 2025-09-07T07:34:01.6738280Z [154827] Skipping because PR was updated recently 2025-09-07T07:34:01.6739111Z ##[endgroup] 2025-09-07T07:34:01.6739747Z ##[group]Processing PR #154834 2025-09-07T07:34:01.6740352Z [154834] URL: https://github.com/pytorch/pytorch/pull/154834 2025-09-07T07:34:01.6741148Z [154834] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6741870Z [154834] Skipping because PR was updated recently 2025-09-07T07:34:01.6742683Z ##[endgroup] 2025-09-07T07:34:01.6743341Z ##[group]Processing PR #154864 2025-09-07T07:34:01.6743928Z [154864] URL: https://github.com/pytorch/pytorch/pull/154864 2025-09-07T07:34:01.6744637Z [154864] Checking whether to label PR as stale. 2025-09-07T07:34:01.6745256Z [154864] Skipping because PR was updated recently 2025-09-07T07:34:01.6746110Z ##[endgroup] 2025-09-07T07:34:01.6746867Z ##[group]Processing PR #154977 2025-09-07T07:34:01.6747455Z [154977] URL: https://github.com/pytorch/pytorch/pull/154977 2025-09-07T07:34:01.6748784Z [154977] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6749528Z [154977] Skipping because PR was updated recently 2025-09-07T07:34:01.6750342Z ##[endgroup] 2025-09-07T07:34:01.6750955Z ##[group]Processing PR #154983 2025-09-07T07:34:01.6751489Z [154983] URL: https://github.com/pytorch/pytorch/pull/154983 2025-09-07T07:34:01.6752174Z [154983] Checking whether to label PR as stale. 2025-09-07T07:34:01.6752968Z [154983] Skipping because PR was updated recently 2025-09-07T07:34:01.6753716Z ##[endgroup] 2025-09-07T07:34:01.6754307Z ##[group]Processing PR #155062 2025-09-07T07:34:01.6754847Z [155062] URL: https://github.com/pytorch/pytorch/pull/155062 2025-09-07T07:34:01.6755586Z [155062] Checking whether to label PR as stale. 2025-09-07T07:34:01.6756255Z [155062] Skipping because PR was updated recently 2025-09-07T07:34:01.6757103Z ##[endgroup] 2025-09-07T07:34:01.6757742Z ##[group]Processing PR #155070 2025-09-07T07:34:01.6758338Z [155070] URL: https://github.com/pytorch/pytorch/pull/155070 2025-09-07T07:34:01.6759064Z [155070] Checking whether to label PR as stale. 2025-09-07T07:34:01.6759692Z [155070] Skipping because PR was updated recently 2025-09-07T07:34:01.6760526Z ##[endgroup] 2025-09-07T07:34:01.6761165Z ##[group]Processing PR #155076 2025-09-07T07:34:01.6761780Z [155076] URL: https://github.com/pytorch/pytorch/pull/155076 2025-09-07T07:34:01.6762580Z [155076] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6763315Z [155076] Skipping because PR was updated recently 2025-09-07T07:34:01.6764149Z ##[endgroup] 2025-09-07T07:34:01.6764782Z ##[group]Processing PR #155082 2025-09-07T07:34:01.6765395Z [155082] URL: https://github.com/pytorch/pytorch/pull/155082 2025-09-07T07:34:01.6766201Z [155082] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6766908Z [155082] Skipping because PR was updated recently 2025-09-07T07:34:01.6767747Z ##[endgroup] 2025-09-07T07:34:01.6768372Z ##[group]Processing PR #155102 2025-09-07T07:34:01.6768980Z [155102] URL: https://github.com/pytorch/pytorch/pull/155102 2025-09-07T07:34:01.6769790Z [155102] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6770531Z [155102] Skipping because PR was updated recently 2025-09-07T07:34:01.6771338Z ##[endgroup] 2025-09-07T07:34:01.6771999Z ##[group]Processing PR #155108 2025-09-07T07:34:01.6772659Z [155108] URL: https://github.com/pytorch/pytorch/pull/155108 2025-09-07T07:34:01.6773480Z [155108] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6774213Z [155108] Skipping because PR was updated recently 2025-09-07T07:34:01.6775063Z ##[endgroup] 2025-09-07T07:34:01.6775710Z ##[group]Processing PR #155110 2025-09-07T07:34:01.6776329Z [155110] URL: https://github.com/pytorch/pytorch/pull/155110 2025-09-07T07:34:01.6777056Z [155110] Checking whether to label PR as stale. 2025-09-07T07:34:01.6777674Z [155110] Skipping because PR was updated recently 2025-09-07T07:34:01.6778494Z ##[endgroup] 2025-09-07T07:34:01.6779328Z ##[group]Processing PR #155154 2025-09-07T07:34:01.6779949Z [155154] URL: https://github.com/pytorch/pytorch/pull/155154 2025-09-07T07:34:01.6780689Z [155154] Checking whether to label PR as stale. 2025-09-07T07:34:01.6781315Z [155154] Skipping because PR was updated recently 2025-09-07T07:34:01.6782140Z ##[endgroup] 2025-09-07T07:34:01.6782788Z ##[group]Processing PR #155165 2025-09-07T07:34:01.6783394Z [155165] URL: https://github.com/pytorch/pytorch/pull/155165 2025-09-07T07:34:01.6784163Z [155165] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6784895Z [155165] Skipping because PR was updated recently 2025-09-07T07:34:01.6785725Z ##[endgroup] 2025-09-07T07:34:01.6786361Z ##[group]Processing PR #155187 2025-09-07T07:34:01.6787084Z [155187] URL: https://github.com/pytorch/pytorch/pull/155187 2025-09-07T07:34:01.6787909Z [155187] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6788694Z [155187] Skipping because PR was updated recently 2025-09-07T07:34:01.6789581Z ##[endgroup] 2025-09-07T07:34:01.6790243Z ##[group]Processing PR #155206 2025-09-07T07:34:01.6790825Z [155206] URL: https://github.com/pytorch/pytorch/pull/155206 2025-09-07T07:34:01.6791645Z [155206] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6792379Z [155206] Skipping because PR was updated recently 2025-09-07T07:34:01.6793224Z ##[endgroup] 2025-09-07T07:34:01.6794028Z ##[group]Processing PR #155215 2025-09-07T07:34:01.6794659Z [155215] URL: https://github.com/pytorch/pytorch/pull/155215 2025-09-07T07:34:01.6795379Z [155215] Checking whether to label PR as stale. 2025-09-07T07:34:01.6796017Z [155215] Skipping because PR was updated recently 2025-09-07T07:34:01.6796833Z ##[endgroup] 2025-09-07T07:34:01.6797479Z ##[group]Processing PR #155245 2025-09-07T07:34:01.6798096Z [155245] URL: https://github.com/pytorch/pytorch/pull/155245 2025-09-07T07:34:01.6798882Z [155245] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6799638Z [155245] Skipping because PR was updated recently 2025-09-07T07:34:01.6800485Z ##[endgroup] 2025-09-07T07:34:01.6801133Z ##[group]Processing PR #155271 2025-09-07T07:34:01.6801752Z [155271] URL: https://github.com/pytorch/pytorch/pull/155271 2025-09-07T07:34:01.6802583Z [155271] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6803327Z [155271] Skipping because PR was updated recently 2025-09-07T07:34:01.6804174Z ##[endgroup] 2025-09-07T07:34:01.6804877Z ##[group]Processing PR #155287 2025-09-07T07:34:01.6805497Z [155287] URL: https://github.com/pytorch/pytorch/pull/155287 2025-09-07T07:34:01.6806273Z [155287] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6807018Z [155287] Skipping because PR was updated recently 2025-09-07T07:34:01.6807836Z ##[endgroup] 2025-09-07T07:34:01.6808453Z ##[group]Processing PR #155310 2025-09-07T07:34:01.6809051Z [155310] URL: https://github.com/pytorch/pytorch/pull/155310 2025-09-07T07:34:01.6809744Z [155310] Checking whether to label PR as stale. 2025-09-07T07:34:01.6810389Z [155310] Skipping because PR was updated recently 2025-09-07T07:34:01.6811236Z ##[endgroup] 2025-09-07T07:34:01.6811876Z ##[group]Processing PR #155361 2025-09-07T07:34:01.6812520Z [155361] URL: https://github.com/pytorch/pytorch/pull/155361 2025-09-07T07:34:01.6813373Z [155361] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6814146Z [155361] Skipping because PR was updated recently 2025-09-07T07:34:01.6814988Z ##[endgroup] 2025-09-07T07:34:01.6815645Z ##[group]Processing PR #155370 2025-09-07T07:34:01.6816289Z [155370] URL: https://github.com/pytorch/pytorch/pull/155370 2025-09-07T07:34:01.6817137Z [155370] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6817855Z [155370] Skipping because PR was updated recently 2025-09-07T07:34:01.6818633Z ##[endgroup] 2025-09-07T07:34:01.6819265Z ##[group]Processing PR #155381 2025-09-07T07:34:01.6819853Z [155381] URL: https://github.com/pytorch/pytorch/pull/155381 2025-09-07T07:34:01.6820732Z [155381] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6821414Z [155381] Skipping because PR was updated recently 2025-09-07T07:34:01.6822193Z ##[endgroup] 2025-09-07T07:34:01.6822830Z ##[group]Processing PR #155384 2025-09-07T07:34:01.6823421Z [155384] URL: https://github.com/pytorch/pytorch/pull/155384 2025-09-07T07:34:01.6824214Z [155384] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6824921Z [155384] Skipping because PR was updated recently 2025-09-07T07:34:01.6825742Z ##[endgroup] 2025-09-07T07:34:01.6826405Z ##[group]Processing PR #155390 2025-09-07T07:34:01.6827131Z [155390] URL: https://github.com/pytorch/pytorch/pull/155390 2025-09-07T07:34:01.6827850Z [155390] Checking whether to label PR as stale. 2025-09-07T07:34:01.6828493Z [155390] Skipping because PR was updated recently 2025-09-07T07:34:01.6829282Z ##[endgroup] 2025-09-07T07:34:01.6829912Z ##[group]Processing PR #155420 2025-09-07T07:34:01.6830528Z [155420] URL: https://github.com/pytorch/pytorch/pull/155420 2025-09-07T07:34:01.6831315Z [155420] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6832049Z [155420] Skipping because PR was updated recently 2025-09-07T07:34:01.6832862Z ##[endgroup] 2025-09-07T07:34:01.6833500Z ##[group]Processing PR #155422 2025-09-07T07:34:01.6835098Z [155422] URL: https://github.com/pytorch/pytorch/pull/155422 2025-09-07T07:34:01.6835822Z [155422] Checking whether to label PR as stale. 2025-09-07T07:34:01.6836775Z [155422] Skipping because PR was updated recently 2025-09-07T07:34:01.6837654Z ##[endgroup] 2025-09-07T07:34:01.6838316Z ##[group]Processing PR #155424 2025-09-07T07:34:01.6838917Z [155424] URL: https://github.com/pytorch/pytorch/pull/155424 2025-09-07T07:34:01.6839738Z [155424] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6840436Z [155424] Skipping because PR was updated recently 2025-09-07T07:34:01.6841283Z ##[endgroup] 2025-09-07T07:34:01.6841957Z ##[group]Processing PR #155427 2025-09-07T07:34:01.6842593Z [155427] URL: https://github.com/pytorch/pytorch/pull/155427 2025-09-07T07:34:01.6843404Z [155427] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6844169Z [155427] Skipping because PR was updated recently 2025-09-07T07:34:01.6845027Z ##[endgroup] 2025-09-07T07:34:01.6845638Z ##[group]Processing PR #155428 2025-09-07T07:34:01.6846292Z [155428] URL: https://github.com/pytorch/pytorch/pull/155428 2025-09-07T07:34:01.6847119Z [155428] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6847884Z [155428] Skipping because PR was updated recently 2025-09-07T07:34:01.6848753Z ##[endgroup] 2025-09-07T07:34:01.6849416Z ##[group]Processing PR #155432 2025-09-07T07:34:01.6850028Z [155432] URL: https://github.com/pytorch/pytorch/pull/155432 2025-09-07T07:34:01.6850869Z [155432] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6851575Z [155432] Skipping because PR was updated recently 2025-09-07T07:34:01.6852317Z ##[endgroup] 2025-09-07T07:34:01.6852928Z ##[group]Processing PR #155438 2025-09-07T07:34:01.6853515Z [155438] URL: https://github.com/pytorch/pytorch/pull/155438 2025-09-07T07:34:01.6854264Z [155438] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6854983Z [155438] Skipping because PR was updated recently 2025-09-07T07:34:01.6855805Z ##[endgroup] 2025-09-07T07:34:01.6856428Z ##[group]Processing PR #155440 2025-09-07T07:34:01.6857033Z [155440] URL: https://github.com/pytorch/pytorch/pull/155440 2025-09-07T07:34:01.6857758Z [155440] Checking whether to label PR as stale. 2025-09-07T07:34:01.6858393Z [155440] Skipping because PR was updated recently 2025-09-07T07:34:01.6859214Z ##[endgroup] 2025-09-07T07:34:01.6859879Z ##[group]Processing PR #155450 2025-09-07T07:34:01.6860477Z [155450] URL: https://github.com/pytorch/pytorch/pull/155450 2025-09-07T07:34:01.6861297Z [155450] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6862235Z [155450] Skipping because PR was updated recently 2025-09-07T07:34:01.6863092Z ##[endgroup] 2025-09-07T07:34:01.6863742Z ##[group]Processing PR #155454 2025-09-07T07:34:01.6864369Z [155454] URL: https://github.com/pytorch/pytorch/pull/155454 2025-09-07T07:34:01.6865175Z [155454] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6865920Z [155454] Skipping because PR was updated recently 2025-09-07T07:34:01.6866876Z ##[endgroup] 2025-09-07T07:34:01.6867528Z ##[group]Processing PR #155456 2025-09-07T07:34:01.6868144Z [155456] URL: https://github.com/pytorch/pytorch/pull/155456 2025-09-07T07:34:01.6868945Z [155456] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6869646Z [155456] Skipping because PR was updated recently 2025-09-07T07:34:01.6870392Z ##[endgroup] 2025-09-07T07:34:01.6871022Z ##[group]Processing PR #155487 2025-09-07T07:34:01.6871579Z [155487] URL: https://github.com/pytorch/pytorch/pull/155487 2025-09-07T07:34:01.6872350Z [155487] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6873034Z [155487] Skipping because PR was updated recently 2025-09-07T07:34:01.6873820Z ##[endgroup] 2025-09-07T07:34:01.6874438Z ##[group]Processing PR #155501 2025-09-07T07:34:01.6875010Z [155501] URL: https://github.com/pytorch/pytorch/pull/155501 2025-09-07T07:34:01.6875691Z [155501] Checking whether to label PR as stale. 2025-09-07T07:34:01.6876479Z [155501] Skipping because PR was updated recently 2025-09-07T07:34:01.6877330Z ##[endgroup] 2025-09-07T07:34:01.6877979Z ##[group]Processing PR #155502 2025-09-07T07:34:01.6878594Z [155502] URL: https://github.com/pytorch/pytorch/pull/155502 2025-09-07T07:34:01.6879269Z [155502] Checking whether to label PR as stale. 2025-09-07T07:34:01.6879907Z [155502] Skipping because PR was updated recently 2025-09-07T07:34:01.6880747Z ##[endgroup] 2025-09-07T07:34:01.6881378Z ##[group]Processing PR #155503 2025-09-07T07:34:01.6881916Z [155503] URL: https://github.com/pytorch/pytorch/pull/155503 2025-09-07T07:34:01.6882607Z [155503] Checking whether to label PR as stale. 2025-09-07T07:34:01.6883177Z [155503] Skipping because PR was updated recently 2025-09-07T07:34:01.6883987Z ##[endgroup] 2025-09-07T07:34:01.6884604Z ##[group]Processing PR #155505 2025-09-07T07:34:01.6885191Z [155505] URL: https://github.com/pytorch/pytorch/pull/155505 2025-09-07T07:34:01.6885988Z [155505] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6886718Z [155505] Skipping because PR was updated recently 2025-09-07T07:34:01.6887535Z ##[endgroup] 2025-09-07T07:34:01.6888198Z ##[group]Processing PR #155542 2025-09-07T07:34:01.6888827Z [155542] URL: https://github.com/pytorch/pytorch/pull/155542 2025-09-07T07:34:01.6889534Z [155542] Checking whether to label PR as stale. 2025-09-07T07:34:01.6890173Z [155542] Skipping because PR was updated recently 2025-09-07T07:34:01.6891039Z ##[endgroup] 2025-09-07T07:34:01.6891685Z ##[group]Processing PR #155548 2025-09-07T07:34:01.6892307Z [155548] URL: https://github.com/pytorch/pytorch/pull/155548 2025-09-07T07:34:01.6893131Z [155548] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6893876Z [155548] Skipping because PR was updated recently 2025-09-07T07:34:01.6894733Z ##[endgroup] 2025-09-07T07:34:01.6895394Z ##[group]Processing PR #155554 2025-09-07T07:34:01.6895991Z [155554] URL: https://github.com/pytorch/pytorch/pull/155554 2025-09-07T07:34:01.6896732Z [155554] Checking whether to label PR as stale. 2025-09-07T07:34:01.6897829Z [155554] Skipping because PR was updated recently 2025-09-07T07:34:01.6898693Z ##[endgroup] 2025-09-07T07:34:01.6899347Z ##[group]Processing PR #155557 2025-09-07T07:34:01.6899972Z [155557] URL: https://github.com/pytorch/pytorch/pull/155557 2025-09-07T07:34:01.6900690Z [155557] Checking whether to label PR as stale. 2025-09-07T07:34:01.6901306Z [155557] Skipping because PR was updated recently 2025-09-07T07:34:01.6902169Z ##[endgroup] 2025-09-07T07:34:01.6902848Z ##[group]Processing PR #155563 2025-09-07T07:34:01.6903625Z [155563] URL: https://github.com/pytorch/pytorch/pull/155563 2025-09-07T07:34:01.6904766Z [155563] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6905509Z [155563] Skipping because PR was updated recently 2025-09-07T07:34:01.6906352Z ##[endgroup] 2025-09-07T07:34:01.6907097Z ##[group]Processing PR #155594 2025-09-07T07:34:01.6908467Z [155594] URL: https://github.com/pytorch/pytorch/pull/155594 2025-09-07T07:34:01.6909290Z [155594] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6910001Z [155594] Skipping because PR was updated recently 2025-09-07T07:34:01.6910760Z ##[endgroup] 2025-09-07T07:34:01.6911388Z ##[group]Processing PR #155600 2025-09-07T07:34:01.6911961Z [155600] URL: https://github.com/pytorch/pytorch/pull/155600 2025-09-07T07:34:01.6912723Z [155600] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6913446Z [155600] Skipping because PR was updated recently 2025-09-07T07:34:01.6914290Z ##[endgroup] 2025-09-07T07:34:01.6914938Z ##[group]Processing PR #155602 2025-09-07T07:34:01.6915552Z [155602] URL: https://github.com/pytorch/pytorch/pull/155602 2025-09-07T07:34:01.6916350Z [155602] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6917063Z [155602] Skipping because PR was updated recently 2025-09-07T07:34:01.6917886Z ##[endgroup] 2025-09-07T07:34:01.6918671Z ##[group]Processing PR #155606 2025-09-07T07:34:01.6919230Z [155606] URL: https://github.com/pytorch/pytorch/pull/155606 2025-09-07T07:34:01.6919896Z [155606] Checking whether to label PR as stale. 2025-09-07T07:34:01.6920511Z [155606] Skipping because PR was updated recently 2025-09-07T07:34:01.6921360Z ##[endgroup] 2025-09-07T07:34:01.6922005Z ##[group]Processing PR #155608 2025-09-07T07:34:01.6922613Z [155608] URL: https://github.com/pytorch/pytorch/pull/155608 2025-09-07T07:34:01.6923311Z [155608] Checking whether to label PR as stale. 2025-09-07T07:34:01.6923917Z [155608] Skipping because PR was updated recently 2025-09-07T07:34:01.6924698Z ##[endgroup] 2025-09-07T07:34:01.6925289Z ##[group]Processing PR #155639 2025-09-07T07:34:01.6925865Z [155639] URL: https://github.com/pytorch/pytorch/pull/155639 2025-09-07T07:34:01.6926633Z [155639] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6927298Z [155639] Skipping because PR was updated recently 2025-09-07T07:34:01.6928126Z ##[endgroup] 2025-09-07T07:34:01.6928793Z ##[group]Processing PR #155643 2025-09-07T07:34:01.6929394Z [155643] URL: https://github.com/pytorch/pytorch/pull/155643 2025-09-07T07:34:01.6930198Z [155643] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6930923Z [155643] Skipping because PR was updated recently 2025-09-07T07:34:01.6931765Z ##[endgroup] 2025-09-07T07:34:01.6932418Z ##[group]Processing PR #155645 2025-09-07T07:34:01.6933034Z [155645] URL: https://github.com/pytorch/pytorch/pull/155645 2025-09-07T07:34:01.6934048Z [155645] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6934668Z [155645] Skipping because PR was updated recently 2025-09-07T07:34:01.6935521Z ##[endgroup] 2025-09-07T07:34:01.6936029Z ##[group]Processing PR #155654 2025-09-07T07:34:01.6936594Z [155654] URL: https://github.com/pytorch/pytorch/pull/155654 2025-09-07T07:34:01.6937209Z [155654] Checking whether to label PR as stale. 2025-09-07T07:34:01.6937841Z [155654] Skipping because PR was updated recently 2025-09-07T07:34:01.6938573Z ##[endgroup] 2025-09-07T07:34:01.6939162Z ##[group]Processing PR #155658 2025-09-07T07:34:01.6939762Z [155658] URL: https://github.com/pytorch/pytorch/pull/155658 2025-09-07T07:34:01.6940489Z [155658] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6941120Z [155658] Skipping because PR was updated recently 2025-09-07T07:34:01.6941909Z ##[endgroup] 2025-09-07T07:34:01.6942560Z ##[group]Processing PR #155665 2025-09-07T07:34:01.6943172Z [155665] URL: https://github.com/pytorch/pytorch/pull/155665 2025-09-07T07:34:01.6943949Z [155665] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6944752Z [155665] Skipping because PR was updated recently 2025-09-07T07:34:01.6945487Z ##[endgroup] 2025-09-07T07:34:01.6946047Z ##[group]Processing PR #155672 2025-09-07T07:34:01.6946737Z [155672] URL: https://github.com/pytorch/pytorch/pull/155672 2025-09-07T07:34:01.6947373Z [155672] Skipping because PR has an exempting label. 2025-09-07T07:34:01.6948206Z ##[endgroup] 2025-09-07T07:34:01.6948831Z ##[group]Processing PR #155685 2025-09-07T07:34:01.6949422Z [155685] URL: https://github.com/pytorch/pytorch/pull/155685 2025-09-07T07:34:01.6950126Z [155685] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6950834Z [155685] Skipping because PR was updated recently 2025-09-07T07:34:01.6951647Z ##[endgroup] 2025-09-07T07:34:01.6952273Z ##[group]Processing PR #155686 2025-09-07T07:34:01.6952877Z [155686] URL: https://github.com/pytorch/pytorch/pull/155686 2025-09-07T07:34:01.6953673Z [155686] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6954346Z [155686] Skipping because PR was updated recently 2025-09-07T07:34:01.6955155Z ##[endgroup] 2025-09-07T07:34:01.6955792Z ##[group]Processing PR #155694 2025-09-07T07:34:01.6956387Z [155694] URL: https://github.com/pytorch/pytorch/pull/155694 2025-09-07T07:34:01.6957138Z [155694] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6958031Z [155694] Skipping because PR was updated recently 2025-09-07T07:34:01.6958858Z ##[endgroup] 2025-09-07T07:34:01.6959490Z ##[group]Processing PR #155712 2025-09-07T07:34:01.6960122Z [155712] URL: https://github.com/pytorch/pytorch/pull/155712 2025-09-07T07:34:01.6960820Z [155712] Checking whether to label PR as stale. 2025-09-07T07:34:01.6961462Z [155712] Skipping because PR was updated recently 2025-09-07T07:34:01.6962313Z ##[endgroup] 2025-09-07T07:34:01.6962943Z ##[group]Processing PR #155713 2025-09-07T07:34:01.6963579Z [155713] URL: https://github.com/pytorch/pytorch/pull/155713 2025-09-07T07:34:01.6964421Z [155713] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6965168Z [155713] Skipping because PR was updated recently 2025-09-07T07:34:01.6966008Z ##[endgroup] 2025-09-07T07:34:01.6966678Z ##[group]Processing PR #155716 2025-09-07T07:34:01.6967308Z [155716] URL: https://github.com/pytorch/pytorch/pull/155716 2025-09-07T07:34:01.6968141Z [155716] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6968882Z [155716] Skipping because PR was updated recently 2025-09-07T07:34:01.6969747Z ##[endgroup] 2025-09-07T07:34:01.6970415Z ##[group]Processing PR #155726 2025-09-07T07:34:01.6971040Z [155726] URL: https://github.com/pytorch/pytorch/pull/155726 2025-09-07T07:34:01.6971850Z [155726] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:01.6972604Z [155726] Skipping because PR was updated recently 2025-09-07T07:34:01.6973509Z ##[endgroup] 2025-09-07T07:34:02.8634229Z ##[group]Processing PR #155728 2025-09-07T07:34:02.8635420Z [155728] URL: https://github.com/pytorch/pytorch/pull/155728 2025-09-07T07:34:02.8636491Z [155728] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8637509Z [155728] Skipping because PR was updated recently 2025-09-07T07:34:02.8638667Z ##[endgroup] 2025-09-07T07:34:02.8747423Z ##[group]Processing PR #155730 2025-09-07T07:34:02.8748095Z [155730] URL: https://github.com/pytorch/pytorch/pull/155730 2025-09-07T07:34:02.8748923Z [155730] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8749684Z [155730] Skipping because PR was updated recently 2025-09-07T07:34:02.8750568Z ##[endgroup] 2025-09-07T07:34:02.8751238Z ##[group]Processing PR #155731 2025-09-07T07:34:02.8751867Z [155731] URL: https://github.com/pytorch/pytorch/pull/155731 2025-09-07T07:34:02.8752619Z [155731] Checking whether to label PR as stale. 2025-09-07T07:34:02.8753290Z [155731] Skipping because PR was updated recently 2025-09-07T07:34:02.8754140Z ##[endgroup] 2025-09-07T07:34:02.8755149Z ##[group]Processing PR #155734 2025-09-07T07:34:02.8755798Z [155734] URL: https://github.com/pytorch/pytorch/pull/155734 2025-09-07T07:34:02.8756523Z [155734] Checking whether to label PR as stale. 2025-09-07T07:34:02.8757161Z [155734] Skipping because PR was updated recently 2025-09-07T07:34:02.8758018Z ##[endgroup] 2025-09-07T07:34:02.8758659Z ##[group]Processing PR #155741 2025-09-07T07:34:02.8759299Z [155741] URL: https://github.com/pytorch/pytorch/pull/155741 2025-09-07T07:34:02.8760126Z [155741] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8760828Z [155741] Skipping because PR was updated recently 2025-09-07T07:34:02.8761682Z ##[endgroup] 2025-09-07T07:34:02.8762349Z ##[group]Processing PR #155749 2025-09-07T07:34:02.8762975Z [155749] URL: https://github.com/pytorch/pytorch/pull/155749 2025-09-07T07:34:02.8763803Z [155749] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8764509Z [155749] Skipping because PR was updated recently 2025-09-07T07:34:02.8764990Z ##[endgroup] 2025-09-07T07:34:02.8765367Z ##[group]Processing PR #155756 2025-09-07T07:34:02.8765721Z [155756] URL: https://github.com/pytorch/pytorch/pull/155756 2025-09-07T07:34:02.8766163Z [155756] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8766578Z [155756] Skipping because PR was updated recently 2025-09-07T07:34:02.8767232Z ##[endgroup] 2025-09-07T07:34:02.8767595Z ##[group]Processing PR #155784 2025-09-07T07:34:02.8767948Z [155784] URL: https://github.com/pytorch/pytorch/pull/155784 2025-09-07T07:34:02.8768402Z [155784] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8768802Z [155784] Skipping because PR was updated recently 2025-09-07T07:34:02.8769272Z ##[endgroup] 2025-09-07T07:34:02.8769643Z ##[group]Processing PR #155802 2025-09-07T07:34:02.8769976Z [155802] URL: https://github.com/pytorch/pytorch/pull/155802 2025-09-07T07:34:02.8770425Z [155802] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8770835Z [155802] Skipping because PR was updated recently 2025-09-07T07:34:02.8771296Z ##[endgroup] 2025-09-07T07:34:02.8771662Z ##[group]Processing PR #155804 2025-09-07T07:34:02.8772010Z [155804] URL: https://github.com/pytorch/pytorch/pull/155804 2025-09-07T07:34:02.8772446Z [155804] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8773044Z [155804] Skipping because PR was updated recently 2025-09-07T07:34:02.8773734Z ##[endgroup] 2025-09-07T07:34:02.8774209Z ##[group]Processing PR #155805 2025-09-07T07:34:02.8774648Z [155805] URL: https://github.com/pytorch/pytorch/pull/155805 2025-09-07T07:34:02.8775324Z [155805] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8775865Z [155805] Skipping because PR was updated recently 2025-09-07T07:34:02.8776523Z ##[endgroup] 2025-09-07T07:34:02.8777375Z ##[group]Processing PR #155807 2025-09-07T07:34:02.8778171Z [155807] URL: https://github.com/pytorch/pytorch/pull/155807 2025-09-07T07:34:02.8778880Z [155807] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8779656Z [155807] Skipping because PR was updated recently 2025-09-07T07:34:02.8780542Z ##[endgroup] 2025-09-07T07:34:02.8781100Z ##[group]Processing PR #155810 2025-09-07T07:34:02.8781450Z [155810] URL: https://github.com/pytorch/pytorch/pull/155810 2025-09-07T07:34:02.8781911Z [155810] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8782318Z [155810] Skipping because PR was updated recently 2025-09-07T07:34:02.8782786Z ##[endgroup] 2025-09-07T07:34:02.8783153Z ##[group]Processing PR #155843 2025-09-07T07:34:02.8783488Z [155843] URL: https://github.com/pytorch/pytorch/pull/155843 2025-09-07T07:34:02.8783937Z [155843] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8784340Z [155843] Skipping because PR was updated recently 2025-09-07T07:34:02.8784801Z ##[endgroup] 2025-09-07T07:34:02.8785167Z ##[group]Processing PR #155845 2025-09-07T07:34:02.8785637Z [155845] URL: https://github.com/pytorch/pytorch/pull/155845 2025-09-07T07:34:02.8786075Z [155845] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8786491Z [155845] Skipping because PR was updated recently 2025-09-07T07:34:02.8787129Z ##[endgroup] 2025-09-07T07:34:02.8787504Z ##[group]Processing PR #155846 2025-09-07T07:34:02.8787846Z [155846] URL: https://github.com/pytorch/pytorch/pull/155846 2025-09-07T07:34:02.8788297Z [155846] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8788696Z [155846] Skipping because PR was updated recently 2025-09-07T07:34:02.8789156Z ##[endgroup] 2025-09-07T07:34:02.8789561Z ##[group]Processing PR #155851 2025-09-07T07:34:02.8789904Z [155851] URL: https://github.com/pytorch/pytorch/pull/155851 2025-09-07T07:34:02.8790341Z [155851] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8790747Z [155851] Skipping because PR was updated recently 2025-09-07T07:34:02.8791207Z ##[endgroup] 2025-09-07T07:34:02.8791570Z ##[group]Processing PR #155854 2025-09-07T07:34:02.8791916Z [155854] URL: https://github.com/pytorch/pytorch/pull/155854 2025-09-07T07:34:02.8792351Z [155854] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8792758Z [155854] Skipping because PR was updated recently 2025-09-07T07:34:02.8793210Z ##[endgroup] 2025-09-07T07:34:02.8793652Z ##[group]Processing PR #155855 2025-09-07T07:34:02.8793986Z [155855] URL: https://github.com/pytorch/pytorch/pull/155855 2025-09-07T07:34:02.8794433Z [155855] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8794829Z [155855] Skipping because PR was updated recently 2025-09-07T07:34:02.8795284Z ##[endgroup] 2025-09-07T07:34:02.8795652Z ##[group]Processing PR #155857 2025-09-07T07:34:02.8795996Z [155857] URL: https://github.com/pytorch/pytorch/pull/155857 2025-09-07T07:34:02.8796429Z [155857] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8796838Z [155857] Skipping because PR was updated recently 2025-09-07T07:34:02.8797306Z ##[endgroup] 2025-09-07T07:34:02.8797656Z ##[group]Processing PR #155866 2025-09-07T07:34:02.8798000Z [155866] URL: https://github.com/pytorch/pytorch/pull/155866 2025-09-07T07:34:02.8798434Z [155866] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8798843Z [155866] Skipping because PR was updated recently 2025-09-07T07:34:02.8799305Z ##[endgroup] 2025-09-07T07:34:02.8799830Z ##[group]Processing PR #155902 2025-09-07T07:34:02.8800188Z [155902] URL: https://github.com/pytorch/pytorch/pull/155902 2025-09-07T07:34:02.8800639Z [155902] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8801040Z [155902] Skipping because PR was updated recently 2025-09-07T07:34:02.8801511Z ##[endgroup] 2025-09-07T07:34:02.8801886Z ##[group]Processing PR #155910 2025-09-07T07:34:02.8802234Z [155910] URL: https://github.com/pytorch/pytorch/pull/155910 2025-09-07T07:34:02.8802669Z [155910] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8803082Z [155910] Skipping because PR was updated recently 2025-09-07T07:34:02.8803528Z ##[endgroup] 2025-09-07T07:34:02.8803892Z ##[group]Processing PR #155922 2025-09-07T07:34:02.8804238Z [155922] URL: https://github.com/pytorch/pytorch/pull/155922 2025-09-07T07:34:02.8804669Z [155922] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8805084Z [155922] Skipping because PR was updated recently 2025-09-07T07:34:02.8805539Z ##[endgroup] 2025-09-07T07:34:02.8805903Z ##[group]Processing PR #155923 2025-09-07T07:34:02.8806232Z [155923] URL: https://github.com/pytorch/pytorch/pull/155923 2025-09-07T07:34:02.8806626Z [155923] Checking whether to label PR as stale. 2025-09-07T07:34:02.8806968Z [155923] Skipping because PR was updated recently 2025-09-07T07:34:02.8807426Z ##[endgroup] 2025-09-07T07:34:02.8807788Z ##[group]Processing PR #155928 2025-09-07T07:34:02.8808248Z [155928] URL: https://github.com/pytorch/pytorch/pull/155928 2025-09-07T07:34:02.8808751Z [155928] Checking whether to label PR as stale. 2025-09-07T07:34:02.8809107Z [155928] Skipping because PR was updated recently 2025-09-07T07:34:02.8809552Z ##[endgroup] 2025-09-07T07:34:02.8809913Z ##[group]Processing PR #155938 2025-09-07T07:34:02.8810252Z [155938] URL: https://github.com/pytorch/pytorch/pull/155938 2025-09-07T07:34:02.8810870Z [155938] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8811281Z [155938] Skipping because PR was updated recently 2025-09-07T07:34:02.8811744Z ##[endgroup] 2025-09-07T07:34:02.8812109Z ##[group]Processing PR #155948 2025-09-07T07:34:02.8812442Z [155948] URL: https://github.com/pytorch/pytorch/pull/155948 2025-09-07T07:34:02.8812889Z [155948] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8813287Z [155948] Skipping because PR was updated recently 2025-09-07T07:34:02.8813751Z ##[endgroup] 2025-09-07T07:34:02.8814117Z ##[group]Processing PR #155950 2025-09-07T07:34:02.8814449Z [155950] URL: https://github.com/pytorch/pytorch/pull/155950 2025-09-07T07:34:02.8814898Z [155950] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8815307Z [155950] Skipping because PR was updated recently 2025-09-07T07:34:02.8815751Z ##[endgroup] 2025-09-07T07:34:02.8816113Z ##[group]Processing PR #155951 2025-09-07T07:34:02.8816457Z [155951] URL: https://github.com/pytorch/pytorch/pull/155951 2025-09-07T07:34:02.8816966Z [155951] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8817378Z [155951] Skipping because PR was updated recently 2025-09-07T07:34:02.8817842Z ##[endgroup] 2025-09-07T07:34:02.8818213Z ##[group]Processing PR #155956 2025-09-07T07:34:02.8818548Z [155956] URL: https://github.com/pytorch/pytorch/pull/155956 2025-09-07T07:34:02.8818994Z [155956] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8819391Z [155956] Skipping because PR was updated recently 2025-09-07T07:34:02.8819851Z ##[endgroup] 2025-09-07T07:34:02.8820220Z ##[group]Processing PR #155962 2025-09-07T07:34:02.8820553Z [155962] URL: https://github.com/pytorch/pytorch/pull/155962 2025-09-07T07:34:02.8820948Z [155962] Checking whether to label PR as stale. 2025-09-07T07:34:02.8821309Z [155962] Skipping because PR was updated recently 2025-09-07T07:34:02.8821753Z ##[endgroup] 2025-09-07T07:34:02.8822113Z ##[group]Processing PR #155970 2025-09-07T07:34:02.8822460Z [155970] URL: https://github.com/pytorch/pytorch/pull/155970 2025-09-07T07:34:02.8822842Z [155970] Checking whether to label PR as stale. 2025-09-07T07:34:02.8823194Z [155970] Skipping because PR was updated recently 2025-09-07T07:34:02.8823649Z ##[endgroup] 2025-09-07T07:34:02.8823998Z ##[group]Processing PR #155989 2025-09-07T07:34:02.8824349Z [155989] URL: https://github.com/pytorch/pytorch/pull/155989 2025-09-07T07:34:02.8824743Z [155989] Checking whether to label PR as stale. 2025-09-07T07:34:02.8825084Z [155989] Skipping because PR was updated recently 2025-09-07T07:34:02.8825543Z ##[endgroup] 2025-09-07T07:34:02.8825912Z ##[group]Processing PR #156001 2025-09-07T07:34:02.8826245Z [156001] URL: https://github.com/pytorch/pytorch/pull/156001 2025-09-07T07:34:02.8826802Z [156001] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8827200Z [156001] Skipping because PR was updated recently 2025-09-07T07:34:02.8827655Z ##[endgroup] 2025-09-07T07:34:02.8828022Z ##[group]Processing PR #156003 2025-09-07T07:34:02.8828365Z [156003] URL: https://github.com/pytorch/pytorch/pull/156003 2025-09-07T07:34:02.8828801Z [156003] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8829208Z [156003] Skipping because PR was updated recently 2025-09-07T07:34:02.8829666Z ##[endgroup] 2025-09-07T07:34:02.8830018Z ##[group]Processing PR #156006 2025-09-07T07:34:02.8830364Z [156006] URL: https://github.com/pytorch/pytorch/pull/156006 2025-09-07T07:34:02.8830810Z [156006] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8831206Z [156006] Skipping because PR was updated recently 2025-09-07T07:34:02.8831766Z ##[endgroup] 2025-09-07T07:34:02.8832130Z ##[group]Processing PR #156014 2025-09-07T07:34:02.8832461Z [156014] URL: https://github.com/pytorch/pytorch/pull/156014 2025-09-07T07:34:02.8832910Z [156014] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8833306Z [156014] Skipping because PR was updated recently 2025-09-07T07:34:02.8833770Z ##[endgroup] 2025-09-07T07:34:02.8834395Z ##[group]Processing PR #156030 2025-09-07T07:34:02.8834748Z [156030] URL: https://github.com/pytorch/pytorch/pull/156030 2025-09-07T07:34:02.8835187Z [156030] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8835605Z [156030] Skipping because PR was updated recently 2025-09-07T07:34:02.8836067Z ##[endgroup] 2025-09-07T07:34:02.8836419Z ##[group]Processing PR #156049 2025-09-07T07:34:02.8836765Z [156049] URL: https://github.com/pytorch/pytorch/pull/156049 2025-09-07T07:34:02.8837163Z [156049] Checking whether to label PR as stale. 2025-09-07T07:34:02.8837511Z [156049] Skipping because PR was updated recently 2025-09-07T07:34:02.8837970Z ##[endgroup] 2025-09-07T07:34:02.8838333Z ##[group]Processing PR #156060 2025-09-07T07:34:02.8838666Z [156060] URL: https://github.com/pytorch/pytorch/pull/156060 2025-09-07T07:34:02.8839109Z [156060] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8839642Z [156060] Skipping because PR was updated recently 2025-09-07T07:34:02.8840105Z ##[endgroup] 2025-09-07T07:34:02.8840471Z ##[group]Processing PR #156094 2025-09-07T07:34:02.8840814Z [156094] URL: https://github.com/pytorch/pytorch/pull/156094 2025-09-07T07:34:02.8841251Z [156094] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8841657Z [156094] Skipping because PR was updated recently 2025-09-07T07:34:02.8842113Z ##[endgroup] 2025-09-07T07:34:02.8842465Z ##[group]Processing PR #156097 2025-09-07T07:34:02.8842805Z [156097] URL: https://github.com/pytorch/pytorch/pull/156097 2025-09-07T07:34:02.8843191Z [156097] Checking whether to label PR as stale. 2025-09-07T07:34:02.8843545Z [156097] Skipping because PR was updated recently 2025-09-07T07:34:02.8843998Z ##[endgroup] 2025-09-07T07:34:02.8844356Z ##[group]Processing PR #156101 2025-09-07T07:34:02.8844686Z [156101] URL: https://github.com/pytorch/pytorch/pull/156101 2025-09-07T07:34:02.8845136Z [156101] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8845533Z [156101] Skipping because PR was updated recently 2025-09-07T07:34:02.8845990Z ##[endgroup] 2025-09-07T07:34:02.8846349Z ##[group]Processing PR #156104 2025-09-07T07:34:02.8846692Z [156104] URL: https://github.com/pytorch/pytorch/pull/156104 2025-09-07T07:34:02.8847128Z [156104] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8847541Z [156104] Skipping because PR was updated recently 2025-09-07T07:34:02.8847992Z ##[endgroup] 2025-09-07T07:34:02.8848352Z ##[group]Processing PR #156109 2025-09-07T07:34:02.8848695Z [156109] URL: https://github.com/pytorch/pytorch/pull/156109 2025-09-07T07:34:02.8849135Z [156109] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8849543Z [156109] Skipping because PR was updated recently 2025-09-07T07:34:02.8849997Z ##[endgroup] 2025-09-07T07:34:02.8850360Z ##[group]Processing PR #156110 2025-09-07T07:34:02.8850691Z [156110] URL: https://github.com/pytorch/pytorch/pull/156110 2025-09-07T07:34:02.8851144Z [156110] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8851542Z [156110] Skipping because PR was updated recently 2025-09-07T07:34:02.8851999Z ##[endgroup] 2025-09-07T07:34:02.8852363Z ##[group]Processing PR #156111 2025-09-07T07:34:02.8852708Z [156111] URL: https://github.com/pytorch/pytorch/pull/156111 2025-09-07T07:34:02.8853144Z [156111] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8853552Z [156111] Skipping because PR was updated recently 2025-09-07T07:34:02.8854012Z ##[endgroup] 2025-09-07T07:34:02.8854458Z ##[group]Processing PR #156131 2025-09-07T07:34:02.8854803Z [156131] URL: https://github.com/pytorch/pytorch/pull/156131 2025-09-07T07:34:02.8855238Z [156131] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8855653Z [156131] Skipping because PR was updated recently 2025-09-07T07:34:02.8856112Z ##[endgroup] 2025-09-07T07:34:02.8856479Z ##[group]Processing PR #156132 2025-09-07T07:34:02.8856820Z [156132] URL: https://github.com/pytorch/pytorch/pull/156132 2025-09-07T07:34:02.8857269Z [156132] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8857666Z [156132] Skipping because PR was updated recently 2025-09-07T07:34:02.8858124Z ##[endgroup] 2025-09-07T07:34:02.8858488Z ##[group]Processing PR #156141 2025-09-07T07:34:02.8858834Z [156141] URL: https://github.com/pytorch/pytorch/pull/156141 2025-09-07T07:34:02.8859219Z [156141] Checking whether to label PR as stale. 2025-09-07T07:34:02.8859574Z [156141] Skipping because PR was updated recently 2025-09-07T07:34:02.8860025Z ##[endgroup] 2025-09-07T07:34:02.8860391Z ##[group]Processing PR #156147 2025-09-07T07:34:02.8860736Z [156147] URL: https://github.com/pytorch/pytorch/pull/156147 2025-09-07T07:34:02.8861120Z [156147] Checking whether to label PR as stale. 2025-09-07T07:34:02.8861479Z [156147] Skipping because PR was updated recently 2025-09-07T07:34:02.8861938Z ##[endgroup] 2025-09-07T07:34:02.8862365Z ##[group]Processing PR #156149 2025-09-07T07:34:02.8862698Z [156149] URL: https://github.com/pytorch/pytorch/pull/156149 2025-09-07T07:34:02.8863145Z [156149] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8863544Z [156149] Skipping because PR was updated recently 2025-09-07T07:34:02.8864003Z ##[endgroup] 2025-09-07T07:34:02.8864367Z ##[group]Processing PR #156157 2025-09-07T07:34:02.8864698Z [156157] URL: https://github.com/pytorch/pytorch/pull/156157 2025-09-07T07:34:02.8865094Z [156157] Checking whether to label PR as stale. 2025-09-07T07:34:02.8865447Z [156157] Skipping because PR was updated recently 2025-09-07T07:34:02.8865894Z ##[endgroup] 2025-09-07T07:34:02.8866255Z ##[group]Processing PR #156161 2025-09-07T07:34:02.8866681Z [156161] URL: https://github.com/pytorch/pytorch/pull/156161 2025-09-07T07:34:02.8867076Z [156161] Checking whether to label PR as stale. 2025-09-07T07:34:02.8867433Z [156161] Skipping because PR was updated recently 2025-09-07T07:34:02.8867897Z ##[endgroup] 2025-09-07T07:34:02.8868258Z ##[group]Processing PR #156170 2025-09-07T07:34:02.8868586Z [156170] URL: https://github.com/pytorch/pytorch/pull/156170 2025-09-07T07:34:02.8869032Z [156170] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8869429Z [156170] Skipping because PR was updated recently 2025-09-07T07:34:02.8869884Z ##[endgroup] 2025-09-07T07:34:02.8870248Z ##[group]Processing PR #156178 2025-09-07T07:34:02.8870579Z [156178] URL: https://github.com/pytorch/pytorch/pull/156178 2025-09-07T07:34:02.8870972Z [156178] Checking whether to label PR as stale. 2025-09-07T07:34:02.8871331Z [156178] Skipping because PR was updated recently 2025-09-07T07:34:02.8871780Z ##[endgroup] 2025-09-07T07:34:02.8872145Z ##[group]Processing PR #156179 2025-09-07T07:34:02.8872488Z [156179] URL: https://github.com/pytorch/pytorch/pull/156179 2025-09-07T07:34:02.8872924Z [156179] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8873338Z [156179] Skipping because PR was updated recently 2025-09-07T07:34:02.8873795Z ##[endgroup] 2025-09-07T07:34:02.8874158Z ##[group]Processing PR #156183 2025-09-07T07:34:02.8874491Z [156183] URL: https://github.com/pytorch/pytorch/pull/156183 2025-09-07T07:34:02.8874886Z [156183] Checking whether to label PR as stale. 2025-09-07T07:34:02.8875227Z [156183] Skipping because PR was updated recently 2025-09-07T07:34:02.8875684Z ##[endgroup] 2025-09-07T07:34:02.8876046Z ##[group]Processing PR #156188 2025-09-07T07:34:02.8876378Z [156188] URL: https://github.com/pytorch/pytorch/pull/156188 2025-09-07T07:34:02.8876824Z [156188] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8877306Z [156188] Skipping because PR was updated recently 2025-09-07T07:34:02.8877775Z ##[endgroup] 2025-09-07T07:34:02.8878146Z ##[group]Processing PR #156189 2025-09-07T07:34:02.8878500Z [156189] URL: https://github.com/pytorch/pytorch/pull/156189 2025-09-07T07:34:02.8878938Z [156189] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8879503Z [156189] Skipping because PR was updated recently 2025-09-07T07:34:02.8880272Z ##[endgroup] 2025-09-07T07:34:02.8880790Z ##[group]Processing PR #156198 2025-09-07T07:34:02.8881137Z [156198] URL: https://github.com/pytorch/pytorch/pull/156198 2025-09-07T07:34:02.8881583Z [156198] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8881978Z [156198] Skipping because PR was updated recently 2025-09-07T07:34:02.8882436Z ##[endgroup] 2025-09-07T07:34:02.8882797Z ##[group]Processing PR #156199 2025-09-07T07:34:02.8883132Z [156199] URL: https://github.com/pytorch/pytorch/pull/156199 2025-09-07T07:34:02.8883586Z [156199] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8883983Z [156199] Skipping because PR was updated recently 2025-09-07T07:34:02.8884443Z ##[endgroup] 2025-09-07T07:34:02.8884809Z ##[group]Processing PR #156239 2025-09-07T07:34:02.8885150Z [156239] URL: https://github.com/pytorch/pytorch/pull/156239 2025-09-07T07:34:02.8885665Z [156239] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8886076Z [156239] Skipping because PR was updated recently 2025-09-07T07:34:02.8886535Z ##[endgroup] 2025-09-07T07:34:02.8886885Z ##[group]Processing PR #156252 2025-09-07T07:34:02.8887230Z [156252] URL: https://github.com/pytorch/pytorch/pull/156252 2025-09-07T07:34:02.8887678Z [156252] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8888075Z [156252] Skipping because PR was updated recently 2025-09-07T07:34:02.8888531Z ##[endgroup] 2025-09-07T07:34:02.8888893Z ##[group]Processing PR #156266 2025-09-07T07:34:02.8889231Z [156266] URL: https://github.com/pytorch/pytorch/pull/156266 2025-09-07T07:34:02.8889679Z [156266] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8890078Z [156266] Skipping because PR was updated recently 2025-09-07T07:34:02.8890543Z ##[endgroup] 2025-09-07T07:34:02.8890910Z ##[group]Processing PR #156267 2025-09-07T07:34:02.8891272Z [156267] URL: https://github.com/pytorch/pytorch/pull/156267 2025-09-07T07:34:02.8891720Z [156267] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8892117Z [156267] Skipping because PR was updated recently 2025-09-07T07:34:02.8892574Z ##[endgroup] 2025-09-07T07:34:02.8892939Z ##[group]Processing PR #156338 2025-09-07T07:34:02.8893270Z [156338] URL: https://github.com/pytorch/pytorch/pull/156338 2025-09-07T07:34:02.8893718Z [156338] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8894130Z [156338] Skipping because PR was updated recently 2025-09-07T07:34:02.8894584Z ##[endgroup] 2025-09-07T07:34:02.8894958Z ##[group]Processing PR #156343 2025-09-07T07:34:02.8895300Z [156343] URL: https://github.com/pytorch/pytorch/pull/156343 2025-09-07T07:34:02.8895734Z [156343] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8896149Z [156343] Skipping because PR was updated recently 2025-09-07T07:34:02.8896610Z ##[endgroup] 2025-09-07T07:34:02.8896963Z ##[group]Processing PR #156345 2025-09-07T07:34:02.8897307Z [156345] URL: https://github.com/pytorch/pytorch/pull/156345 2025-09-07T07:34:02.8897753Z [156345] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8898148Z [156345] Skipping because PR was updated recently 2025-09-07T07:34:02.8898608Z ##[endgroup] 2025-09-07T07:34:02.8898978Z ##[group]Processing PR #156365 2025-09-07T07:34:02.8899309Z [156365] URL: https://github.com/pytorch/pytorch/pull/156365 2025-09-07T07:34:02.8899756Z [156365] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8900224Z [156365] Skipping because PR was updated recently 2025-09-07T07:34:02.8900680Z ##[endgroup] 2025-09-07T07:34:02.8901040Z ##[group]Processing PR #156366 2025-09-07T07:34:02.8901383Z [156366] URL: https://github.com/pytorch/pytorch/pull/156366 2025-09-07T07:34:02.8901816Z [156366] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8902226Z [156366] Skipping because PR was updated recently 2025-09-07T07:34:02.8902683Z ##[endgroup] 2025-09-07T07:34:02.8903031Z ##[group]Processing PR #156372 2025-09-07T07:34:02.8903374Z [156372] URL: https://github.com/pytorch/pytorch/pull/156372 2025-09-07T07:34:02.8903822Z [156372] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8904217Z [156372] Skipping because PR was updated recently 2025-09-07T07:34:02.8904673Z ##[endgroup] 2025-09-07T07:34:02.8905035Z ##[group]Processing PR #156380 2025-09-07T07:34:02.8905367Z [156380] URL: https://github.com/pytorch/pytorch/pull/156380 2025-09-07T07:34:02.8905814Z [156380] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8906212Z [156380] Skipping because PR was updated recently 2025-09-07T07:34:02.8906765Z ##[endgroup] 2025-09-07T07:34:02.8907136Z ##[group]Processing PR #156385 2025-09-07T07:34:02.8907483Z [156385] URL: https://github.com/pytorch/pytorch/pull/156385 2025-09-07T07:34:02.8908004Z [156385] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8908417Z [156385] Skipping because PR was updated recently 2025-09-07T07:34:02.8908965Z ##[endgroup] 2025-09-07T07:34:02.8909320Z ##[group]Processing PR #156396 2025-09-07T07:34:02.8909666Z [156396] URL: https://github.com/pytorch/pytorch/pull/156396 2025-09-07T07:34:02.8910115Z [156396] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8910511Z [156396] Skipping because PR was updated recently 2025-09-07T07:34:02.8910968Z ##[endgroup] 2025-09-07T07:34:02.8911331Z ##[group]Processing PR #156403 2025-09-07T07:34:02.8911661Z [156403] URL: https://github.com/pytorch/pytorch/pull/156403 2025-09-07T07:34:02.8912110Z [156403] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8912506Z [156403] Skipping because PR was updated recently 2025-09-07T07:34:02.8912962Z ##[endgroup] 2025-09-07T07:34:02.8913322Z ##[group]Processing PR #156415 2025-09-07T07:34:02.8913662Z [156415] URL: https://github.com/pytorch/pytorch/pull/156415 2025-09-07T07:34:02.8914049Z [156415] Checking whether to label PR as stale. 2025-09-07T07:34:02.8914403Z [156415] Skipping because PR was updated recently 2025-09-07T07:34:02.8914859Z ##[endgroup] 2025-09-07T07:34:02.8915208Z ##[group]Processing PR #156418 2025-09-07T07:34:02.8915551Z [156418] URL: https://github.com/pytorch/pytorch/pull/156418 2025-09-07T07:34:02.8915934Z [156418] Checking whether to label PR as stale. 2025-09-07T07:34:02.8916282Z [156418] Skipping because PR was updated recently 2025-09-07T07:34:02.8916734Z ##[endgroup] 2025-09-07T07:34:02.8917094Z ##[group]Processing PR #156435 2025-09-07T07:34:02.8917428Z [156435] URL: https://github.com/pytorch/pytorch/pull/156435 2025-09-07T07:34:02.8917875Z [156435] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8918273Z [156435] Skipping because PR was updated recently 2025-09-07T07:34:02.8918739Z ##[endgroup] 2025-09-07T07:34:02.8919101Z ##[group]Processing PR #156458 2025-09-07T07:34:02.8919452Z [156458] URL: https://github.com/pytorch/pytorch/pull/156458 2025-09-07T07:34:02.8919885Z [156458] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8920297Z [156458] Skipping because PR was updated recently 2025-09-07T07:34:02.8920750Z ##[endgroup] 2025-09-07T07:34:02.8921088Z ##[group]Processing PR #156478 2025-09-07T07:34:02.8921418Z [156478] URL: https://github.com/pytorch/pytorch/pull/156478 2025-09-07T07:34:02.8921845Z [156478] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8922242Z [156478] Skipping because PR was updated recently 2025-09-07T07:34:02.8922783Z ##[endgroup] 2025-09-07T07:34:02.8923146Z ##[group]Processing PR #156484 2025-09-07T07:34:02.8923478Z [156484] URL: https://github.com/pytorch/pytorch/pull/156484 2025-09-07T07:34:02.8923926Z [156484] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8924327Z [156484] Skipping because PR was updated recently 2025-09-07T07:34:02.8924791Z ##[endgroup] 2025-09-07T07:34:02.8925162Z ##[group]Processing PR #156491 2025-09-07T07:34:02.8925507Z [156491] URL: https://github.com/pytorch/pytorch/pull/156491 2025-09-07T07:34:02.8925892Z [156491] Checking whether to label PR as stale. 2025-09-07T07:34:02.8926249Z [156491] Skipping because PR was updated recently 2025-09-07T07:34:02.8926695Z ##[endgroup] 2025-09-07T07:34:02.8927059Z ##[group]Processing PR #156494 2025-09-07T07:34:02.8927404Z [156494] URL: https://github.com/pytorch/pytorch/pull/156494 2025-09-07T07:34:02.8927841Z [156494] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8928253Z [156494] Skipping because PR was updated recently 2025-09-07T07:34:02.8928711Z ##[endgroup] 2025-09-07T07:34:02.8929074Z ##[group]Processing PR #156510 2025-09-07T07:34:02.8929404Z [156510] URL: https://github.com/pytorch/pytorch/pull/156510 2025-09-07T07:34:02.8929800Z [156510] Checking whether to label PR as stale. 2025-09-07T07:34:02.8930142Z [156510] Skipping because PR was updated recently 2025-09-07T07:34:02.8930656Z ##[endgroup] 2025-09-07T07:34:02.8931021Z ##[group]Processing PR #156550 2025-09-07T07:34:02.8931356Z [156550] URL: https://github.com/pytorch/pytorch/pull/156550 2025-09-07T07:34:02.8931805Z [156550] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8932219Z [156550] Skipping because PR was updated recently 2025-09-07T07:34:02.8932664Z ##[endgroup] 2025-09-07T07:34:02.8933031Z ##[group]Processing PR #156592 2025-09-07T07:34:02.8933374Z [156592] URL: https://github.com/pytorch/pytorch/pull/156592 2025-09-07T07:34:02.8933757Z [156592] Checking whether to label PR as stale. 2025-09-07T07:34:02.8934299Z [156592] Skipping because PR was updated recently 2025-09-07T07:34:02.8934761Z ##[endgroup] 2025-09-07T07:34:02.8935122Z ##[group]Processing PR #156599 2025-09-07T07:34:02.8935451Z [156599] URL: https://github.com/pytorch/pytorch/pull/156599 2025-09-07T07:34:02.8935844Z [156599] Checking whether to label PR as stale. 2025-09-07T07:34:02.8936185Z [156599] Skipping because PR was updated recently 2025-09-07T07:34:02.8936645Z ##[endgroup] 2025-09-07T07:34:02.8937006Z ##[group]Processing PR #156617 2025-09-07T07:34:02.8937338Z [156617] URL: https://github.com/pytorch/pytorch/pull/156617 2025-09-07T07:34:02.8937734Z [156617] Checking whether to label PR as stale. 2025-09-07T07:34:02.8938090Z [156617] Skipping because PR was updated recently 2025-09-07T07:34:02.8938532Z ##[endgroup] 2025-09-07T07:34:02.8938892Z ##[group]Processing PR #156621 2025-09-07T07:34:02.8939234Z [156621] URL: https://github.com/pytorch/pytorch/pull/156621 2025-09-07T07:34:02.8939670Z [156621] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8940083Z [156621] Skipping because PR was updated recently 2025-09-07T07:34:02.8940540Z ##[endgroup] 2025-09-07T07:34:02.8940890Z ##[group]Processing PR #156635 2025-09-07T07:34:02.8941234Z [156635] URL: https://github.com/pytorch/pytorch/pull/156635 2025-09-07T07:34:02.8941682Z [156635] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8942085Z [156635] Skipping because PR was updated recently 2025-09-07T07:34:02.8942549Z ##[endgroup] 2025-09-07T07:34:02.8942911Z ##[group]Processing PR #156650 2025-09-07T07:34:02.8943243Z [156650] URL: https://github.com/pytorch/pytorch/pull/156650 2025-09-07T07:34:02.8943690Z [156650] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8944087Z [156650] Skipping because PR was updated recently 2025-09-07T07:34:02.8944546Z ##[endgroup] 2025-09-07T07:34:02.8944909Z ##[group]Processing PR #156660 2025-09-07T07:34:02.8945251Z [156660] URL: https://github.com/pytorch/pytorch/pull/156660 2025-09-07T07:34:02.8945817Z [156660] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8946228Z [156660] Skipping because PR was updated recently 2025-09-07T07:34:02.8946755Z ##[endgroup] 2025-09-07T07:34:02.8947109Z ##[group]Processing PR #156665 2025-09-07T07:34:02.8947460Z [156665] URL: https://github.com/pytorch/pytorch/pull/156665 2025-09-07T07:34:02.8947912Z [156665] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8948309Z [156665] Skipping because PR was updated recently 2025-09-07T07:34:02.8948772Z ##[endgroup] 2025-09-07T07:34:02.8949136Z ##[group]Processing PR #156666 2025-09-07T07:34:02.8949467Z [156666] URL: https://github.com/pytorch/pytorch/pull/156666 2025-09-07T07:34:02.8949863Z [156666] Checking whether to label PR as stale. 2025-09-07T07:34:02.8950204Z [156666] Skipping because PR was updated recently 2025-09-07T07:34:02.8950655Z ##[endgroup] 2025-09-07T07:34:02.8951018Z ##[group]Processing PR #156672 2025-09-07T07:34:02.8951365Z [156672] URL: https://github.com/pytorch/pytorch/pull/156672 2025-09-07T07:34:02.8951749Z [156672] Checking whether to label PR as stale. 2025-09-07T07:34:02.8952102Z [156672] Skipping because PR was updated recently 2025-09-07T07:34:02.8952559Z ##[endgroup] 2025-09-07T07:34:02.8952914Z ##[group]Processing PR #156683 2025-09-07T07:34:02.8953258Z [156683] URL: https://github.com/pytorch/pytorch/pull/156683 2025-09-07T07:34:02.8953740Z [156683] Checking whether to label PR as stale. 2025-09-07T07:34:02.8954086Z [156683] Skipping because PR was updated recently 2025-09-07T07:34:02.8954549Z ##[endgroup] 2025-09-07T07:34:02.8954916Z ##[group]Processing PR #156696 2025-09-07T07:34:02.8955247Z [156696] URL: https://github.com/pytorch/pytorch/pull/156696 2025-09-07T07:34:02.8955695Z [156696] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8956092Z [156696] Skipping because PR was updated recently 2025-09-07T07:34:02.8956550Z ##[endgroup] 2025-09-07T07:34:02.8956913Z ##[group]Processing PR #156697 2025-09-07T07:34:02.8957261Z [156697] URL: https://github.com/pytorch/pytorch/pull/156697 2025-09-07T07:34:02.8957697Z [156697] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:02.8958118Z [156697] Skipping because PR was updated recently 2025-09-07T07:34:02.8958579Z ##[endgroup] 2025-09-07T07:34:03.9190897Z ##[group]Processing PR #156702 2025-09-07T07:34:03.9191637Z [156702] URL: https://github.com/pytorch/pytorch/pull/156702 2025-09-07T07:34:03.9192660Z [156702] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9193415Z [156702] Skipping because PR was updated recently 2025-09-07T07:34:03.9194319Z ##[endgroup] 2025-09-07T07:34:03.9195296Z ##[group]Processing PR #156703 2025-09-07T07:34:03.9196038Z [156703] URL: https://github.com/pytorch/pytorch/pull/156703 2025-09-07T07:34:03.9196833Z [156703] Checking whether to label PR as stale. 2025-09-07T07:34:03.9197552Z [156703] Skipping because PR was updated recently 2025-09-07T07:34:03.9198568Z ##[endgroup] 2025-09-07T07:34:03.9199312Z ##[group]Processing PR #156711 2025-09-07T07:34:03.9200017Z [156711] URL: https://github.com/pytorch/pytorch/pull/156711 2025-09-07T07:34:03.9200842Z [156711] Checking whether to label PR as stale. 2025-09-07T07:34:03.9201571Z [156711] Skipping because PR was updated recently 2025-09-07T07:34:03.9202497Z ##[endgroup] 2025-09-07T07:34:03.9203265Z ##[group]Processing PR #156712 2025-09-07T07:34:03.9203982Z [156712] URL: https://github.com/pytorch/pytorch/pull/156712 2025-09-07T07:34:03.9204795Z [156712] Checking whether to label PR as stale. 2025-09-07T07:34:03.9205512Z [156712] Skipping because PR was updated recently 2025-09-07T07:34:03.9206418Z ##[endgroup] 2025-09-07T07:34:03.9207151Z ##[group]Processing PR #156713 2025-09-07T07:34:03.9207870Z [156713] URL: https://github.com/pytorch/pytorch/pull/156713 2025-09-07T07:34:03.9208671Z [156713] Checking whether to label PR as stale. 2025-09-07T07:34:03.9209382Z [156713] Skipping because PR was updated recently 2025-09-07T07:34:03.9210741Z ##[endgroup] 2025-09-07T07:34:03.9211504Z ##[group]Processing PR #156729 2025-09-07T07:34:03.9212225Z [156729] URL: https://github.com/pytorch/pytorch/pull/156729 2025-09-07T07:34:03.9213121Z [156729] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9213976Z [156729] Skipping because PR was updated recently 2025-09-07T07:34:03.9257560Z ##[endgroup] 2025-09-07T07:34:03.9258275Z ##[group]Processing PR #156730 2025-09-07T07:34:03.9258900Z [156730] URL: https://github.com/pytorch/pytorch/pull/156730 2025-09-07T07:34:03.9259729Z [156730] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9260534Z [156730] Skipping because PR was updated recently 2025-09-07T07:34:03.9261444Z ##[endgroup] 2025-09-07T07:34:03.9262147Z ##[group]Processing PR #156749 2025-09-07T07:34:03.9262831Z [156749] URL: https://github.com/pytorch/pytorch/pull/156749 2025-09-07T07:34:03.9263695Z [156749] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9264531Z [156749] Skipping because PR was updated recently 2025-09-07T07:34:03.9265466Z ##[endgroup] 2025-09-07T07:34:03.9266114Z ##[group]Processing PR #156756 2025-09-07T07:34:03.9266831Z [156756] URL: https://github.com/pytorch/pytorch/pull/156756 2025-09-07T07:34:03.9267631Z [156756] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9268674Z [156756] Skipping because PR was updated recently 2025-09-07T07:34:03.9269569Z ##[endgroup] 2025-09-07T07:34:03.9270240Z ##[group]Processing PR #156759 2025-09-07T07:34:03.9270898Z [156759] URL: https://github.com/pytorch/pytorch/pull/156759 2025-09-07T07:34:03.9271749Z [156759] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9272563Z [156759] Skipping because PR was updated recently 2025-09-07T07:34:03.9273466Z ##[endgroup] 2025-09-07T07:34:03.9274156Z ##[group]Processing PR #156773 2025-09-07T07:34:03.9274845Z [156773] URL: https://github.com/pytorch/pytorch/pull/156773 2025-09-07T07:34:03.9275643Z [156773] Checking whether to label PR as stale. 2025-09-07T07:34:03.9276378Z [156773] Skipping because PR was updated recently 2025-09-07T07:34:03.9277254Z ##[endgroup] 2025-09-07T07:34:03.9277962Z ##[group]Processing PR #156775 2025-09-07T07:34:03.9278638Z [156775] URL: https://github.com/pytorch/pytorch/pull/156775 2025-09-07T07:34:03.9279537Z [156775] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9280323Z [156775] Skipping because PR was updated recently 2025-09-07T07:34:03.9281203Z ##[endgroup] 2025-09-07T07:34:03.9281926Z ##[group]Processing PR #156785 2025-09-07T07:34:03.9282622Z [156785] URL: https://github.com/pytorch/pytorch/pull/156785 2025-09-07T07:34:03.9283468Z [156785] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9284272Z [156785] Skipping because PR was updated recently 2025-09-07T07:34:03.9285191Z ##[endgroup] 2025-09-07T07:34:03.9285906Z ##[group]Processing PR #156791 2025-09-07T07:34:03.9286552Z [156791] URL: https://github.com/pytorch/pytorch/pull/156791 2025-09-07T07:34:03.9287426Z [156791] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9288251Z [156791] Skipping because PR was updated recently 2025-09-07T07:34:03.9289141Z ##[endgroup] 2025-09-07T07:34:03.9289809Z ##[group]Processing PR #156793 2025-09-07T07:34:03.9290481Z [156793] URL: https://github.com/pytorch/pytorch/pull/156793 2025-09-07T07:34:03.9291341Z [156793] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9292426Z [156793] Skipping because PR was updated recently 2025-09-07T07:34:03.9293320Z ##[endgroup] 2025-09-07T07:34:03.9294044Z ##[group]Processing PR #156798 2025-09-07T07:34:03.9294724Z [156798] URL: https://github.com/pytorch/pytorch/pull/156798 2025-09-07T07:34:03.9295469Z [156798] Checking whether to label PR as stale. 2025-09-07T07:34:03.9296095Z [156798] Skipping because PR was updated recently 2025-09-07T07:34:03.9296877Z ##[endgroup] 2025-09-07T07:34:03.9297537Z ##[group]Processing PR #156806 2025-09-07T07:34:03.9298441Z [156806] URL: https://github.com/pytorch/pytorch/pull/156806 2025-09-07T07:34:03.9299164Z [156806] Checking whether to label PR as stale. 2025-09-07T07:34:03.9299797Z [156806] Skipping because PR was updated recently 2025-09-07T07:34:03.9300623Z ##[endgroup] 2025-09-07T07:34:03.9309388Z ##[group]Processing PR #156812 2025-09-07T07:34:03.9310142Z [156812] URL: https://github.com/pytorch/pytorch/pull/156812 2025-09-07T07:34:03.9310925Z [156812] Checking whether to label PR as stale. 2025-09-07T07:34:03.9311642Z [156812] Skipping because PR was updated recently 2025-09-07T07:34:03.9312495Z ##[endgroup] 2025-09-07T07:34:03.9313211Z ##[group]Processing PR #156832 2025-09-07T07:34:03.9313895Z [156832] URL: https://github.com/pytorch/pytorch/pull/156832 2025-09-07T07:34:03.9314649Z [156832] Checking whether to label PR as stale. 2025-09-07T07:34:03.9315304Z [156832] Skipping because PR was updated recently 2025-09-07T07:34:03.9316157Z ##[endgroup] 2025-09-07T07:34:03.9316885Z ##[group]Processing PR #156834 2025-09-07T07:34:03.9317590Z [156834] URL: https://github.com/pytorch/pytorch/pull/156834 2025-09-07T07:34:03.9318432Z [156834] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9319194Z [156834] Skipping because PR was updated recently 2025-09-07T07:34:03.9320096Z ##[endgroup] 2025-09-07T07:34:03.9320793Z ##[group]Processing PR #156839 2025-09-07T07:34:03.9321619Z [156839] URL: https://github.com/pytorch/pytorch/pull/156839 2025-09-07T07:34:03.9322448Z [156839] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9323214Z [156839] Skipping because PR was updated recently 2025-09-07T07:34:03.9324090Z ##[endgroup] 2025-09-07T07:34:03.9324796Z ##[group]Processing PR #156851 2025-09-07T07:34:03.9325404Z [156851] URL: https://github.com/pytorch/pytorch/pull/156851 2025-09-07T07:34:03.9326098Z [156851] Checking whether to label PR as stale. 2025-09-07T07:34:03.9326731Z [156851] Skipping because PR was updated recently 2025-09-07T07:34:03.9327575Z ##[endgroup] 2025-09-07T07:34:03.9328269Z ##[group]Processing PR #156869 2025-09-07T07:34:03.9328923Z [156869] URL: https://github.com/pytorch/pytorch/pull/156869 2025-09-07T07:34:03.9329786Z [156869] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9330565Z [156869] Skipping because PR was updated recently 2025-09-07T07:34:03.9331432Z ##[endgroup] 2025-09-07T07:34:03.9332167Z ##[group]Processing PR #156878 2025-09-07T07:34:03.9332845Z [156878] URL: https://github.com/pytorch/pytorch/pull/156878 2025-09-07T07:34:03.9333624Z [156878] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9339837Z [156878] Skipping because PR was updated recently 2025-09-07T07:34:03.9340731Z ##[endgroup] 2025-09-07T07:34:03.9341393Z ##[group]Processing PR #156887 2025-09-07T07:34:03.9342013Z [156887] URL: https://github.com/pytorch/pytorch/pull/156887 2025-09-07T07:34:03.9342759Z [156887] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9343490Z [156887] Skipping because PR was updated recently 2025-09-07T07:34:03.9344322Z ##[endgroup] 2025-09-07T07:34:03.9344956Z ##[group]Processing PR #156892 2025-09-07T07:34:03.9345568Z [156892] URL: https://github.com/pytorch/pytorch/pull/156892 2025-09-07T07:34:03.9346377Z [156892] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9347231Z [156892] Skipping because PR was updated recently 2025-09-07T07:34:03.9348072Z ##[endgroup] 2025-09-07T07:34:03.9348743Z ##[group]Processing PR #156894 2025-09-07T07:34:03.9349341Z [156894] URL: https://github.com/pytorch/pytorch/pull/156894 2025-09-07T07:34:03.9350165Z [156894] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9350927Z [156894] Skipping because PR was updated recently 2025-09-07T07:34:03.9351763Z ##[endgroup] 2025-09-07T07:34:03.9352417Z ##[group]Processing PR #156900 2025-09-07T07:34:03.9353036Z [156900] URL: https://github.com/pytorch/pytorch/pull/156900 2025-09-07T07:34:03.9353725Z [156900] Checking whether to label PR as stale. 2025-09-07T07:34:03.9354593Z [156900] Skipping because PR was updated recently 2025-09-07T07:34:03.9355416Z ##[endgroup] 2025-09-07T07:34:03.9356077Z ##[group]Processing PR #156908 2025-09-07T07:34:03.9356705Z [156908] URL: https://github.com/pytorch/pytorch/pull/156908 2025-09-07T07:34:03.9357469Z [156908] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9358163Z [156908] Skipping because PR was updated recently 2025-09-07T07:34:03.9358974Z ##[endgroup] 2025-09-07T07:34:03.9359558Z ##[group]Processing PR #156967 2025-09-07T07:34:03.9360126Z [156967] URL: https://github.com/pytorch/pytorch/pull/156967 2025-09-07T07:34:03.9360820Z [156967] Checking whether to label PR as stale. 2025-09-07T07:34:03.9361432Z [156967] Skipping because PR was updated recently 2025-09-07T07:34:03.9362272Z ##[endgroup] 2025-09-07T07:34:03.9362959Z ##[group]Processing PR #156970 2025-09-07T07:34:03.9363952Z [156970] URL: https://github.com/pytorch/pytorch/pull/156970 2025-09-07T07:34:03.9364761Z [156970] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9365513Z [156970] Skipping because PR was updated recently 2025-09-07T07:34:03.9366359Z ##[endgroup] 2025-09-07T07:34:03.9367033Z ##[group]Processing PR #156971 2025-09-07T07:34:03.9367659Z [156971] URL: https://github.com/pytorch/pytorch/pull/156971 2025-09-07T07:34:03.9368687Z [156971] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9369431Z [156971] Skipping because PR was updated recently 2025-09-07T07:34:03.9370282Z ##[endgroup] 2025-09-07T07:34:03.9371218Z ##[group]Processing PR #156980 2025-09-07T07:34:03.9371838Z [156980] URL: https://github.com/pytorch/pytorch/pull/156980 2025-09-07T07:34:03.9372452Z [156980] Checking whether to label PR as stale. 2025-09-07T07:34:03.9373005Z [156980] Skipping because PR was updated recently 2025-09-07T07:34:03.9373846Z ##[endgroup] 2025-09-07T07:34:03.9374938Z ##[group]Processing PR #157032 2025-09-07T07:34:03.9375435Z [157032] URL: https://github.com/pytorch/pytorch/pull/157032 2025-09-07T07:34:03.9376205Z [157032] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9376940Z [157032] Skipping because PR was updated recently 2025-09-07T07:34:03.9377773Z ##[endgroup] 2025-09-07T07:34:03.9378438Z ##[group]Processing PR #157051 2025-09-07T07:34:03.9379074Z [157051] URL: https://github.com/pytorch/pytorch/pull/157051 2025-09-07T07:34:03.9379781Z [157051] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9380446Z [157051] Skipping because PR was updated recently 2025-09-07T07:34:03.9381175Z ##[endgroup] 2025-09-07T07:34:03.9381758Z ##[group]Processing PR #157106 2025-09-07T07:34:03.9382323Z [157106] URL: https://github.com/pytorch/pytorch/pull/157106 2025-09-07T07:34:03.9382944Z [157106] Checking whether to label PR as stale. 2025-09-07T07:34:03.9383528Z [157106] Skipping because PR was updated recently 2025-09-07T07:34:03.9384318Z ##[endgroup] 2025-09-07T07:34:03.9384943Z ##[group]Processing PR #157132 2025-09-07T07:34:03.9385529Z [157132] URL: https://github.com/pytorch/pytorch/pull/157132 2025-09-07T07:34:03.9386216Z [157132] Checking whether to label PR as stale. 2025-09-07T07:34:03.9386902Z [157132] Skipping because PR was updated recently 2025-09-07T07:34:03.9387664Z ##[endgroup] 2025-09-07T07:34:03.9388288Z ##[group]Processing PR #157138 2025-09-07T07:34:03.9388897Z [157138] URL: https://github.com/pytorch/pytorch/pull/157138 2025-09-07T07:34:03.9389659Z [157138] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9390375Z [157138] Skipping because PR was updated recently 2025-09-07T07:34:03.9391134Z ##[endgroup] 2025-09-07T07:34:03.9391763Z ##[group]Processing PR #157140 2025-09-07T07:34:03.9392369Z [157140] URL: https://github.com/pytorch/pytorch/pull/157140 2025-09-07T07:34:03.9393061Z [157140] Checking whether to label PR as stale. 2025-09-07T07:34:03.9393687Z [157140] Skipping because PR was updated recently 2025-09-07T07:34:03.9394516Z ##[endgroup] 2025-09-07T07:34:03.9395301Z ##[group]Processing PR #157149 2025-09-07T07:34:03.9395899Z [157149] URL: https://github.com/pytorch/pytorch/pull/157149 2025-09-07T07:34:03.9396515Z [157149] Checking whether to label PR as stale. 2025-09-07T07:34:03.9397073Z [157149] Skipping because PR was updated recently 2025-09-07T07:34:03.9397851Z ##[endgroup] 2025-09-07T07:34:03.9398438Z ##[group]Processing PR #157159 2025-09-07T07:34:03.9399001Z [157159] URL: https://github.com/pytorch/pytorch/pull/157159 2025-09-07T07:34:03.9399736Z [157159] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9400401Z [157159] Skipping because PR was updated recently 2025-09-07T07:34:03.9401141Z ##[endgroup] 2025-09-07T07:34:03.9401756Z ##[group]Processing PR #157161 2025-09-07T07:34:03.9402735Z [157161] URL: https://github.com/pytorch/pytorch/pull/157161 2025-09-07T07:34:03.9403464Z [157161] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9404143Z [157161] Skipping because PR was updated recently 2025-09-07T07:34:03.9404928Z ##[endgroup] 2025-09-07T07:34:03.9405540Z ##[group]Processing PR #157180 2025-09-07T07:34:03.9406092Z [157180] URL: https://github.com/pytorch/pytorch/pull/157180 2025-09-07T07:34:03.9406746Z [157180] Checking whether to label PR as stale. 2025-09-07T07:34:03.9407304Z [157180] Skipping because PR was updated recently 2025-09-07T07:34:03.9408067Z ##[endgroup] 2025-09-07T07:34:03.9408798Z ##[group]Processing PR #157187 2025-09-07T07:34:03.9409341Z [157187] URL: https://github.com/pytorch/pytorch/pull/157187 2025-09-07T07:34:03.9410061Z [157187] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9410688Z [157187] Skipping because PR was updated recently 2025-09-07T07:34:03.9411470Z ##[endgroup] 2025-09-07T07:34:03.9412110Z ##[group]Processing PR #157190 2025-09-07T07:34:03.9412699Z [157190] URL: https://github.com/pytorch/pytorch/pull/157190 2025-09-07T07:34:03.9414096Z [157190] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9414862Z [157190] Skipping because PR was updated recently 2025-09-07T07:34:03.9415725Z ##[endgroup] 2025-09-07T07:34:03.9416377Z ##[group]Processing PR #157192 2025-09-07T07:34:03.9417012Z [157192] URL: https://github.com/pytorch/pytorch/pull/157192 2025-09-07T07:34:03.9417812Z [157192] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9428543Z [157192] Skipping because PR was updated recently 2025-09-07T07:34:03.9429501Z ##[endgroup] 2025-09-07T07:34:03.9430177Z ##[group]Processing PR #157193 2025-09-07T07:34:03.9430822Z [157193] URL: https://github.com/pytorch/pytorch/pull/157193 2025-09-07T07:34:03.9431614Z [157193] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9432386Z [157193] Skipping because PR was updated recently 2025-09-07T07:34:03.9433230Z ##[endgroup] 2025-09-07T07:34:03.9434098Z ##[group]Processing PR #157194 2025-09-07T07:34:03.9434669Z [157194] URL: https://github.com/pytorch/pytorch/pull/157194 2025-09-07T07:34:03.9435410Z [157194] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9436067Z [157194] Skipping because PR was updated recently 2025-09-07T07:34:03.9436832Z ##[endgroup] 2025-09-07T07:34:03.9437430Z ##[group]Processing PR #157196 2025-09-07T07:34:03.9437990Z [157196] URL: https://github.com/pytorch/pytorch/pull/157196 2025-09-07T07:34:03.9438651Z [157196] Checking whether to label PR as stale. 2025-09-07T07:34:03.9439250Z [157196] Skipping because PR was updated recently 2025-09-07T07:34:03.9440006Z ##[endgroup] 2025-09-07T07:34:03.9440587Z ##[group]Processing PR #157198 2025-09-07T07:34:03.9441162Z [157198] URL: https://github.com/pytorch/pytorch/pull/157198 2025-09-07T07:34:03.9441835Z [157198] Checking whether to label PR as stale. 2025-09-07T07:34:03.9442439Z [157198] Skipping because PR was updated recently 2025-09-07T07:34:03.9443231Z ##[endgroup] 2025-09-07T07:34:03.9443821Z ##[group]Processing PR #157207 2025-09-07T07:34:03.9444392Z [157207] URL: https://github.com/pytorch/pytorch/pull/157207 2025-09-07T07:34:03.9472470Z [157207] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9473155Z [157207] Skipping because PR was updated recently 2025-09-07T07:34:03.9473962Z ##[endgroup] 2025-09-07T07:34:03.9474567Z ##[group]Processing PR #157210 2025-09-07T07:34:03.9475138Z [157210] URL: https://github.com/pytorch/pytorch/pull/157210 2025-09-07T07:34:03.9475915Z [157210] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9476614Z [157210] Skipping because PR was updated recently 2025-09-07T07:34:03.9477401Z ##[endgroup] 2025-09-07T07:34:03.9478048Z ##[group]Processing PR #157223 2025-09-07T07:34:03.9478678Z [157223] URL: https://github.com/pytorch/pytorch/pull/157223 2025-09-07T07:34:03.9479382Z [157223] Checking whether to label PR as stale. 2025-09-07T07:34:03.9480028Z [157223] Skipping because PR was updated recently 2025-09-07T07:34:03.9480844Z ##[endgroup] 2025-09-07T07:34:03.9481470Z ##[group]Processing PR #157239 2025-09-07T07:34:03.9482098Z [157239] URL: https://github.com/pytorch/pytorch/pull/157239 2025-09-07T07:34:03.9482879Z [157239] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9483630Z [157239] Skipping because PR was updated recently 2025-09-07T07:34:03.9484462Z ##[endgroup] 2025-09-07T07:34:03.9485097Z ##[group]Processing PR #157249 2025-09-07T07:34:03.9485895Z [157249] URL: https://github.com/pytorch/pytorch/pull/157249 2025-09-07T07:34:03.9486720Z [157249] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9487442Z [157249] Skipping because PR was updated recently 2025-09-07T07:34:03.9488270Z ##[endgroup] 2025-09-07T07:34:03.9488925Z ##[group]Processing PR #157262 2025-09-07T07:34:03.9489536Z [157262] URL: https://github.com/pytorch/pytorch/pull/157262 2025-09-07T07:34:03.9490237Z [157262] Checking whether to label PR as stale. 2025-09-07T07:34:03.9490874Z [157262] Skipping because PR was updated recently 2025-09-07T07:34:03.9491674Z ##[endgroup] 2025-09-07T07:34:03.9492336Z ##[group]Processing PR #157263 2025-09-07T07:34:03.9492960Z [157263] URL: https://github.com/pytorch/pytorch/pull/157263 2025-09-07T07:34:03.9493746Z [157263] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9494420Z [157263] Skipping because PR was updated recently 2025-09-07T07:34:03.9495202Z ##[endgroup] 2025-09-07T07:34:03.9495835Z ##[group]Processing PR #157264 2025-09-07T07:34:03.9496448Z [157264] URL: https://github.com/pytorch/pytorch/pull/157264 2025-09-07T07:34:03.9497148Z [157264] Checking whether to label PR as stale. 2025-09-07T07:34:03.9497764Z [157264] Skipping because PR was updated recently 2025-09-07T07:34:03.9498545Z ##[endgroup] 2025-09-07T07:34:03.9499123Z ##[group]Processing PR #157269 2025-09-07T07:34:03.9499669Z [157269] URL: https://github.com/pytorch/pytorch/pull/157269 2025-09-07T07:34:03.9500384Z [157269] Checking whether to label PR as stale. 2025-09-07T07:34:03.9501044Z [157269] Skipping because PR was updated recently 2025-09-07T07:34:03.9501796Z ##[endgroup] 2025-09-07T07:34:03.9502381Z ##[group]Processing PR #157287 2025-09-07T07:34:03.9502953Z [157287] URL: https://github.com/pytorch/pytorch/pull/157287 2025-09-07T07:34:03.9503626Z [157287] Checking whether to label PR as stale. 2025-09-07T07:34:03.9504249Z [157287] Skipping because PR was updated recently 2025-09-07T07:34:03.9505017Z ##[endgroup] 2025-09-07T07:34:03.9505624Z ##[group]Processing PR #157291 2025-09-07T07:34:03.9506181Z [157291] URL: https://github.com/pytorch/pytorch/pull/157291 2025-09-07T07:34:03.9507046Z [157291] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9507741Z [157291] Skipping because PR was updated recently 2025-09-07T07:34:03.9508496Z ##[endgroup] 2025-09-07T07:34:03.9509084Z ##[group]Processing PR #157295 2025-09-07T07:34:03.9509640Z [157295] URL: https://github.com/pytorch/pytorch/pull/157295 2025-09-07T07:34:03.9510380Z [157295] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9511039Z [157295] Skipping because PR was updated recently 2025-09-07T07:34:03.9511940Z ##[endgroup] 2025-09-07T07:34:03.9512537Z ##[group]Processing PR #157298 2025-09-07T07:34:03.9513109Z [157298] URL: https://github.com/pytorch/pytorch/pull/157298 2025-09-07T07:34:03.9513752Z [157298] Checking whether to label PR as stale. 2025-09-07T07:34:03.9514330Z [157298] Skipping because PR was updated recently 2025-09-07T07:34:03.9515114Z ##[endgroup] 2025-09-07T07:34:03.9515712Z ##[group]Processing PR #157309 2025-09-07T07:34:03.9516273Z [157309] URL: https://github.com/pytorch/pytorch/pull/157309 2025-09-07T07:34:03.9516950Z [157309] Checking whether to label PR as stale. 2025-09-07T07:34:03.9517529Z [157309] Skipping because PR was updated recently 2025-09-07T07:34:03.9518314Z ##[endgroup] 2025-09-07T07:34:03.9518926Z ##[group]Processing PR #157331 2025-09-07T07:34:03.9519455Z [157331] URL: https://github.com/pytorch/pytorch/pull/157331 2025-09-07T07:34:03.9520139Z [157331] Checking whether to label PR as stale. 2025-09-07T07:34:03.9520773Z [157331] Skipping because PR was updated recently 2025-09-07T07:34:03.9521546Z ##[endgroup] 2025-09-07T07:34:03.9522179Z ##[group]Processing PR #157333 2025-09-07T07:34:03.9522805Z [157333] URL: https://github.com/pytorch/pytorch/pull/157333 2025-09-07T07:34:03.9523612Z [157333] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9524482Z [157333] Skipping because PR was updated recently 2025-09-07T07:34:03.9525251Z ##[endgroup] 2025-09-07T07:34:03.9525856Z ##[group]Processing PR #157353 2025-09-07T07:34:03.9526407Z [157353] URL: https://github.com/pytorch/pytorch/pull/157353 2025-09-07T07:34:03.9527076Z [157353] Checking whether to label PR as stale. 2025-09-07T07:34:03.9527654Z [157353] Skipping because PR was updated recently 2025-09-07T07:34:03.9528454Z ##[endgroup] 2025-09-07T07:34:03.9529047Z ##[group]Processing PR #157356 2025-09-07T07:34:03.9529623Z [157356] URL: https://github.com/pytorch/pytorch/pull/157356 2025-09-07T07:34:03.9530313Z [157356] Checking whether to label PR as stale. 2025-09-07T07:34:03.9530934Z [157356] Skipping because PR was updated recently 2025-09-07T07:34:03.9531690Z ##[endgroup] 2025-09-07T07:34:03.9532294Z ##[group]Processing PR #157380 2025-09-07T07:34:03.9532891Z [157380] URL: https://github.com/pytorch/pytorch/pull/157380 2025-09-07T07:34:03.9533642Z [157380] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9540371Z [157380] Skipping because PR was updated recently 2025-09-07T07:34:03.9543211Z ##[endgroup] 2025-09-07T07:34:03.9543832Z ##[group]Processing PR #157389 2025-09-07T07:34:03.9544362Z [157389] URL: https://github.com/pytorch/pytorch/pull/157389 2025-09-07T07:34:03.9553124Z [157389] Checking whether to label PR as stale. 2025-09-07T07:34:03.9553722Z [157389] Skipping because PR was updated recently 2025-09-07T07:34:03.9554473Z ##[endgroup] 2025-09-07T07:34:03.9555066Z ##[group]Processing PR #157392 2025-09-07T07:34:03.9555661Z [157392] URL: https://github.com/pytorch/pytorch/pull/157392 2025-09-07T07:34:03.9556400Z [157392] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9557052Z [157392] Skipping because PR was updated recently 2025-09-07T07:34:03.9557816Z ##[endgroup] 2025-09-07T07:34:03.9559400Z ##[group]Processing PR #157411 2025-09-07T07:34:03.9559938Z [157411] URL: https://github.com/pytorch/pytorch/pull/157411 2025-09-07T07:34:03.9613349Z [157411] Checking whether to label PR as stale. 2025-09-07T07:34:03.9613973Z [157411] Skipping because PR was updated recently 2025-09-07T07:34:03.9614612Z ##[endgroup] 2025-09-07T07:34:03.9614979Z ##[group]Processing PR #157423 2025-09-07T07:34:03.9615343Z [157423] URL: https://github.com/pytorch/pytorch/pull/157423 2025-09-07T07:34:03.9615745Z [157423] Checking whether to label PR as stale. 2025-09-07T07:34:03.9616092Z [157423] Skipping because PR was updated recently 2025-09-07T07:34:03.9616557Z ##[endgroup] 2025-09-07T07:34:03.9616924Z ##[group]Processing PR #157432 2025-09-07T07:34:03.9617261Z [157432] URL: https://github.com/pytorch/pytorch/pull/157432 2025-09-07T07:34:03.9617832Z [157432] Checking whether to label PR as stale. 2025-09-07T07:34:03.9618174Z [157432] Skipping because PR was updated recently 2025-09-07T07:34:03.9618640Z ##[endgroup] 2025-09-07T07:34:03.9619012Z ##[group]Processing PR #157437 2025-09-07T07:34:03.9619364Z [157437] URL: https://github.com/pytorch/pytorch/pull/157437 2025-09-07T07:34:03.9619808Z [157437] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9620224Z [157437] Skipping because PR was updated recently 2025-09-07T07:34:03.9620682Z ##[endgroup] 2025-09-07T07:34:03.9621036Z ##[group]Processing PR #157447 2025-09-07T07:34:03.9621382Z [157447] URL: https://github.com/pytorch/pytorch/pull/157447 2025-09-07T07:34:03.9621818Z [157447] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9622232Z [157447] Skipping because PR was updated recently 2025-09-07T07:34:03.9622691Z ##[endgroup] 2025-09-07T07:34:03.9623058Z ##[group]Processing PR #157478 2025-09-07T07:34:03.9623396Z [157478] URL: https://github.com/pytorch/pytorch/pull/157478 2025-09-07T07:34:03.9623794Z [157478] Checking whether to label PR as stale. 2025-09-07T07:34:03.9624137Z [157478] Skipping because PR was updated recently 2025-09-07T07:34:03.9624596Z ##[endgroup] 2025-09-07T07:34:03.9624963Z ##[group]Processing PR #157481 2025-09-07T07:34:03.9625387Z [157481] URL: https://github.com/pytorch/pytorch/pull/157481 2025-09-07T07:34:03.9625826Z [157481] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9626238Z [157481] Skipping because PR was updated recently 2025-09-07T07:34:03.9626798Z ##[endgroup] 2025-09-07T07:34:03.9627167Z ##[group]Processing PR #157493 2025-09-07T07:34:03.9627519Z [157493] URL: https://github.com/pytorch/pytorch/pull/157493 2025-09-07T07:34:03.9627956Z [157493] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9628369Z [157493] Skipping because PR was updated recently 2025-09-07T07:34:03.9628830Z ##[endgroup] 2025-09-07T07:34:03.9629199Z ##[group]Processing PR #157499 2025-09-07T07:34:03.9629532Z [157499] URL: https://github.com/pytorch/pytorch/pull/157499 2025-09-07T07:34:03.9629978Z [157499] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9630374Z [157499] Skipping because PR was updated recently 2025-09-07T07:34:03.9630832Z ##[endgroup] 2025-09-07T07:34:03.9631200Z ##[group]Processing PR #157500 2025-09-07T07:34:03.9631534Z [157500] URL: https://github.com/pytorch/pytorch/pull/157500 2025-09-07T07:34:03.9631979Z [157500] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9632387Z [157500] Skipping because PR was updated recently 2025-09-07T07:34:03.9632830Z ##[endgroup] 2025-09-07T07:34:03.9633191Z ##[group]Processing PR #157505 2025-09-07T07:34:03.9633531Z [157505] URL: https://github.com/pytorch/pytorch/pull/157505 2025-09-07T07:34:03.9634211Z [157505] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9634623Z [157505] Skipping because PR was updated recently 2025-09-07T07:34:03.9635093Z ##[endgroup] 2025-09-07T07:34:03.9635460Z ##[group]Processing PR #157506 2025-09-07T07:34:03.9635793Z [157506] URL: https://github.com/pytorch/pytorch/pull/157506 2025-09-07T07:34:03.9636243Z [157506] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9636646Z [157506] Skipping because PR was updated recently 2025-09-07T07:34:03.9637107Z ##[endgroup] 2025-09-07T07:34:03.9637473Z ##[group]Processing PR #157511 2025-09-07T07:34:03.9637804Z [157511] URL: https://github.com/pytorch/pytorch/pull/157511 2025-09-07T07:34:03.9638254Z [157511] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9638662Z [157511] Skipping because PR was updated recently 2025-09-07T07:34:03.9639108Z ##[endgroup] 2025-09-07T07:34:03.9639472Z ##[group]Processing PR #157537 2025-09-07T07:34:03.9639816Z [157537] URL: https://github.com/pytorch/pytorch/pull/157537 2025-09-07T07:34:03.9640201Z [157537] Checking whether to label PR as stale. 2025-09-07T07:34:03.9640687Z [157537] Skipping because PR was updated recently 2025-09-07T07:34:03.9641154Z ##[endgroup] 2025-09-07T07:34:03.9641524Z ##[group]Processing PR #157553 2025-09-07T07:34:03.9641861Z [157553] URL: https://github.com/pytorch/pytorch/pull/157553 2025-09-07T07:34:03.9642264Z [157553] Checking whether to label PR as stale. 2025-09-07T07:34:03.9642611Z [157553] Skipping because PR was updated recently 2025-09-07T07:34:03.9643069Z ##[endgroup] 2025-09-07T07:34:03.9643430Z ##[group]Processing PR #157554 2025-09-07T07:34:03.9643760Z [157554] URL: https://github.com/pytorch/pytorch/pull/157554 2025-09-07T07:34:03.9644154Z [157554] Checking whether to label PR as stale. 2025-09-07T07:34:03.9644508Z [157554] Skipping because PR was updated recently 2025-09-07T07:34:03.9644951Z ##[endgroup] 2025-09-07T07:34:03.9645313Z ##[group]Processing PR #157572 2025-09-07T07:34:03.9645658Z [157572] URL: https://github.com/pytorch/pytorch/pull/157572 2025-09-07T07:34:03.9646040Z [157572] Checking whether to label PR as stale. 2025-09-07T07:34:03.9646394Z [157572] Skipping because PR was updated recently 2025-09-07T07:34:03.9646850Z ##[endgroup] 2025-09-07T07:34:03.9647202Z ##[group]Processing PR #157576 2025-09-07T07:34:03.9647545Z [157576] URL: https://github.com/pytorch/pytorch/pull/157576 2025-09-07T07:34:03.9647996Z [157576] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9648475Z [157576] Skipping because PR was updated recently 2025-09-07T07:34:03.9648940Z ##[endgroup] 2025-09-07T07:34:03.9649304Z ##[group]Processing PR #157586 2025-09-07T07:34:03.9649636Z [157586] URL: https://github.com/pytorch/pytorch/pull/157586 2025-09-07T07:34:03.9650085Z [157586] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9650482Z [157586] Skipping because PR was updated recently 2025-09-07T07:34:03.9650942Z ##[endgroup] 2025-09-07T07:34:03.9651303Z ##[group]Processing PR #157595 2025-09-07T07:34:03.9651648Z [157595] URL: https://github.com/pytorch/pytorch/pull/157595 2025-09-07T07:34:03.9652088Z [157595] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:03.9652504Z [157595] Skipping because PR was updated recently 2025-09-07T07:34:03.9652969Z ##[endgroup] 2025-09-07T07:34:03.9653320Z ##[group]Processing PR #157613 2025-09-07T07:34:03.9653662Z [157613] URL: https://github.com/pytorch/pytorch/pull/157613 2025-09-07T07:34:03.9654064Z [157613] Checking whether to label PR as stale. 2025-09-07T07:34:03.9654407Z [157613] Skipping because PR was updated recently 2025-09-07T07:34:03.9654869Z ##[endgroup] 2025-09-07T07:34:03.9655233Z ##[group]Processing PR #157620 2025-09-07T07:34:03.9655563Z [157620] URL: https://github.com/pytorch/pytorch/pull/157620 2025-09-07T07:34:03.9655959Z [157620] Checking whether to label PR as stale. 2025-09-07T07:34:03.9656302Z [157620] Skipping because PR was updated recently 2025-09-07T07:34:03.9656760Z ##[endgroup] 2025-09-07T07:34:03.9657125Z ##[group]Processing PR #157635 2025-09-07T07:34:03.9657469Z [157635] URL: https://github.com/pytorch/pytorch/pull/157635 2025-09-07T07:34:03.9657859Z [157635] Checking whether to label PR as stale. 2025-09-07T07:34:03.9658213Z [157635] Skipping because PR was updated recently 2025-09-07T07:34:03.9658677Z ##[endgroup] 2025-09-07T07:34:03.9659029Z ##[group]Processing PR #157685 2025-09-07T07:34:03.9659372Z [157685] URL: https://github.com/pytorch/pytorch/pull/157685 2025-09-07T07:34:03.9659771Z [157685] Checking whether to label PR as stale. 2025-09-07T07:34:03.9660114Z [157685] Skipping because PR was updated recently 2025-09-07T07:34:03.9660581Z ##[endgroup] 2025-09-07T07:34:03.9660949Z ##[group]Processing PR #157686 2025-09-07T07:34:03.9661283Z [157686] URL: https://github.com/pytorch/pytorch/pull/157686 2025-09-07T07:34:03.9661678Z [157686] Checking whether to label PR as stale. 2025-09-07T07:34:03.9662024Z [157686] Skipping because PR was updated recently 2025-09-07T07:34:03.9662486Z ##[endgroup] 2025-09-07T07:34:03.9662851Z ##[group]Processing PR #157687 2025-09-07T07:34:03.9663196Z [157687] URL: https://github.com/pytorch/pytorch/pull/157687 2025-09-07T07:34:03.9663659Z [157687] Checking whether to label PR as stale. 2025-09-07T07:34:03.9664018Z [157687] Skipping because PR was updated recently 2025-09-07T07:34:03.9664482Z ##[endgroup] 2025-09-07T07:34:03.9664836Z ##[group]Processing PR #157688 2025-09-07T07:34:03.9665184Z [157688] URL: https://github.com/pytorch/pytorch/pull/157688 2025-09-07T07:34:03.9665574Z [157688] Checking whether to label PR as stale. 2025-09-07T07:34:03.9665930Z [157688] Skipping because PR was updated recently 2025-09-07T07:34:03.9666390Z ##[endgroup] 2025-09-07T07:34:03.9666845Z ##[group]Processing PR #157689 2025-09-07T07:34:03.9667182Z [157689] URL: https://github.com/pytorch/pytorch/pull/157689 2025-09-07T07:34:03.9667580Z [157689] Checking whether to label PR as stale. 2025-09-07T07:34:03.9667922Z [157689] Skipping because PR was updated recently 2025-09-07T07:34:03.9668380Z ##[endgroup] 2025-09-07T07:34:03.9668742Z ##[group]Processing PR #157699 2025-09-07T07:34:03.9669091Z [157699] URL: https://github.com/pytorch/pytorch/pull/157699 2025-09-07T07:34:03.9669473Z [157699] Checking whether to label PR as stale. 2025-09-07T07:34:03.9669825Z [157699] Skipping because PR was updated recently 2025-09-07T07:34:03.9670271Z ##[endgroup] 2025-09-07T07:34:04.8169483Z ##[group]Processing PR #157712 2025-09-07T07:34:04.8170981Z [157712] URL: https://github.com/pytorch/pytorch/pull/157712 2025-09-07T07:34:04.8172265Z [157712] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:04.8173307Z [157712] Skipping because PR was updated recently 2025-09-07T07:34:04.8174781Z ##[endgroup] 2025-09-07T07:34:04.8175635Z ##[group]Processing PR #157713 2025-09-07T07:34:04.8176451Z [157713] URL: https://github.com/pytorch/pytorch/pull/157713 2025-09-07T07:34:04.8177380Z [157713] Checking whether to label PR as stale. 2025-09-07T07:34:04.8178240Z [157713] Skipping because PR was updated recently 2025-09-07T07:34:04.8180157Z ##[endgroup] 2025-09-07T07:34:04.8180906Z ##[group]Processing PR #157743 2025-09-07T07:34:04.8181486Z [157743] URL: https://github.com/pytorch/pytorch/pull/157743 2025-09-07T07:34:04.8182233Z [157743] Checking whether to label PR as stale. 2025-09-07T07:34:04.8183030Z [157743] Skipping because PR was updated recently 2025-09-07T07:34:04.8184095Z ##[endgroup] 2025-09-07T07:34:04.8184918Z ##[group]Processing PR #157748 2025-09-07T07:34:04.8185706Z [157748] URL: https://github.com/pytorch/pytorch/pull/157748 2025-09-07T07:34:04.8186710Z [157748] Checking whether to label PR as stale. 2025-09-07T07:34:04.8187500Z [157748] Skipping because PR was updated recently 2025-09-07T07:34:04.8188498Z ##[endgroup] 2025-09-07T07:34:04.8189297Z ##[group]Processing PR #157755 2025-09-07T07:34:04.8190057Z [157755] URL: https://github.com/pytorch/pytorch/pull/157755 2025-09-07T07:34:04.8191038Z [157755] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:04.8191949Z [157755] Skipping because PR was updated recently 2025-09-07T07:34:04.8192971Z ##[endgroup] 2025-09-07T07:34:04.8193787Z ##[group]Processing PR #157765 2025-09-07T07:34:04.8194526Z [157765] URL: https://github.com/pytorch/pytorch/pull/157765 2025-09-07T07:34:04.8195527Z [157765] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:04.8196432Z [157765] Skipping because PR was updated recently 2025-09-07T07:34:04.8197452Z ##[endgroup] 2025-09-07T07:34:04.8198264Z ##[group]Processing PR #157768 2025-09-07T07:34:04.8199002Z [157768] URL: https://github.com/pytorch/pytorch/pull/157768 2025-09-07T07:34:04.8199884Z [157768] Checking whether to label PR as stale. 2025-09-07T07:34:04.8200670Z [157768] Skipping because PR was updated recently 2025-09-07T07:34:04.8201666Z ##[endgroup] 2025-09-07T07:34:04.8202458Z ##[group]Processing PR #157774 2025-09-07T07:34:04.8203215Z [157774] URL: https://github.com/pytorch/pytorch/pull/157774 2025-09-07T07:34:04.8204194Z [157774] PR is labeled stale, checking whether we should close it. 2025-09-07T07:34:04.8205103Z [157774] Skipping because PR was updated recently 2025-09-07T07:34:04.8206449Z ##[endgroup] 2025-09-07T07:34:04.8207235Z ##[group]Processing PR #157782 2025-09-07T07:34:04.8207991Z [157782] URL: https://github.com/pytorch/pytorch/pull/157782 2025-09-07T07:34:04.8208884Z [157782] Checking whether to label PR as stale. 2025-09-07T07:34:04.8209656Z [157782] Skipping because PR was updated recently 2025-09-07T07:34:04.8210683Z ##[endgroup] 2025-09-07T07:34:04.8211494Z ##[group]Processing PR #157786 2025-09-07T07:34:04.8212231Z [157786] URL: https://github.com/pytorch/pytorch/pull/157786 2025-09-07T07:34:04.8213109Z [157786] Checking whether to label PR as stale. 2025-09-07T07:34:04.8213876Z [157786] Skipping because PR was updated recently 2025-09-07T07:34:04.8214932Z ##[endgroup] 2025-09-07T07:34:04.8215728Z ##[group]Processing PR #157791 2025-09-07T07:34:04.8216468Z [157791] URL: https://github.com/pytorch/pytorch/pull/157791 2025-09-07T07:34:04.8217343Z [157791] Checking whether to label PR as stale. 2025-09-07T07:34:04.8218107Z [157791] Skipping because PR was updated recently 2025-09-07T07:34:04.8219131Z ##[endgroup] 2025-09-07T07:34:04.8219937Z ##[group]Processing PR #157812 2025-09-07T07:34:04.8220701Z [157812] URL: https://github.com/pytorch/pytorch/pull/157812 2025-09-07T07:34:04.8221565Z [157812] Checking whether to label PR as stale. 2025-09-07T07:34:04.8222210Z [157812] Skipping because PR was updated recently 2025-09-07T07:34:04.8223040Z ##[endgroup] 2025-09-07T07:34:04.8223668Z ##[group]Processing PR #157813 2025-09-07T07:34:04.8224311Z [157813] URL: https://github.com/pytorch/pytorch/pull/157813 2025-09-07T07:34:04.8225040Z [157813] Checking whether to label PR as stale. 2025-09-07T07:34:04.8225624Z [157813] Skipping because PR was updated recently 2025-09-07T07:34:04.8226425Z ##[endgroup] 2025-09-07T07:34:04.8227336Z ##[group]Processing PR #157814 2025-09-07T07:34:04.8228085Z [157814] URL: https://github.com/pytorch/pytorch/pull/157814 2025-09-07T07:34:04.8228983Z [157814] Checking whether to label PR as stale. 2025-09-07T07:34:04.8229776Z [157814] Skipping because PR was updated recently 2025-09-07T07:34:04.8230795Z ##[endgroup] 2025-09-07T07:34:04.8231584Z ##[group]Processing PR #157815 2025-09-07T07:34:04.8232337Z [157815] URL: https://github.com/pytorch/pytorch/pull/157815 2025-09-07T07:34:04.8233198Z [157815] Checking whether to label PR as stale. 2025-09-07T07:34:04.8265471Z [157815] Skipping because PR was updated recently 2025-09-07T07:34:04.8266804Z ##[endgroup] 2025-09-07T07:34:04.8267642Z ##[group]Processing PR #157854 2025-09-07T07:34:04.8268458Z [157854] URL: https://github.com/pytorch/pytorch/pull/157854 2025-09-07T07:34:04.8269374Z [157854] Checking whether to label PR as stale. 2025-09-07T07:34:04.8270197Z [157854] Skipping because PR was updated recently 2025-09-07T07:34:04.8271259Z ##[endgroup] 2025-09-07T07:34:04.8272072Z ##[group]Processing PR #157859 2025-09-07T07:34:04.8272822Z [157859] URL: https://github.com/pytorch/pytorch/pull/157859 2025-09-07T07:34:04.8274039Z [157859] Checking whether to label PR as stale. 2025-09-07T07:34:04.8274836Z [157859] Skipping because PR was updated recently 2025-09-07T07:34:04.8275868Z ##[endgroup] 2025-09-07T07:34:04.8276670Z ##[group]Processing PR #157864 2025-09-07T07:34:04.8277322Z [157864] URL: https://github.com/pytorch/pytorch/pull/157864 2025-09-07T07:34:04.8277945Z [157864] Checking whether to label PR as stale. 2025-09-07T07:34:04.8278622Z [157864] Skipping because PR was updated recently 2025-09-07T07:34:04.8279468Z ##[endgroup] 2025-09-07T07:34:04.8280099Z ##[group]Processing PR #157902 2025-09-07T07:34:04.8280678Z [157902] URL: https://github.com/pytorch/pytorch/pull/157902 2025-09-07T07:34:04.8281555Z [157902] Checking whether to label PR as stale. 2025-09-07T07:34:04.8282364Z [157902] Skipping because PR was updated recently 2025-09-07T07:34:04.8283426Z ##[endgroup] 2025-09-07T07:34:04.8284255Z ##[group]Processing PR #157910 2025-09-07T07:34:04.8285025Z [157910] URL: https://github.com/pytorch/pytorch/pull/157910 2025-09-07T07:34:04.8285924Z [157910] Checking whether to label PR as stale. 2025-09-07T07:34:04.8287011Z [157910] Skipping because PR was updated recently 2025-09-07T07:34:04.8288061Z ##[endgroup] 2025-09-07T07:34:04.8288880Z ##[group]Processing PR #157928 2025-09-07T07:34:04.8289646Z [157928] URL: https://github.com/pytorch/pytorch/pull/157928 2025-09-07T07:34:04.8290556Z [157928] Checking whether to label PR as stale. 2025-09-07T07:34:04.8291351Z [157928] Skipping because PR was updated recently 2025-09-07T07:34:04.8292390Z ##[endgroup] 2025-09-07T07:34:04.8293202Z ##[group]Processing PR #157932 2025-09-07T07:34:04.8293980Z [157932] URL: https://github.com/pytorch/pytorch/pull/157932 2025-09-07T07:34:04.8294862Z [157932] Checking whether to label PR as stale. 2025-09-07T07:34:04.8295674Z [157932] Skipping because PR was updated recently 2025-09-07T07:34:04.8296711Z ##[endgroup] 2025-09-07T07:34:04.8297502Z ##[group]Processing PR #157941 2025-09-07T07:34:04.8298279Z [157941] URL: https://github.com/pytorch/pytorch/pull/157941 2025-09-07T07:34:04.8299178Z [157941] Checking whether to label PR as stale. 2025-09-07T07:34:04.8299970Z [157941] Skipping because PR was updated recently 2025-09-07T07:34:04.8301005Z ##[endgroup] 2025-09-07T07:34:04.8301825Z ##[group]Processing PR #157954 2025-09-07T07:34:04.8302585Z [157954] URL: https://github.com/pytorch/pytorch/pull/157954 2025-09-07T07:34:04.8303487Z [157954] Checking whether to label PR as stale. 2025-09-07T07:34:04.8304442Z [157954] Skipping because PR was updated recently 2025-09-07T07:34:04.8305485Z ##[endgroup] 2025-09-07T07:34:04.8306309Z ##[group]Processing PR #157962 2025-09-07T07:34:04.8307191Z [157962] URL: https://github.com/pytorch/pytorch/pull/157962 2025-09-07T07:34:04.8308077Z [157962] Checking whether to label PR as stale. 2025-09-07T07:34:04.8308887Z [157962] Skipping because PR was updated recently 2025-09-07T07:34:04.8309931Z ##[endgroup] 2025-09-07T07:34:04.8310717Z ##[group]Processing PR #157963 2025-09-07T07:34:04.8311493Z [157963] URL: https://github.com/pytorch/pytorch/pull/157963 2025-09-07T07:34:04.8312385Z [157963] Checking whether to label PR as stale. 2025-09-07T07:34:04.8313188Z [157963] Skipping because PR was updated recently 2025-09-07T07:34:04.8314230Z ##[endgroup] 2025-09-07T07:34:04.8315040Z ##[group]Processing PR #157967 2025-09-07T07:34:04.8315803Z [157967] URL: https://github.com/pytorch/pytorch/pull/157967 2025-09-07T07:34:04.8316707Z [157967] Checking whether to label PR as stale. 2025-09-07T07:34:04.8317504Z [157967] Skipping because PR was updated recently 2025-09-07T07:34:04.8318544Z ##[endgroup] 2025-09-07T07:34:04.8319355Z ##[group]Processing PR #157970 2025-09-07T07:34:04.8320136Z [157970] URL: https://github.com/pytorch/pytorch/pull/157970 2025-09-07T07:34:04.8320882Z [157970] Checking whether to label PR as stale. 2025-09-07T07:34:04.8321477Z [157970] Skipping because PR was updated recently 2025-09-07T07:34:04.8322313Z ##[endgroup] 2025-09-07T07:34:04.8323002Z ##[group]Processing PR #157982 2025-09-07T07:34:04.8323576Z [157982] URL: https://github.com/pytorch/pytorch/pull/157982 2025-09-07T07:34:04.8324244Z [157982] Checking whether to label PR as stale. 2025-09-07T07:34:04.8324994Z [157982] Skipping because PR was updated recently 2025-09-07T07:34:04.8326050Z ##[endgroup] 2025-09-07T07:34:04.8326871Z ##[group]Processing PR #157994 2025-09-07T07:34:04.8327636Z [157994] URL: https://github.com/pytorch/pytorch/pull/157994 2025-09-07T07:34:04.8328549Z [157994] Checking whether to label PR as stale. 2025-09-07T07:34:04.8329340Z [157994] Skipping because PR was updated recently 2025-09-07T07:34:04.8330387Z ##[endgroup] 2025-09-07T07:34:04.8331197Z ##[group]Processing PR #158004 2025-09-07T07:34:04.8331965Z [158004] URL: https://github.com/pytorch/pytorch/pull/158004 2025-09-07T07:34:04.8332870Z [158004] Checking whether to label PR as stale. 2025-09-07T07:34:04.8333669Z [158004] Skipping because PR was updated recently 2025-09-07T07:34:04.8334839Z ##[endgroup] 2025-09-07T07:34:04.8335634Z ##[group]Processing PR #158017 2025-09-07T07:34:04.8336395Z [158017] URL: https://github.com/pytorch/pytorch/pull/158017 2025-09-07T07:34:04.8337493Z [158017] Checking whether to label PR as stale. 2025-09-07T07:34:04.8338274Z [158017] Skipping because PR was updated recently 2025-09-07T07:34:04.8339295Z ##[endgroup] 2025-09-07T07:34:04.8340100Z ##[group]Processing PR #158018 2025-09-07T07:34:04.8340841Z [158018] URL: https://github.com/pytorch/pytorch/pull/158018 2025-09-07T07:34:04.8341737Z [158018] Checking whether to label PR as stale. 2025-09-07T07:34:04.8342503Z [158018] Skipping because PR was updated recently 2025-09-07T07:34:04.8343522Z ##[endgroup] 2025-09-07T07:34:04.8344316Z ##[group]Processing PR #158020 2025-09-07T07:34:04.8345055Z [158020] URL: https://github.com/pytorch/pytorch/pull/158020 2025-09-07T07:34:04.8345930Z [158020] Checking whether to label PR as stale. 2025-09-07T07:34:04.8346753Z [158020] Skipping because PR was updated recently 2025-09-07T07:34:04.8347765Z ##[endgroup] 2025-09-07T07:34:04.8348561Z ##[group]Processing PR #158047 2025-09-07T07:34:04.8349328Z [158047] URL: https://github.com/pytorch/pytorch/pull/158047 2025-09-07T07:34:04.8350204Z [158047] Checking whether to label PR as stale. 2025-09-07T07:34:04.8350988Z [158047] Skipping because PR was updated recently 2025-09-07T07:34:04.8352009Z ##[endgroup] 2025-09-07T07:34:04.8352786Z ##[group]Processing PR #158061 2025-09-07T07:34:04.8353549Z [158061] URL: https://github.com/pytorch/pytorch/pull/158061 2025-09-07T07:34:04.8354590Z [158061] Checking whether to label PR as stale. 2025-09-07T07:34:04.8355361Z [158061] Skipping because PR was updated recently 2025-09-07T07:34:04.8356376Z ##[endgroup] 2025-09-07T07:34:04.8357178Z ##[group]Processing PR #158091 2025-09-07T07:34:04.8357925Z [158091] URL: https://github.com/pytorch/pytorch/pull/158091 2025-09-07T07:34:04.8358806Z [158091] Checking whether to label PR as stale. 2025-09-07T07:34:04.8359577Z [158091] Skipping because PR was updated recently 2025-09-07T07:34:04.8360594Z ##[endgroup] 2025-09-07T07:34:04.8361395Z ##[group]Processing PR #158097 2025-09-07T07:34:04.8362170Z [158097] URL: https://github.com/pytorch/pytorch/pull/158097 2025-09-07T07:34:04.8363038Z [158097] Checking whether to label PR as stale. 2025-09-07T07:34:04.8363822Z [158097] Skipping because PR was updated recently 2025-09-07T07:34:04.8364659Z ##[endgroup] 2025-09-07T07:34:04.8365270Z ##[group]Processing PR #158098 2025-09-07T07:34:04.8365912Z [158098] URL: https://github.com/pytorch/pytorch/pull/158098 2025-09-07T07:34:04.8366657Z [158098] Checking whether to label PR as stale. 2025-09-07T07:34:04.8367260Z [158098] Skipping because PR was updated recently 2025-09-07T07:34:04.8368150Z ##[endgroup] 2025-09-07T07:34:04.8368970Z ##[group]Processing PR #158104 2025-09-07T07:34:04.8369736Z [158104] URL: https://github.com/pytorch/pytorch/pull/158104 2025-09-07T07:34:04.8370642Z [158104] Checking whether to label PR as stale. 2025-09-07T07:34:04.8371433Z [158104] Skipping because PR was updated recently 2025-09-07T07:34:04.8372485Z ##[endgroup] 2025-09-07T07:34:04.8373313Z ##[group]Processing PR #158119 2025-09-07T07:34:04.8374111Z [158119] URL: https://github.com/pytorch/pytorch/pull/158119 2025-09-07T07:34:04.8374999Z [158119] Checking whether to label PR as stale. 2025-09-07T07:34:04.8375807Z [158119] Skipping because PR was updated recently 2025-09-07T07:34:04.8376829Z ##[endgroup] 2025-09-07T07:34:04.8377646Z ##[group]Processing PR #158124 2025-09-07T07:34:04.8378434Z [158124] URL: https://github.com/pytorch/pytorch/pull/158124 2025-09-07T07:34:04.8379322Z [158124] Checking whether to label PR as stale. 2025-09-07T07:34:04.8380129Z [158124] Skipping because PR was updated recently 2025-09-07T07:34:04.8381181Z ##[endgroup] 2025-09-07T07:34:04.8381993Z ##[group]Processing PR #158133 2025-09-07T07:34:04.8382759Z [158133] URL: https://github.com/pytorch/pytorch/pull/158133 2025-09-07T07:34:04.8383679Z [158133] Checking whether to label PR as stale. 2025-09-07T07:34:04.8384458Z [158133] Skipping because PR was updated recently 2025-09-07T07:34:04.8385508Z ##[endgroup] 2025-09-07T07:34:04.8386328Z ##[group]Processing PR #158137 2025-09-07T07:34:04.8387352Z [158137] URL: https://github.com/pytorch/pytorch/pull/158137 2025-09-07T07:34:04.8388258Z [158137] Checking whether to label PR as stale. 2025-09-07T07:34:04.8389068Z [158137] Skipping because PR was updated recently 2025-09-07T07:34:04.8390094Z ##[endgroup] 2025-09-07T07:34:04.8391053Z ##[group]Processing PR #158144 2025-09-07T07:34:04.8391846Z [158144] URL: https://github.com/pytorch/pytorch/pull/158144 2025-09-07T07:34:04.8392731Z [158144] Checking whether to label PR as stale. 2025-09-07T07:34:04.8393546Z [158144] Skipping because PR was updated recently 2025-09-07T07:34:04.8394596Z ##[endgroup] 2025-09-07T07:34:04.8395414Z ##[group]Processing PR #158145 2025-09-07T07:34:04.8396177Z [158145] URL: https://github.com/pytorch/pytorch/pull/158145 2025-09-07T07:34:04.8397079Z [158145] Checking whether to label PR as stale. 2025-09-07T07:34:04.8397860Z [158145] Skipping because PR was updated recently 2025-09-07T07:34:04.8398907Z ##[endgroup] 2025-09-07T07:34:04.8399734Z ##[group]Processing PR #158151 2025-09-07T07:34:04.8400495Z [158151] URL: https://github.com/pytorch/pytorch/pull/158151 2025-09-07T07:34:04.8401395Z [158151] Checking whether to label PR as stale. 2025-09-07T07:34:04.8402203Z [158151] Skipping because PR was updated recently 2025-09-07T07:34:04.8403220Z ##[endgroup] 2025-09-07T07:34:04.8404029Z ##[group]Processing PR #158188 2025-09-07T07:34:04.8404928Z [158188] URL: https://github.com/pytorch/pytorch/pull/158188 2025-09-07T07:34:04.8405817Z [158188] Checking whether to label PR as stale. 2025-09-07T07:34:04.8406629Z [158188] Skipping because PR was updated recently 2025-09-07T07:34:04.8407667Z ##[endgroup] 2025-09-07T07:34:04.8408217Z ##[group]Processing PR #158195 2025-09-07T07:34:04.8408841Z [158195] URL: https://github.com/pytorch/pytorch/pull/158195 2025-09-07T07:34:04.8409593Z [158195] Checking whether to label PR as stale. 2025-09-07T07:34:04.8410227Z [158195] Skipping because PR was updated recently 2025-09-07T07:34:04.8411135Z ##[endgroup] 2025-09-07T07:34:04.8411967Z ##[group]Processing PR #158196 2025-09-07T07:34:04.8412730Z [158196] URL: https://github.com/pytorch/pytorch/pull/158196 2025-09-07T07:34:04.8413638Z [158196] Checking whether to label PR as stale. 2025-09-07T07:34:04.8414428Z [158196] Skipping because PR was updated recently 2025-09-07T07:34:04.8415471Z ##[endgroup] 2025-09-07T07:34:04.8416284Z ##[group]Processing PR #158197 2025-09-07T07:34:04.8417080Z [158197] URL: https://github.com/pytorch/pytorch/pull/158197 2025-09-07T07:34:04.8417936Z [158197] Checking whether to label PR as stale. 2025-09-07T07:34:04.8418651Z [158197] Skipping because PR was updated recently 2025-09-07T07:34:04.8419697Z ##[endgroup] 2025-09-07T07:34:04.8420503Z ##[group]Processing PR #158202 2025-09-07T07:34:04.8421288Z [158202] URL: https://github.com/pytorch/pytorch/pull/158202 2025-09-07T07:34:04.8422186Z [158202] Checking whether to label PR as stale. 2025-09-07T07:34:04.8422973Z [158202] Skipping because PR was updated recently 2025-09-07T07:34:04.8424021Z ##[endgroup] 2025-09-07T07:34:04.8424840Z ##[group]Processing PR #158211 2025-09-07T07:34:04.8425604Z [158211] URL: https://github.com/pytorch/pytorch/pull/158211 2025-09-07T07:34:04.8426858Z [158211] Checking whether to label PR as stale. 2025-09-07T07:34:04.8427656Z [158211] Skipping because PR was updated recently 2025-09-07T07:34:04.8428667Z ##[endgroup] 2025-09-07T07:34:04.8429381Z ##[group]Processing PR #158218 2025-09-07T07:34:04.8430168Z [158218] URL: https://github.com/pytorch/pytorch/pull/158218 2025-09-07T07:34:04.8431056Z [158218] Checking whether to label PR as stale. 2025-09-07T07:34:04.8431861Z [158218] Skipping because PR was updated recently 2025-09-07T07:34:04.8432906Z ##[endgroup] 2025-09-07T07:34:04.8433697Z ##[group]Processing PR #158219 2025-09-07T07:34:04.8434699Z [158219] URL: https://github.com/pytorch/pytorch/pull/158219 2025-09-07T07:34:04.8435563Z [158219] Checking whether to label PR as stale. 2025-09-07T07:34:04.8436350Z [158219] Skipping because PR was updated recently 2025-09-07T07:34:04.8437644Z ##[endgroup] 2025-09-07T07:34:04.8438449Z ##[group]Processing PR #158220 2025-09-07T07:34:04.8439187Z [158220] URL: https://github.com/pytorch/pytorch/pull/158220 2025-09-07T07:34:04.8440057Z [158220] Checking whether to label PR as stale. 2025-09-07T07:34:04.8440821Z [158220] Skipping because PR was updated recently 2025-09-07T07:34:04.8441836Z ##[endgroup] 2025-09-07T07:34:04.8442647Z ##[group]Processing PR #158224 2025-09-07T07:34:04.8443407Z [158224] URL: https://github.com/pytorch/pytorch/pull/158224 2025-09-07T07:34:04.8444262Z [158224] Checking whether to label PR as stale. 2025-09-07T07:34:04.8445041Z [158224] Skipping because PR was updated recently 2025-09-07T07:34:04.8446040Z ##[endgroup] 2025-09-07T07:34:04.8446827Z ##[group]Processing PR #158241 2025-09-07T07:34:04.8447586Z [158241] URL: https://github.com/pytorch/pytorch/pull/158241 2025-09-07T07:34:04.8448456Z [158241] Checking whether to label PR as stale. 2025-09-07T07:34:04.8449242Z [158241] Skipping because PR was updated recently 2025-09-07T07:34:04.8450256Z ##[endgroup] 2025-09-07T07:34:04.8451044Z ##[group]Processing PR #158247 2025-09-07T07:34:04.8451558Z [158247] URL: https://github.com/pytorch/pytorch/pull/158247 2025-09-07T07:34:04.8452296Z [158247] Checking whether to label PR as stale. 2025-09-07T07:34:04.8452947Z [158247] Skipping because PR was updated recently 2025-09-07T07:34:04.8453701Z ##[endgroup] 2025-09-07T07:34:04.8454190Z ##[group]Processing PR #158250 2025-09-07T07:34:04.8454531Z [158250] URL: https://github.com/pytorch/pytorch/pull/158250 2025-09-07T07:34:04.8454934Z [158250] Checking whether to label PR as stale. 2025-09-07T07:34:04.8455292Z [158250] Skipping because PR was updated recently 2025-09-07T07:34:04.8455744Z ##[endgroup] 2025-09-07T07:34:04.8456119Z ##[group]Processing PR #158284 2025-09-07T07:34:04.8456463Z [158284] URL: https://github.com/pytorch/pytorch/pull/158284 2025-09-07T07:34:04.8456846Z [158284] Checking whether to label PR as stale. 2025-09-07T07:34:04.8457196Z [158284] Skipping because PR was updated recently 2025-09-07T07:34:04.8457658Z ##[endgroup] 2025-09-07T07:34:04.8458021Z ##[group]Processing PR #158302 2025-09-07T07:34:04.8458352Z [158302] URL: https://github.com/pytorch/pytorch/pull/158302 2025-09-07T07:34:04.8458746Z [158302] Checking whether to label PR as stale. 2025-09-07T07:34:04.8459085Z [158302] Skipping because PR was updated recently 2025-09-07T07:34:04.8459542Z ##[endgroup] 2025-09-07T07:34:04.8459907Z ##[group]Processing PR #158309 2025-09-07T07:34:04.8460242Z [158309] URL: https://github.com/pytorch/pytorch/pull/158309 2025-09-07T07:34:04.8460634Z [158309] Checking whether to label PR as stale. 2025-09-07T07:34:04.8460973Z [158309] Skipping because PR was updated recently 2025-09-07T07:34:04.8461431Z ##[endgroup] 2025-09-07T07:34:04.8461794Z ##[group]Processing PR #158321 2025-09-07T07:34:04.8462137Z [158321] URL: https://github.com/pytorch/pytorch/pull/158321 2025-09-07T07:34:04.8462517Z [158321] Checking whether to label PR as stale. 2025-09-07T07:34:04.8462866Z [158321] Skipping because PR was updated recently 2025-09-07T07:34:04.8463324Z ##[endgroup] 2025-09-07T07:34:04.8463676Z ##[group]Processing PR #158336 2025-09-07T07:34:04.8464021Z [158336] URL: https://github.com/pytorch/pytorch/pull/158336 2025-09-07T07:34:04.8464413Z [158336] Checking whether to label PR as stale. 2025-09-07T07:34:04.8464753Z [158336] Skipping because PR was updated recently 2025-09-07T07:34:04.8465213Z ##[endgroup] 2025-09-07T07:34:04.8465575Z ##[group]Processing PR #158342 2025-09-07T07:34:04.8465908Z [158342] URL: https://github.com/pytorch/pytorch/pull/158342 2025-09-07T07:34:04.8466304Z [158342] Checking whether to label PR as stale. 2025-09-07T07:34:04.8466750Z [158342] Skipping because PR was updated recently 2025-09-07T07:34:04.8467215Z ##[endgroup] 2025-09-07T07:34:04.8467579Z ##[group]Processing PR #158356 2025-09-07T07:34:04.8467925Z [158356] URL: https://github.com/pytorch/pytorch/pull/158356 2025-09-07T07:34:04.8468310Z [158356] Checking whether to label PR as stale. 2025-09-07T07:34:04.8468761Z [158356] Skipping because PR was updated recently 2025-09-07T07:34:04.8469220Z ##[endgroup] 2025-09-07T07:34:04.8469575Z ##[group]Processing PR #158361 2025-09-07T07:34:04.8469923Z [158361] URL: https://github.com/pytorch/pytorch/pull/158361 2025-09-07T07:34:04.8470309Z [158361] Checking whether to label PR as stale. 2025-09-07T07:34:04.8470673Z [158361] Skipping because PR was updated recently 2025-09-07T07:34:04.8471137Z ##[endgroup] 2025-09-07T07:34:04.8471501Z ##[group]Processing PR #158373 2025-09-07T07:34:04.8471835Z [158373] URL: https://github.com/pytorch/pytorch/pull/158373 2025-09-07T07:34:04.8472231Z [158373] Checking whether to label PR as stale. 2025-09-07T07:34:04.8472573Z [158373] Skipping because PR was updated recently 2025-09-07T07:34:04.8473030Z ##[endgroup] 2025-09-07T07:34:04.8473391Z ##[group]Processing PR #158378 2025-09-07T07:34:04.8473734Z [158378] URL: https://github.com/pytorch/pytorch/pull/158378 2025-09-07T07:34:04.8474115Z [158378] Checking whether to label PR as stale. 2025-09-07T07:34:04.8474470Z [158378] Skipping because PR was updated recently 2025-09-07T07:34:04.8474917Z ##[endgroup] 2025-09-07T07:34:04.8475279Z ##[group]Processing PR #158391 2025-09-07T07:34:04.8475622Z [158391] URL: https://github.com/pytorch/pytorch/pull/158391 2025-09-07T07:34:04.8476003Z [158391] Checking whether to label PR as stale. 2025-09-07T07:34:04.8476412Z [158391] Skipping because PR was updated recently 2025-09-07T07:34:04.8476873Z ##[endgroup] 2025-09-07T07:34:04.8477234Z ##[group]Processing PR #158404 2025-09-07T07:34:04.8477565Z [158404] URL: https://github.com/pytorch/pytorch/pull/158404 2025-09-07T07:34:04.8477957Z [158404] Checking whether to label PR as stale. 2025-09-07T07:34:04.8478298Z [158404] Skipping because PR was updated recently 2025-09-07T07:34:04.8478752Z ##[endgroup] 2025-09-07T07:34:04.8479112Z ##[group]Processing PR #158405 2025-09-07T07:34:04.8479443Z [158405] URL: https://github.com/pytorch/pytorch/pull/158405 2025-09-07T07:34:04.8479837Z [158405] Checking whether to label PR as stale. 2025-09-07T07:34:04.8480197Z [158405] Skipping because PR was updated recently 2025-09-07T07:34:04.8480639Z ##[endgroup] 2025-09-07T07:34:04.8481003Z ##[group]Processing PR #158409 2025-09-07T07:34:04.8481346Z [158409] URL: https://github.com/pytorch/pytorch/pull/158409 2025-09-07T07:34:04.8481732Z [158409] Checking whether to label PR as stale. 2025-09-07T07:34:04.8482094Z [158409] Skipping because PR was updated recently 2025-09-07T07:34:04.8482561Z ##[endgroup] 2025-09-07T07:34:04.8482925Z ##[group]Processing PR #158426 2025-09-07T07:34:04.8483258Z [158426] URL: https://github.com/pytorch/pytorch/pull/158426 2025-09-07T07:34:04.8483654Z [158426] Checking whether to label PR as stale. 2025-09-07T07:34:04.8483995Z [158426] Skipping because PR was updated recently 2025-09-07T07:34:04.8484450Z ##[endgroup] 2025-09-07T07:34:04.8484817Z ##[group]Processing PR #158434 2025-09-07T07:34:04.8485148Z [158434] URL: https://github.com/pytorch/pytorch/pull/158434 2025-09-07T07:34:04.8485550Z [158434] Checking whether to label PR as stale. 2025-09-07T07:34:04.8485918Z [158434] Skipping because PR was updated recently 2025-09-07T07:34:04.8486365Z ##[endgroup] 2025-09-07T07:34:04.8486729Z ##[group]Processing PR #158439 2025-09-07T07:34:04.8487075Z [158439] URL: https://github.com/pytorch/pytorch/pull/158439 2025-09-07T07:34:04.8487457Z [158439] Checking whether to label PR as stale. 2025-09-07T07:34:04.8487813Z [158439] Skipping because PR was updated recently 2025-09-07T07:34:04.8488269Z ##[endgroup] 2025-09-07T07:34:04.8488629Z ##[group]Processing PR #158468 2025-09-07T07:34:04.8488979Z [158468] URL: https://github.com/pytorch/pytorch/pull/158468 2025-09-07T07:34:04.8489376Z [158468] Checking whether to label PR as stale. 2025-09-07T07:34:04.8489714Z [158468] Skipping because PR was updated recently 2025-09-07T07:34:04.8490169Z ##[endgroup] 2025-09-07T07:34:04.8490536Z ##[group]Processing PR #158470 2025-09-07T07:34:04.8490868Z [158470] URL: https://github.com/pytorch/pytorch/pull/158470 2025-09-07T07:34:04.8491339Z [158470] Checking whether to label PR as stale. 2025-09-07T07:34:04.8491681Z [158470] Skipping because PR was updated recently 2025-09-07T07:34:04.8492139Z ##[endgroup] 2025-09-07T07:34:04.8492501Z ##[group]Processing PR #158474 2025-09-07T07:34:04.8492850Z [158474] URL: https://github.com/pytorch/pytorch/pull/158474 2025-09-07T07:34:04.8493242Z [158474] Checking whether to label PR as stale. 2025-09-07T07:34:04.8493598Z [158474] Skipping because PR was updated recently 2025-09-07T07:34:04.8494049Z ##[endgroup] 2025-09-07T07:34:04.8494395Z ##[group]Processing PR #158476 2025-09-07T07:34:04.8494739Z [158476] URL: https://github.com/pytorch/pytorch/pull/158476 2025-09-07T07:34:04.8495121Z [158476] Checking whether to label PR as stale. 2025-09-07T07:34:04.8495470Z [158476] Skipping because PR was updated recently 2025-09-07T07:34:04.8495922Z ##[endgroup] 2025-09-07T07:34:04.8496283Z ##[group]Processing PR #158493 2025-09-07T07:34:04.8496613Z [158493] URL: https://github.com/pytorch/pytorch/pull/158493 2025-09-07T07:34:04.8497013Z [158493] Checking whether to label PR as stale. 2025-09-07T07:34:04.8497351Z [158493] Skipping because PR was updated recently 2025-09-07T07:34:04.8497812Z ##[endgroup] 2025-09-07T07:34:04.8498177Z ##[group]Processing PR #158498 2025-09-07T07:34:04.8498523Z [158498] URL: https://github.com/pytorch/pytorch/pull/158498 2025-09-07T07:34:04.8498965Z [158498] Checking whether to label PR as stale. 2025-09-07T07:34:04.8499320Z [158498] Skipping because PR was updated recently 2025-09-07T07:34:04.8499763Z ##[endgroup] 2025-09-07T07:34:04.8500129Z ##[group]Processing PR #158499 2025-09-07T07:34:04.8500478Z [158499] URL: https://github.com/pytorch/pytorch/pull/158499 2025-09-07T07:34:04.8500862Z [158499] Checking whether to label PR as stale. 2025-09-07T07:34:04.8501213Z [158499] Skipping because PR was updated recently 2025-09-07T07:34:04.8501671Z ##[endgroup] 2025-09-07T07:34:04.8502036Z ##[group]Processing PR #158500 2025-09-07T07:34:04.8502369Z [158500] URL: https://github.com/pytorch/pytorch/pull/158500 2025-09-07T07:34:04.8502768Z [158500] Checking whether to label PR as stale. 2025-09-07T07:34:04.8503110Z [158500] Skipping because PR was updated recently 2025-09-07T07:34:04.8503568Z ##[endgroup] 2025-09-07T07:34:04.8503932Z ##[group]Processing PR #158502 2025-09-07T07:34:04.8504264Z [158502] URL: https://github.com/pytorch/pytorch/pull/158502 2025-09-07T07:34:04.8504662Z [158502] Checking whether to label PR as stale. 2025-09-07T07:34:04.8505014Z [158502] Skipping because PR was updated recently 2025-09-07T07:34:04.8505457Z ##[endgroup] 2025-09-07T07:34:04.8505817Z ##[group]Processing PR #158503 2025-09-07T07:34:04.8506159Z [158503] URL: https://github.com/pytorch/pytorch/pull/158503 2025-09-07T07:34:04.8506540Z [158503] Checking whether to label PR as stale. 2025-09-07T07:34:04.8506986Z [158503] Skipping because PR was updated recently 2025-09-07T07:34:04.8507447Z ##[endgroup] 2025-09-07T07:34:04.8507809Z ##[group]Processing PR #158505 2025-09-07T07:34:04.8508141Z [158505] URL: https://github.com/pytorch/pytorch/pull/158505 2025-09-07T07:34:04.8508540Z [158505] Checking whether to label PR as stale. 2025-09-07T07:34:04.8508879Z [158505] Skipping because PR was updated recently 2025-09-07T07:34:04.8509334Z ##[endgroup] 2025-09-07T07:34:04.8509695Z ##[group]Processing PR #158507 2025-09-07T07:34:04.8510026Z [158507] URL: https://github.com/pytorch/pytorch/pull/158507 2025-09-07T07:34:04.8510422Z [158507] Checking whether to label PR as stale. 2025-09-07T07:34:04.8510774Z [158507] Skipping because PR was updated recently 2025-09-07T07:34:04.8511216Z ##[endgroup] 2025-09-07T07:34:04.8511583Z ##[group]Processing PR #158522 2025-09-07T07:34:04.8511928Z [158522] URL: https://github.com/pytorch/pytorch/pull/158522 2025-09-07T07:34:04.8512311Z [158522] Checking whether to label PR as stale. 2025-09-07T07:34:04.8512660Z [158522] Skipping because PR was updated recently 2025-09-07T07:34:04.8513118Z ##[endgroup] 2025-09-07T07:34:04.8513468Z ##[group]Processing PR #158525 2025-09-07T07:34:04.8513886Z [158525] URL: https://github.com/pytorch/pytorch/pull/158525 2025-09-07T07:34:04.8514286Z [158525] Checking whether to label PR as stale. 2025-09-07T07:34:04.8514627Z [158525] Skipping because PR was updated recently 2025-09-07T07:34:04.8515085Z ##[endgroup] 2025-09-07T07:34:04.8515446Z ##[group]Processing PR #158526 2025-09-07T07:34:04.8524330Z [158526] URL: https://github.com/pytorch/pytorch/pull/158526 2025-09-07T07:34:04.8524754Z [158526] Checking whether to label PR as stale. 2025-09-07T07:34:04.8525130Z [158526] Skipping because PR was updated recently 2025-09-07T07:34:04.8525638Z ##[endgroup] 2025-09-07T07:34:04.8526012Z ##[group]Processing PR #158527 2025-09-07T07:34:04.8526369Z [158527] URL: https://github.com/pytorch/pytorch/pull/158527 2025-09-07T07:34:04.8526903Z [158527] Checking whether to label PR as stale. 2025-09-07T07:34:04.8527266Z [158527] Skipping because PR was updated recently 2025-09-07T07:34:04.8527738Z ##[endgroup] 2025-09-07T07:34:04.8528113Z ##[group]Processing PR #158532 2025-09-07T07:34:04.8528459Z [158532] URL: https://github.com/pytorch/pytorch/pull/158532 2025-09-07T07:34:04.8528864Z [158532] Checking whether to label PR as stale. 2025-09-07T07:34:04.8529207Z [158532] Skipping because PR was updated recently 2025-09-07T07:34:04.8529672Z ##[endgroup] 2025-09-07T07:34:04.8530046Z ##[group]Processing PR #158539 2025-09-07T07:34:04.8530505Z [158539] URL: https://github.com/pytorch/pytorch/pull/158539 2025-09-07T07:34:04.8530892Z [158539] Checking whether to label PR as stale. 2025-09-07T07:34:04.8531253Z [158539] Skipping because PR was updated recently 2025-09-07T07:34:04.8531704Z ##[endgroup] 2025-09-07T07:34:04.8532072Z ##[group]Processing PR #158555 2025-09-07T07:34:04.8532420Z [158555] URL: https://github.com/pytorch/pytorch/pull/158555 2025-09-07T07:34:04.8532804Z [158555] Checking whether to label PR as stale. 2025-09-07T07:34:04.8533157Z [158555] Skipping because PR was updated recently 2025-09-07T07:34:04.8533612Z ##[endgroup] 2025-09-07T07:34:04.8534161Z ##[group]Processing PR #158557 2025-09-07T07:34:04.8534509Z [158557] URL: https://github.com/pytorch/pytorch/pull/158557 2025-09-07T07:34:04.8534909Z [158557] Checking whether to label PR as stale. 2025-09-07T07:34:04.8535251Z [158557] Skipping because PR was updated recently 2025-09-07T07:34:04.8535716Z ##[endgroup] 2025-09-07T07:34:04.8536086Z ##[group]Processing PR #158559 2025-09-07T07:34:04.8536425Z [158559] URL: https://github.com/pytorch/pytorch/pull/158559 2025-09-07T07:34:04.8536829Z [158559] Checking whether to label PR as stale. 2025-09-07T07:34:04.8537187Z [158559] Skipping because PR was updated recently 2025-09-07T07:34:04.8537637Z ##[endgroup] 2025-09-07T07:34:04.8538008Z ##[group]Processing PR #158609 2025-09-07T07:34:04.8538357Z [158609] URL: https://github.com/pytorch/pytorch/pull/158609 2025-09-07T07:34:04.8538748Z [158609] Checking whether to label PR as stale. 2025-09-07T07:34:04.8539105Z [158609] Skipping because PR was updated recently 2025-09-07T07:34:04.8539566Z ##[endgroup] 2025-09-07T07:34:04.8539939Z ##[group]Processing PR #158611 2025-09-07T07:34:04.8540272Z [158611] URL: https://github.com/pytorch/pytorch/pull/158611 2025-09-07T07:34:04.8540667Z [158611] Checking whether to label PR as stale. 2025-09-07T07:34:04.8541011Z [158611] Skipping because PR was updated recently 2025-09-07T07:34:04.8541471Z ##[endgroup] 2025-09-07T07:34:05.9589604Z ##[group]Processing PR #158621 2025-09-07T07:34:05.9590363Z [158621] URL: https://github.com/pytorch/pytorch/pull/158621 2025-09-07T07:34:05.9591120Z [158621] Checking whether to label PR as stale. 2025-09-07T07:34:05.9591762Z [158621] Skipping because PR was updated recently 2025-09-07T07:34:05.9592662Z ##[endgroup] 2025-09-07T07:34:05.9593352Z ##[group]Processing PR #158623 2025-09-07T07:34:05.9593959Z [158623] URL: https://github.com/pytorch/pytorch/pull/158623 2025-09-07T07:34:05.9594707Z [158623] Checking whether to label PR as stale. 2025-09-07T07:34:05.9595351Z [158623] Skipping because PR was updated recently 2025-09-07T07:34:05.9596208Z ##[endgroup] 2025-09-07T07:34:05.9597252Z ##[group]Processing PR #158625 2025-09-07T07:34:05.9597901Z [158625] URL: https://github.com/pytorch/pytorch/pull/158625 2025-09-07T07:34:05.9598635Z [158625] Checking whether to label PR as stale. 2025-09-07T07:34:05.9599286Z [158625] Skipping because PR was updated recently 2025-09-07T07:34:05.9600531Z ##[endgroup] 2025-09-07T07:34:05.9601200Z ##[group]Processing PR #158628 2025-09-07T07:34:05.9601848Z [158628] URL: https://github.com/pytorch/pytorch/pull/158628 2025-09-07T07:34:05.9602588Z [158628] Checking whether to label PR as stale. 2025-09-07T07:34:05.9603232Z [158628] Skipping because PR was updated recently 2025-09-07T07:34:05.9604094Z ##[endgroup] 2025-09-07T07:34:05.9604758Z ##[group]Processing PR #158640 2025-09-07T07:34:05.9605382Z [158640] URL: https://github.com/pytorch/pytorch/pull/158640 2025-09-07T07:34:05.9606120Z [158640] Checking whether to label PR as stale. 2025-09-07T07:34:05.9606766Z [158640] Skipping because PR was updated recently 2025-09-07T07:34:05.9607622Z ##[endgroup] 2025-09-07T07:34:05.9622796Z ##[group]Processing PR #158647 2025-09-07T07:34:05.9623429Z [158647] URL: https://github.com/pytorch/pytorch/pull/158647 2025-09-07T07:34:05.9624183Z [158647] Checking whether to label PR as stale. 2025-09-07T07:34:05.9624822Z [158647] Skipping because PR was updated recently 2025-09-07T07:34:05.9625717Z ##[endgroup] 2025-09-07T07:34:05.9708672Z ##[group]Processing PR #158652 2025-09-07T07:34:05.9709278Z [158652] URL: https://github.com/pytorch/pytorch/pull/158652 2025-09-07T07:34:05.9709992Z [158652] Checking whether to label PR as stale. 2025-09-07T07:34:05.9710623Z [158652] Skipping because PR was updated recently 2025-09-07T07:34:05.9711427Z ##[endgroup] 2025-09-07T07:34:05.9711981Z ##[group]Processing PR #158656 2025-09-07T07:34:05.9712512Z [158656] URL: https://github.com/pytorch/pytorch/pull/158656 2025-09-07T07:34:05.9713151Z [158656] Checking whether to label PR as stale. 2025-09-07T07:34:05.9713701Z [158656] Skipping because PR was updated recently 2025-09-07T07:34:05.9714472Z ##[endgroup] 2025-09-07T07:34:05.9715040Z ##[group]Processing PR #158674 2025-09-07T07:34:05.9715658Z [158674] URL: https://github.com/pytorch/pytorch/pull/158674 2025-09-07T07:34:05.9716344Z [158674] Checking whether to label PR as stale. 2025-09-07T07:34:05.9716989Z [158674] Skipping because PR was updated recently 2025-09-07T07:34:05.9717866Z ##[endgroup] 2025-09-07T07:34:05.9718551Z ##[group]Processing PR #158682 2025-09-07T07:34:05.9719184Z [158682] URL: https://github.com/pytorch/pytorch/pull/158682 2025-09-07T07:34:05.9719932Z [158682] Checking whether to label PR as stale. 2025-09-07T07:34:05.9720587Z [158682] Skipping because PR was updated recently 2025-09-07T07:34:05.9721465Z ##[endgroup] 2025-09-07T07:34:05.9722141Z ##[group]Processing PR #158686 2025-09-07T07:34:05.9722786Z [158686] URL: https://github.com/pytorch/pytorch/pull/158686 2025-09-07T07:34:05.9723533Z [158686] Checking whether to label PR as stale. 2025-09-07T07:34:05.9724206Z [158686] Skipping because PR was updated recently 2025-09-07T07:34:05.9725096Z ##[endgroup] 2025-09-07T07:34:05.9725757Z ##[group]Processing PR #158740 2025-09-07T07:34:05.9726401Z [158740] URL: https://github.com/pytorch/pytorch/pull/158740 2025-09-07T07:34:05.9727154Z [158740] Checking whether to label PR as stale. 2025-09-07T07:34:05.9727809Z [158740] Skipping because PR was updated recently 2025-09-07T07:34:05.9728678Z ##[endgroup] 2025-09-07T07:34:05.9729361Z ##[group]Processing PR #158767 2025-09-07T07:34:05.9729984Z [158767] URL: https://github.com/pytorch/pytorch/pull/158767 2025-09-07T07:34:05.9730693Z [158767] Checking whether to label PR as stale. 2025-09-07T07:34:05.9731314Z [158767] Skipping because PR was updated recently 2025-09-07T07:34:05.9732170Z ##[endgroup] 2025-09-07T07:34:05.9732722Z ##[group]Processing PR #158768 2025-09-07T07:34:05.9733285Z [158768] URL: https://github.com/pytorch/pytorch/pull/158768 2025-09-07T07:34:05.9734320Z [158768] Checking whether to label PR as stale. 2025-09-07T07:34:05.9734895Z [158768] Skipping because PR was updated recently 2025-09-07T07:34:05.9735925Z ##[endgroup] 2025-09-07T07:34:05.9736500Z ##[group]Processing PR #158770 2025-09-07T07:34:05.9737062Z [158770] URL: https://github.com/pytorch/pytorch/pull/158770 2025-09-07T07:34:05.9737664Z [158770] Checking whether to label PR as stale. 2025-09-07T07:34:05.9738187Z [158770] Skipping because PR was updated recently 2025-09-07T07:34:05.9738897Z ##[endgroup] 2025-09-07T07:34:05.9739520Z ##[group]Processing PR #158771 2025-09-07T07:34:05.9740009Z [158771] URL: https://github.com/pytorch/pytorch/pull/158771 2025-09-07T07:34:05.9740623Z [158771] Checking whether to label PR as stale. 2025-09-07T07:34:05.9741125Z [158771] Skipping because PR was updated recently 2025-09-07T07:34:05.9741835Z ##[endgroup] 2025-09-07T07:34:05.9742404Z ##[group]Processing PR #158777 2025-09-07T07:34:05.9742938Z [158777] URL: https://github.com/pytorch/pytorch/pull/158777 2025-09-07T07:34:05.9743553Z [158777] Checking whether to label PR as stale. 2025-09-07T07:34:05.9744142Z [158777] Skipping because PR was updated recently 2025-09-07T07:34:05.9744968Z ##[endgroup] 2025-09-07T07:34:05.9745651Z ##[group]Processing PR #158779 2025-09-07T07:34:05.9746300Z [158779] URL: https://github.com/pytorch/pytorch/pull/158779 2025-09-07T07:34:05.9747135Z [158779] Checking whether to label PR as stale. 2025-09-07T07:34:05.9747803Z [158779] Skipping because PR was updated recently 2025-09-07T07:34:05.9748908Z ##[endgroup] 2025-09-07T07:34:05.9749598Z ##[group]Processing PR #158789 2025-09-07T07:34:05.9750234Z [158789] URL: https://github.com/pytorch/pytorch/pull/158789 2025-09-07T07:34:05.9750987Z [158789] Checking whether to label PR as stale. 2025-09-07T07:34:05.9751654Z [158789] Skipping because PR was updated recently 2025-09-07T07:34:05.9752526Z ##[endgroup] 2025-09-07T07:34:05.9753177Z ##[group]Processing PR #158799 2025-09-07T07:34:05.9753808Z [158799] URL: https://github.com/pytorch/pytorch/pull/158799 2025-09-07T07:34:05.9754551Z [158799] Checking whether to label PR as stale. 2025-09-07T07:34:05.9755230Z [158799] Skipping because PR was updated recently 2025-09-07T07:34:05.9756085Z ##[endgroup] 2025-09-07T07:34:05.9756762Z ##[group]Processing PR #158804 2025-09-07T07:34:05.9757409Z [158804] URL: https://github.com/pytorch/pytorch/pull/158804 2025-09-07T07:34:05.9758152Z [158804] Checking whether to label PR as stale. 2025-09-07T07:34:05.9758813Z [158804] Skipping because PR was updated recently 2025-09-07T07:34:05.9759682Z ##[endgroup] 2025-09-07T07:34:05.9760348Z ##[group]Processing PR #158808 2025-09-07T07:34:05.9761002Z [158808] URL: https://github.com/pytorch/pytorch/pull/158808 2025-09-07T07:34:05.9761749Z [158808] Checking whether to label PR as stale. 2025-09-07T07:34:05.9762409Z [158808] Skipping because PR was updated recently 2025-09-07T07:34:05.9763280Z ##[endgroup] 2025-09-07T07:34:05.9763966Z ##[group]Processing PR #158817 2025-09-07T07:34:05.9764604Z [158817] URL: https://github.com/pytorch/pytorch/pull/158817 2025-09-07T07:34:05.9765350Z [158817] Checking whether to label PR as stale. 2025-09-07T07:34:05.9765997Z [158817] Skipping because PR was updated recently 2025-09-07T07:34:05.9766855Z ##[endgroup] 2025-09-07T07:34:05.9767510Z ##[group]Processing PR #158818 2025-09-07T07:34:05.9768153Z [158818] URL: https://github.com/pytorch/pytorch/pull/158818 2025-09-07T07:34:05.9768902Z [158818] Checking whether to label PR as stale. 2025-09-07T07:34:05.9769579Z [158818] Skipping because PR was updated recently 2025-09-07T07:34:05.9770454Z ##[endgroup] 2025-09-07T07:34:05.9771110Z ##[group]Processing PR #158829 2025-09-07T07:34:05.9771765Z [158829] URL: https://github.com/pytorch/pytorch/pull/158829 2025-09-07T07:34:05.9772522Z [158829] Checking whether to label PR as stale. 2025-09-07T07:34:05.9773181Z [158829] Skipping because PR was updated recently 2025-09-07T07:34:05.9774059Z ##[endgroup] 2025-09-07T07:34:05.9774735Z ##[group]Processing PR #158836 2025-09-07T07:34:05.9775377Z [158836] URL: https://github.com/pytorch/pytorch/pull/158836 2025-09-07T07:34:05.9776135Z [158836] Checking whether to label PR as stale. 2025-09-07T07:34:05.9776935Z [158836] Skipping because PR was updated recently 2025-09-07T07:34:05.9777814Z ##[endgroup] 2025-09-07T07:34:05.9778500Z ##[group]Processing PR #158844 2025-09-07T07:34:05.9779158Z [158844] URL: https://github.com/pytorch/pytorch/pull/158844 2025-09-07T07:34:05.9779900Z [158844] Checking whether to label PR as stale. 2025-09-07T07:34:05.9780589Z [158844] Skipping because PR was updated recently 2025-09-07T07:34:05.9781477Z ##[endgroup] 2025-09-07T07:34:05.9782146Z ##[group]Processing PR #158846 2025-09-07T07:34:05.9782792Z [158846] URL: https://github.com/pytorch/pytorch/pull/158846 2025-09-07T07:34:05.9783538Z [158846] Checking whether to label PR as stale. 2025-09-07T07:34:05.9784219Z [158846] Skipping because PR was updated recently 2025-09-07T07:34:05.9785100Z ##[endgroup] 2025-09-07T07:34:05.9785783Z ##[group]Processing PR #158857 2025-09-07T07:34:05.9786427Z [158857] URL: https://github.com/pytorch/pytorch/pull/158857 2025-09-07T07:34:05.9787290Z [158857] Checking whether to label PR as stale. 2025-09-07T07:34:05.9787935Z [158857] Skipping because PR was updated recently 2025-09-07T07:34:05.9788670Z ##[endgroup] 2025-09-07T07:34:05.9789240Z ##[group]Processing PR #158858 2025-09-07T07:34:05.9789770Z [158858] URL: https://github.com/pytorch/pytorch/pull/158858 2025-09-07T07:34:05.9790469Z [158858] Checking whether to label PR as stale. 2025-09-07T07:34:05.9791249Z [158858] Skipping because PR was updated recently 2025-09-07T07:34:05.9791934Z ##[endgroup] 2025-09-07T07:34:05.9792515Z ##[group]Processing PR #158869 2025-09-07T07:34:05.9793160Z [158869] URL: https://github.com/pytorch/pytorch/pull/158869 2025-09-07T07:34:05.9793805Z [158869] Checking whether to label PR as stale. 2025-09-07T07:34:05.9794404Z [158869] Skipping because PR was updated recently 2025-09-07T07:34:05.9795084Z ##[endgroup] 2025-09-07T07:34:05.9795462Z ##[group]Processing PR #158870 2025-09-07T07:34:05.9795803Z [158870] URL: https://github.com/pytorch/pytorch/pull/158870 2025-09-07T07:34:05.9796209Z [158870] Checking whether to label PR as stale. 2025-09-07T07:34:05.9796552Z [158870] Skipping because PR was updated recently 2025-09-07T07:34:05.9797008Z ##[endgroup] 2025-09-07T07:34:05.9797375Z ##[group]Processing PR #158872 2025-09-07T07:34:05.9797707Z [158872] URL: https://github.com/pytorch/pytorch/pull/158872 2025-09-07T07:34:05.9798106Z [158872] Checking whether to label PR as stale. 2025-09-07T07:34:05.9798462Z [158872] Skipping because PR was updated recently 2025-09-07T07:34:05.9798909Z ##[endgroup] 2025-09-07T07:34:05.9799279Z ##[group]Processing PR #158879 2025-09-07T07:34:05.9799626Z [158879] URL: https://github.com/pytorch/pytorch/pull/158879 2025-09-07T07:34:05.9800012Z [158879] Checking whether to label PR as stale. 2025-09-07T07:34:05.9800367Z [158879] Skipping because PR was updated recently 2025-09-07T07:34:05.9800825Z ##[endgroup] 2025-09-07T07:34:05.9801174Z ##[group]Processing PR #158884 2025-09-07T07:34:05.9801518Z [158884] URL: https://github.com/pytorch/pytorch/pull/158884 2025-09-07T07:34:05.9801918Z [158884] Checking whether to label PR as stale. 2025-09-07T07:34:05.9802262Z [158884] Skipping because PR was updated recently 2025-09-07T07:34:05.9802720Z ##[endgroup] 2025-09-07T07:34:05.9803086Z ##[group]Processing PR #158885 2025-09-07T07:34:05.9803418Z [158885] URL: https://github.com/pytorch/pytorch/pull/158885 2025-09-07T07:34:05.9803821Z [158885] Checking whether to label PR as stale. 2025-09-07T07:34:05.9804163Z [158885] Skipping because PR was updated recently 2025-09-07T07:34:05.9804623Z ##[endgroup] 2025-09-07T07:34:05.9804987Z ##[group]Processing PR #158907 2025-09-07T07:34:05.9805332Z [158907] URL: https://github.com/pytorch/pytorch/pull/158907 2025-09-07T07:34:05.9805719Z [158907] Checking whether to label PR as stale. 2025-09-07T07:34:05.9806072Z [158907] Skipping because PR was updated recently 2025-09-07T07:34:05.9806529Z ##[endgroup] 2025-09-07T07:34:05.9806881Z ##[group]Processing PR #158912 2025-09-07T07:34:05.9807231Z [158912] URL: https://github.com/pytorch/pytorch/pull/158912 2025-09-07T07:34:05.9807743Z [158912] Checking whether to label PR as stale. 2025-09-07T07:34:05.9808087Z [158912] Skipping because PR was updated recently 2025-09-07T07:34:05.9808550Z ##[endgroup] 2025-09-07T07:34:05.9808916Z ##[group]Processing PR #158927 2025-09-07T07:34:05.9809252Z [158927] URL: https://github.com/pytorch/pytorch/pull/158927 2025-09-07T07:34:05.9809651Z [158927] Checking whether to label PR as stale. 2025-09-07T07:34:05.9809995Z [158927] Skipping because PR was updated recently 2025-09-07T07:34:05.9810452Z ##[endgroup] 2025-09-07T07:34:05.9810820Z ##[group]Processing PR #158932 2025-09-07T07:34:05.9811165Z [158932] URL: https://github.com/pytorch/pytorch/pull/158932 2025-09-07T07:34:05.9811548Z [158932] Checking whether to label PR as stale. 2025-09-07T07:34:05.9811902Z [158932] Skipping because PR was updated recently 2025-09-07T07:34:05.9812361Z ##[endgroup] 2025-09-07T07:34:05.9812715Z ##[group]Processing PR #158933 2025-09-07T07:34:05.9813066Z [158933] URL: https://github.com/pytorch/pytorch/pull/158933 2025-09-07T07:34:05.9813464Z [158933] Checking whether to label PR as stale. 2025-09-07T07:34:05.9813808Z [158933] Skipping because PR was updated recently 2025-09-07T07:34:05.9814263Z ##[endgroup] 2025-09-07T07:34:05.9814624Z ##[group]Processing PR #158937 2025-09-07T07:34:05.9814957Z [158937] URL: https://github.com/pytorch/pytorch/pull/158937 2025-09-07T07:34:05.9815411Z [158937] Checking whether to label PR as stale. 2025-09-07T07:34:05.9815754Z [158937] Skipping because PR was updated recently 2025-09-07T07:34:05.9816212Z ##[endgroup] 2025-09-07T07:34:05.9816581Z ##[group]Processing PR #158940 2025-09-07T07:34:05.9816926Z [158940] URL: https://github.com/pytorch/pytorch/pull/158940 2025-09-07T07:34:05.9817309Z [158940] Checking whether to label PR as stale. 2025-09-07T07:34:05.9817663Z [158940] Skipping because PR was updated recently 2025-09-07T07:34:05.9818117Z ##[endgroup] 2025-09-07T07:34:05.9818464Z ##[group]Processing PR #158941 2025-09-07T07:34:05.9818809Z [158941] URL: https://github.com/pytorch/pytorch/pull/158941 2025-09-07T07:34:05.9819189Z [158941] Checking whether to label PR as stale. 2025-09-07T07:34:05.9819541Z [158941] Skipping because PR was updated recently 2025-09-07T07:34:05.9819995Z ##[endgroup] 2025-09-07T07:34:05.9820355Z ##[group]Processing PR #158942 2025-09-07T07:34:05.9820690Z [158942] URL: https://github.com/pytorch/pytorch/pull/158942 2025-09-07T07:34:05.9821081Z [158942] Checking whether to label PR as stale. 2025-09-07T07:34:05.9821422Z [158942] Skipping because PR was updated recently 2025-09-07T07:34:05.9821878Z ##[endgroup] 2025-09-07T07:34:05.9822241Z ##[group]Processing PR #158946 2025-09-07T07:34:05.9822586Z [158946] URL: https://github.com/pytorch/pytorch/pull/158946 2025-09-07T07:34:05.9822973Z [158946] Checking whether to label PR as stale. 2025-09-07T07:34:05.9823331Z [158946] Skipping because PR was updated recently 2025-09-07T07:34:05.9823781Z ##[endgroup] 2025-09-07T07:34:05.9824145Z ##[group]Processing PR #158966 2025-09-07T07:34:05.9824492Z [158966] URL: https://github.com/pytorch/pytorch/pull/158966 2025-09-07T07:34:05.9824872Z [158966] Checking whether to label PR as stale. 2025-09-07T07:34:05.9825223Z [158966] Skipping because PR was updated recently 2025-09-07T07:34:05.9825676Z ##[endgroup] 2025-09-07T07:34:05.9826039Z ##[group]Processing PR #158967 2025-09-07T07:34:05.9826375Z [158967] URL: https://github.com/pytorch/pytorch/pull/158967 2025-09-07T07:34:05.9826883Z [158967] Checking whether to label PR as stale. 2025-09-07T07:34:05.9827228Z [158967] Skipping because PR was updated recently 2025-09-07T07:34:05.9827694Z ##[endgroup] 2025-09-07T07:34:05.9828066Z ##[group]Processing PR #158987 2025-09-07T07:34:05.9828402Z [158987] URL: https://github.com/pytorch/pytorch/pull/158987 2025-09-07T07:34:05.9828801Z [158987] Checking whether to label PR as stale. 2025-09-07T07:34:05.9829155Z [158987] Skipping because PR was updated recently 2025-09-07T07:34:05.9829603Z ##[endgroup] 2025-09-07T07:34:05.9830046Z ##[group]Processing PR #158993 2025-09-07T07:34:05.9830396Z [158993] URL: https://github.com/pytorch/pytorch/pull/158993 2025-09-07T07:34:05.9830784Z [158993] Checking whether to label PR as stale. 2025-09-07T07:34:05.9831139Z [158993] Skipping because PR was updated recently 2025-09-07T07:34:05.9831604Z ##[endgroup] 2025-09-07T07:34:05.9831970Z ##[group]Processing PR #159002 2025-09-07T07:34:05.9832303Z [159002] URL: https://github.com/pytorch/pytorch/pull/159002 2025-09-07T07:34:05.9832698Z [159002] Checking whether to label PR as stale. 2025-09-07T07:34:05.9833036Z [159002] Skipping because PR was updated recently 2025-09-07T07:34:05.9833494Z ##[endgroup] 2025-09-07T07:34:05.9834040Z ##[group]Processing PR #159003 2025-09-07T07:34:05.9834380Z [159003] URL: https://github.com/pytorch/pytorch/pull/159003 2025-09-07T07:34:05.9834781Z [159003] Checking whether to label PR as stale. 2025-09-07T07:34:05.9835122Z [159003] Skipping because PR was updated recently 2025-09-07T07:34:05.9835586Z ##[endgroup] 2025-09-07T07:34:05.9835959Z ##[group]Processing PR #159009 2025-09-07T07:34:05.9836300Z [159009] URL: https://github.com/pytorch/pytorch/pull/159009 2025-09-07T07:34:05.9836684Z [159009] Checking whether to label PR as stale. 2025-09-07T07:34:05.9837035Z [159009] Skipping because PR was updated recently 2025-09-07T07:34:05.9837490Z ##[endgroup] 2025-09-07T07:34:05.9837842Z ##[group]Processing PR #159010 2025-09-07T07:34:05.9838305Z [159010] URL: https://github.com/pytorch/pytorch/pull/159010 2025-09-07T07:34:05.9838708Z [159010] Checking whether to label PR as stale. 2025-09-07T07:34:05.9839046Z [159010] Skipping because PR was updated recently 2025-09-07T07:34:05.9839511Z ##[endgroup] 2025-09-07T07:34:05.9839879Z ##[group]Processing PR #159020 2025-09-07T07:34:05.9840216Z [159020] URL: https://github.com/pytorch/pytorch/pull/159020 2025-09-07T07:34:05.9840616Z [159020] Checking whether to label PR as stale. 2025-09-07T07:34:05.9840958Z [159020] Skipping because PR was updated recently 2025-09-07T07:34:05.9841446Z ##[endgroup] 2025-09-07T07:34:05.9841804Z ##[group]Processing PR #159021 2025-09-07T07:34:05.9842147Z [159021] URL: https://github.com/pytorch/pytorch/pull/159021 2025-09-07T07:34:05.9842544Z [159021] Checking whether to label PR as stale. 2025-09-07T07:34:05.9842887Z [159021] Skipping because PR was updated recently 2025-09-07T07:34:05.9843343Z ##[endgroup] 2025-09-07T07:34:05.9843711Z ##[group]Processing PR #159026 2025-09-07T07:34:05.9844045Z [159026] URL: https://github.com/pytorch/pytorch/pull/159026 2025-09-07T07:34:05.9844445Z [159026] Checking whether to label PR as stale. 2025-09-07T07:34:05.9844792Z [159026] Skipping because PR was updated recently 2025-09-07T07:34:05.9845247Z ##[endgroup] 2025-09-07T07:34:05.9845612Z ##[group]Processing PR #159046 2025-09-07T07:34:05.9845960Z [159046] URL: https://github.com/pytorch/pytorch/pull/159046 2025-09-07T07:34:05.9846341Z [159046] Checking whether to label PR as stale. 2025-09-07T07:34:05.9846691Z [159046] Skipping because PR was updated recently 2025-09-07T07:34:05.9847152Z ##[endgroup] 2025-09-07T07:34:05.9847501Z ##[group]Processing PR #159047 2025-09-07T07:34:05.9847843Z [159047] URL: https://github.com/pytorch/pytorch/pull/159047 2025-09-07T07:34:05.9848241Z [159047] Checking whether to label PR as stale. 2025-09-07T07:34:05.9848586Z [159047] Skipping because PR was updated recently 2025-09-07T07:34:05.9849050Z ##[endgroup] 2025-09-07T07:34:05.9849416Z ##[group]Processing PR #159052 2025-09-07T07:34:05.9849746Z [159052] URL: https://github.com/pytorch/pytorch/pull/159052 2025-09-07T07:34:05.9850136Z [159052] Checking whether to label PR as stale. 2025-09-07T07:34:05.9850473Z [159052] Skipping because PR was updated recently 2025-09-07T07:34:05.9851014Z ##[endgroup] 2025-09-07T07:34:05.9851377Z ##[group]Processing PR #159057 2025-09-07T07:34:05.9851721Z [159057] URL: https://github.com/pytorch/pytorch/pull/159057 2025-09-07T07:34:05.9852104Z [159057] Checking whether to label PR as stale. 2025-09-07T07:34:05.9852456Z [159057] Skipping because PR was updated recently 2025-09-07T07:34:05.9853038Z ##[endgroup] 2025-09-07T07:34:05.9853393Z ##[group]Processing PR #159073 2025-09-07T07:34:05.9853738Z [159073] URL: https://github.com/pytorch/pytorch/pull/159073 2025-09-07T07:34:05.9854122Z [159073] Checking whether to label PR as stale. 2025-09-07T07:34:05.9854569Z [159073] Skipping because PR was updated recently 2025-09-07T07:34:05.9855030Z ##[endgroup] 2025-09-07T07:34:05.9855401Z ##[group]Processing PR #159078 2025-09-07T07:34:05.9855734Z [159078] URL: https://github.com/pytorch/pytorch/pull/159078 2025-09-07T07:34:05.9856128Z [159078] Checking whether to label PR as stale. 2025-09-07T07:34:05.9856466Z [159078] Skipping because PR was updated recently 2025-09-07T07:34:05.9856921Z ##[endgroup] 2025-09-07T07:34:05.9857285Z ##[group]Processing PR #159081 2025-09-07T07:34:05.9857618Z [159081] URL: https://github.com/pytorch/pytorch/pull/159081 2025-09-07T07:34:05.9858016Z [159081] Checking whether to label PR as stale. 2025-09-07T07:34:05.9858367Z [159081] Skipping because PR was updated recently 2025-09-07T07:34:05.9858817Z ##[endgroup] 2025-09-07T07:34:05.9859181Z ##[group]Processing PR #159086 2025-09-07T07:34:05.9859526Z [159086] URL: https://github.com/pytorch/pytorch/pull/159086 2025-09-07T07:34:05.9859909Z [159086] Checking whether to label PR as stale. 2025-09-07T07:34:05.9860262Z [159086] Skipping because PR was updated recently 2025-09-07T07:34:05.9860779Z ##[endgroup] 2025-09-07T07:34:05.9861143Z ##[group]Processing PR #159091 2025-09-07T07:34:05.9861477Z [159091] URL: https://github.com/pytorch/pytorch/pull/159091 2025-09-07T07:34:05.9862031Z [159091] Checking whether to label PR as stale. 2025-09-07T07:34:05.9862371Z [159091] Skipping because PR was updated recently 2025-09-07T07:34:05.9862828Z ##[endgroup] 2025-09-07T07:34:05.9863193Z ##[group]Processing PR #159096 2025-09-07T07:34:05.9863525Z [159096] URL: https://github.com/pytorch/pytorch/pull/159096 2025-09-07T07:34:05.9863925Z [159096] Checking whether to label PR as stale. 2025-09-07T07:34:05.9864280Z [159096] Skipping because PR was updated recently 2025-09-07T07:34:05.9864721Z ##[endgroup] 2025-09-07T07:34:05.9865469Z ##[group]Processing PR #159099 2025-09-07T07:34:05.9865824Z [159099] URL: https://github.com/pytorch/pytorch/pull/159099 2025-09-07T07:34:05.9866206Z [159099] Checking whether to label PR as stale. 2025-09-07T07:34:05.9866563Z [159099] Skipping because PR was updated recently 2025-09-07T07:34:05.9867107Z ##[endgroup] 2025-09-07T07:34:05.9867463Z ##[group]Processing PR #159104 2025-09-07T07:34:05.9867815Z [159104] URL: https://github.com/pytorch/pytorch/pull/159104 2025-09-07T07:34:05.9868217Z [159104] Checking whether to label PR as stale. 2025-09-07T07:34:05.9868561Z [159104] Skipping because PR was updated recently 2025-09-07T07:34:05.9869017Z ##[endgroup] 2025-09-07T07:34:05.9869381Z ##[group]Processing PR #159106 2025-09-07T07:34:05.9869713Z [159106] URL: https://github.com/pytorch/pytorch/pull/159106 2025-09-07T07:34:05.9870109Z [159106] Checking whether to label PR as stale. 2025-09-07T07:34:05.9870455Z [159106] Skipping because PR was updated recently 2025-09-07T07:34:05.9870915Z ##[endgroup] 2025-09-07T07:34:05.9871274Z ##[group]Processing PR #159131 2025-09-07T07:34:05.9871617Z [159131] URL: https://github.com/pytorch/pytorch/pull/159131 2025-09-07T07:34:05.9872002Z [159131] Checking whether to label PR as stale. 2025-09-07T07:34:05.9872360Z [159131] Skipping because PR was updated recently 2025-09-07T07:34:05.9872818Z ##[endgroup] 2025-09-07T07:34:05.9873167Z ##[group]Processing PR #159132 2025-09-07T07:34:05.9873511Z [159132] URL: https://github.com/pytorch/pytorch/pull/159132 2025-09-07T07:34:05.9873910Z [159132] Checking whether to label PR as stale. 2025-09-07T07:34:05.9874252Z [159132] Skipping because PR was updated recently 2025-09-07T07:34:05.9874710Z ##[endgroup] 2025-09-07T07:34:05.9875074Z ##[group]Processing PR #159144 2025-09-07T07:34:05.9875407Z [159144] URL: https://github.com/pytorch/pytorch/pull/159144 2025-09-07T07:34:05.9875802Z [159144] Checking whether to label PR as stale. 2025-09-07T07:34:05.9876244Z [159144] Skipping because PR was updated recently 2025-09-07T07:34:05.9876709Z ##[endgroup] 2025-09-07T07:34:05.9877074Z ##[group]Processing PR #159145 2025-09-07T07:34:05.9877417Z [159145] URL: https://github.com/pytorch/pytorch/pull/159145 2025-09-07T07:34:05.9877801Z [159145] Checking whether to label PR as stale. 2025-09-07T07:34:05.9878164Z [159145] Skipping because PR was updated recently 2025-09-07T07:34:05.9878622Z ##[endgroup] 2025-09-07T07:34:05.9878970Z ##[group]Processing PR #159146 2025-09-07T07:34:05.9879311Z [159146] URL: https://github.com/pytorch/pytorch/pull/159146 2025-09-07T07:34:05.9879692Z [159146] Checking whether to label PR as stale. 2025-09-07T07:34:05.9880046Z [159146] Skipping because PR was updated recently 2025-09-07T07:34:05.9880502Z ##[endgroup] 2025-09-07T07:34:05.9880863Z ##[group]Processing PR #159158 2025-09-07T07:34:05.9881195Z [159158] URL: https://github.com/pytorch/pytorch/pull/159158 2025-09-07T07:34:05.9881590Z [159158] Checking whether to label PR as stale. 2025-09-07T07:34:05.9881935Z [159158] Skipping because PR was updated recently 2025-09-07T07:34:05.9882393Z ##[endgroup] 2025-09-07T07:34:05.9882754Z ##[group]Processing PR #159161 2025-09-07T07:34:05.9883094Z [159161] URL: https://github.com/pytorch/pytorch/pull/159161 2025-09-07T07:34:05.9883477Z [159161] Checking whether to label PR as stale. 2025-09-07T07:34:05.9883882Z [159161] Skipping because PR was updated recently 2025-09-07T07:34:05.9884326Z ##[endgroup] 2025-09-07T07:34:05.9884695Z ##[group]Processing PR #159175 2025-09-07T07:34:05.9885039Z [159175] URL: https://github.com/pytorch/pytorch/pull/159175 2025-09-07T07:34:05.9885421Z [159175] Checking whether to label PR as stale. 2025-09-07T07:34:05.9885776Z [159175] Skipping because PR was updated recently 2025-09-07T07:34:05.9886231Z ##[endgroup] 2025-09-07T07:34:05.9886599Z ##[group]Processing PR #159176 2025-09-07T07:34:05.9886936Z [159176] URL: https://github.com/pytorch/pytorch/pull/159176 2025-09-07T07:34:05.9887334Z [159176] Checking whether to label PR as stale. 2025-09-07T07:34:05.9887673Z [159176] Skipping because PR was updated recently 2025-09-07T07:34:05.9888126Z ##[endgroup] 2025-09-07T07:34:05.9888489Z ##[group]Processing PR #159179 2025-09-07T07:34:05.9888821Z [159179] URL: https://github.com/pytorch/pytorch/pull/159179 2025-09-07T07:34:05.9889214Z [159179] Checking whether to label PR as stale. 2025-09-07T07:34:05.9889569Z [159179] Skipping because PR was updated recently 2025-09-07T07:34:05.9890013Z ##[endgroup] 2025-09-07T07:34:05.9890378Z ##[group]Processing PR #159180 2025-09-07T07:34:05.9890726Z [159180] URL: https://github.com/pytorch/pytorch/pull/159180 2025-09-07T07:34:05.9891111Z [159180] Checking whether to label PR as stale. 2025-09-07T07:34:05.9891465Z [159180] Skipping because PR was updated recently 2025-09-07T07:34:05.9891923Z ##[endgroup] 2025-09-07T07:34:05.9892276Z ##[group]Processing PR #159188 2025-09-07T07:34:05.9892620Z [159188] URL: https://github.com/pytorch/pytorch/pull/159188 2025-09-07T07:34:05.9893017Z [159188] Checking whether to label PR as stale. 2025-09-07T07:34:05.9893358Z [159188] Skipping because PR was updated recently 2025-09-07T07:34:05.9893810Z ##[endgroup] 2025-09-07T07:34:05.9894171Z ##[group]Processing PR #159193 2025-09-07T07:34:05.9894501Z [159193] URL: https://github.com/pytorch/pytorch/pull/159193 2025-09-07T07:34:05.9894900Z [159193] Checking whether to label PR as stale. 2025-09-07T07:34:05.9895240Z [159193] Skipping because PR was updated recently 2025-09-07T07:34:05.9895693Z ##[endgroup] 2025-09-07T07:34:05.9896052Z ##[group]Processing PR #159194 2025-09-07T07:34:05.9896394Z [159194] URL: https://github.com/pytorch/pytorch/pull/159194 2025-09-07T07:34:05.9896777Z [159194] Checking whether to label PR as stale. 2025-09-07T07:34:05.9897128Z [159194] Skipping because PR was updated recently 2025-09-07T07:34:05.9897582Z ##[endgroup] 2025-09-07T07:34:05.9897933Z ##[group]Processing PR #159202 2025-09-07T07:34:05.9898274Z [159202] URL: https://github.com/pytorch/pytorch/pull/159202 2025-09-07T07:34:05.9898744Z [159202] Checking whether to label PR as stale. 2025-09-07T07:34:05.9899087Z [159202] Skipping because PR was updated recently 2025-09-07T07:34:05.9899543Z ##[endgroup] 2025-09-07T07:34:05.9899909Z ##[group]Processing PR #159208 2025-09-07T07:34:05.9900241Z [159208] URL: https://github.com/pytorch/pytorch/pull/159208 2025-09-07T07:34:05.9900642Z [159208] Checking whether to label PR as stale. 2025-09-07T07:34:05.9900982Z [159208] Skipping because PR was updated recently 2025-09-07T07:34:05.9901437Z ##[endgroup] 2025-09-07T07:34:05.9901808Z ##[group]Processing PR #159213 2025-09-07T07:34:05.9902159Z [159213] URL: https://github.com/pytorch/pytorch/pull/159213 2025-09-07T07:34:05.9902549Z [159213] Checking whether to label PR as stale. 2025-09-07T07:34:05.9902903Z [159213] Skipping because PR was updated recently 2025-09-07T07:34:05.9903361Z ##[endgroup] 2025-09-07T07:34:05.9903712Z ##[group]Processing PR #159218 2025-09-07T07:34:05.9904054Z [159218] URL: https://github.com/pytorch/pytorch/pull/159218 2025-09-07T07:34:05.9904440Z [159218] Checking whether to label PR as stale. 2025-09-07T07:34:05.9904793Z [159218] Skipping because PR was updated recently 2025-09-07T07:34:05.9905248Z ##[endgroup] 2025-09-07T07:34:05.9905622Z ##[group]Processing PR #159219 2025-09-07T07:34:05.9905957Z [159219] URL: https://github.com/pytorch/pytorch/pull/159219 2025-09-07T07:34:05.9906405Z [159219] Checking whether to label PR as stale. 2025-09-07T07:34:05.9906827Z [159219] Skipping because PR was updated recently 2025-09-07T07:34:05.9907293Z ##[endgroup] 2025-09-07T07:34:05.9907667Z ##[group]Processing PR #159241 2025-09-07T07:34:05.9908019Z [159241] URL: https://github.com/pytorch/pytorch/pull/159241 2025-09-07T07:34:05.9908409Z [159241] Checking whether to label PR as stale. 2025-09-07T07:34:05.9908763Z [159241] Skipping because PR was updated recently 2025-09-07T07:34:05.9909210Z ##[endgroup] 2025-09-07T07:34:05.9909576Z ##[group]Processing PR #159242 2025-09-07T07:34:05.9909920Z [159242] URL: https://github.com/pytorch/pytorch/pull/159242 2025-09-07T07:34:05.9910313Z [159242] Checking whether to label PR as stale. 2025-09-07T07:34:05.9910668Z [159242] Skipping because PR was updated recently 2025-09-07T07:34:05.9911126Z ##[endgroup] 2025-09-07T07:34:05.9911494Z ##[group]Processing PR #159263 2025-09-07T07:34:05.9911822Z [159263] URL: https://github.com/pytorch/pytorch/pull/159263 2025-09-07T07:34:05.9912225Z [159263] Checking whether to label PR as stale. 2025-09-07T07:34:05.9912565Z [159263] Skipping because PR was updated recently 2025-09-07T07:34:05.9913021Z ##[endgroup] 2025-09-07T07:34:05.9913385Z ##[group]Processing PR #159267 2025-09-07T07:34:05.9913715Z [159267] URL: https://github.com/pytorch/pytorch/pull/159267 2025-09-07T07:34:05.9914108Z [159267] Checking whether to label PR as stale. 2025-09-07T07:34:05.9914461Z [159267] Skipping because PR was updated recently 2025-09-07T07:34:05.9914901Z ##[endgroup] 2025-09-07T07:34:05.9915259Z ##[group]Processing PR #159274 2025-09-07T07:34:05.9915605Z [159274] URL: https://github.com/pytorch/pytorch/pull/159274 2025-09-07T07:34:05.9915987Z [159274] Checking whether to label PR as stale. 2025-09-07T07:34:05.9916334Z [159274] Skipping because PR was updated recently 2025-09-07T07:34:05.9916785Z ##[endgroup] 2025-09-07T07:34:05.9917144Z ##[group]Processing PR #159282 2025-09-07T07:34:05.9917481Z [159282] URL: https://github.com/pytorch/pytorch/pull/159282 2025-09-07T07:34:05.9917875Z [159282] Checking whether to label PR as stale. 2025-09-07T07:34:05.9918217Z [159282] Skipping because PR was updated recently 2025-09-07T07:34:05.9918671Z ##[endgroup] 2025-09-07T07:34:05.9919033Z ##[group]Processing PR #159287 2025-09-07T07:34:05.9919365Z [159287] URL: https://github.com/pytorch/pytorch/pull/159287 2025-09-07T07:34:05.9919760Z [159287] Checking whether to label PR as stale. 2025-09-07T07:34:05.9920100Z [159287] Skipping because PR was updated recently 2025-09-07T07:34:05.9921267Z ##[endgroup] 2025-09-07T07:34:05.9921899Z ##[group]Processing PR #159303 2025-09-07T07:34:05.9922532Z [159303] URL: https://github.com/pytorch/pytorch/pull/159303 2025-09-07T07:34:05.9923073Z [159303] Checking whether to label PR as stale. 2025-09-07T07:34:05.9923593Z [159303] Skipping because PR was updated recently 2025-09-07T07:34:05.9924232Z ##[endgroup] 2025-09-07T07:34:05.9924766Z ##[group]Processing PR #159313 2025-09-07T07:34:05.9925271Z [159313] URL: https://github.com/pytorch/pytorch/pull/159313 2025-09-07T07:34:05.9925820Z [159313] Checking whether to label PR as stale. 2025-09-07T07:34:05.9926344Z [159313] Skipping because PR was updated recently 2025-09-07T07:34:05.9926962Z ##[endgroup] 2025-09-07T07:34:05.9927495Z ##[group]Processing PR #159323 2025-09-07T07:34:05.9928006Z [159323] URL: https://github.com/pytorch/pytorch/pull/159323 2025-09-07T07:34:05.9928553Z [159323] Checking whether to label PR as stale. 2025-09-07T07:34:05.9929063Z [159323] Skipping because PR was updated recently 2025-09-07T07:34:05.9929697Z ##[endgroup] 2025-09-07T07:34:05.9930225Z ##[group]Processing PR #159344 2025-09-07T07:34:05.9930724Z [159344] URL: https://github.com/pytorch/pytorch/pull/159344 2025-09-07T07:34:05.9931265Z [159344] Checking whether to label PR as stale. 2025-09-07T07:34:05.9931794Z [159344] Skipping because PR was updated recently 2025-09-07T07:34:05.9932345Z ##[endgroup] 2025-09-07T07:34:07.2326263Z ##[group]Processing PR #159358 2025-09-07T07:34:07.2327724Z [159358] URL: https://github.com/pytorch/pytorch/pull/159358 2025-09-07T07:34:07.2328892Z [159358] Checking whether to label PR as stale. 2025-09-07T07:34:07.2330089Z [159358] Skipping because PR was updated recently 2025-09-07T07:34:07.2331269Z ##[endgroup] 2025-09-07T07:34:07.2332362Z ##[group]Processing PR #159387 2025-09-07T07:34:07.2333294Z [159387] URL: https://github.com/pytorch/pytorch/pull/159387 2025-09-07T07:34:07.2334469Z [159387] Checking whether to label PR as stale. 2025-09-07T07:34:07.2335354Z [159387] Skipping because PR was updated recently 2025-09-07T07:34:07.2336740Z ##[endgroup] 2025-09-07T07:34:07.2337732Z ##[group]Processing PR #159395 2025-09-07T07:34:07.2339144Z [159395] URL: https://github.com/pytorch/pytorch/pull/159395 2025-09-07T07:34:07.2340260Z [159395] Checking whether to label PR as stale. 2025-09-07T07:34:07.2341161Z [159395] Skipping because PR was updated recently 2025-09-07T07:34:07.2342322Z ##[endgroup] 2025-09-07T07:34:07.2343265Z ##[group]Processing PR #159410 2025-09-07T07:34:07.2344094Z [159410] URL: https://github.com/pytorch/pytorch/pull/159410 2025-09-07T07:34:07.2344978Z [159410] Checking whether to label PR as stale. 2025-09-07T07:34:07.2345793Z [159410] Skipping because PR was updated recently 2025-09-07T07:34:07.2348638Z ##[endgroup] 2025-09-07T07:34:07.2349546Z ##[group]Processing PR #159421 2025-09-07T07:34:07.2350330Z [159421] URL: https://github.com/pytorch/pytorch/pull/159421 2025-09-07T07:34:07.2351278Z [159421] Checking whether to label PR as stale. 2025-09-07T07:34:07.2352046Z [159421] Skipping because PR was updated recently 2025-09-07T07:34:07.2353111Z ##[endgroup] 2025-09-07T07:34:07.2354065Z ##[group]Processing PR #159428 2025-09-07T07:34:07.2354808Z [159428] URL: https://github.com/pytorch/pytorch/pull/159428 2025-09-07T07:34:07.2355672Z [159428] Checking whether to label PR as stale. 2025-09-07T07:34:07.2356620Z [159428] Skipping because PR was updated recently 2025-09-07T07:34:07.2357612Z ##[endgroup] 2025-09-07T07:34:07.2358534Z ##[group]Processing PR #159448 2025-09-07T07:34:07.2359179Z [159448] URL: https://github.com/pytorch/pytorch/pull/159448 2025-09-07T07:34:07.2359928Z [159448] Checking whether to label PR as stale. 2025-09-07T07:34:07.2360576Z [159448] Skipping because PR was updated recently 2025-09-07T07:34:07.2361416Z ##[endgroup] 2025-09-07T07:34:07.2362077Z ##[group]Processing PR #159459 2025-09-07T07:34:07.2362708Z [159459] URL: https://github.com/pytorch/pytorch/pull/159459 2025-09-07T07:34:07.2363402Z [159459] Checking whether to label PR as stale. 2025-09-07T07:34:07.2364069Z [159459] Skipping because PR was updated recently 2025-09-07T07:34:07.2365551Z ##[endgroup] 2025-09-07T07:34:07.2366201Z ##[group]Processing PR #159474 2025-09-07T07:34:07.2366835Z [159474] URL: https://github.com/pytorch/pytorch/pull/159474 2025-09-07T07:34:07.2367578Z [159474] Checking whether to label PR as stale. 2025-09-07T07:34:07.2368342Z [159474] Skipping because PR was updated recently 2025-09-07T07:34:07.2369178Z ##[endgroup] 2025-09-07T07:34:07.2369828Z ##[group]Processing PR #159478 2025-09-07T07:34:07.2370452Z [159478] URL: https://github.com/pytorch/pytorch/pull/159478 2025-09-07T07:34:07.2371180Z [159478] Checking whether to label PR as stale. 2025-09-07T07:34:07.2371822Z [159478] Skipping because PR was updated recently 2025-09-07T07:34:07.2372673Z ##[endgroup] 2025-09-07T07:34:07.2373333Z ##[group]Processing PR #159479 2025-09-07T07:34:07.2373964Z [159479] URL: https://github.com/pytorch/pytorch/pull/159479 2025-09-07T07:34:07.2374670Z [159479] Checking whether to label PR as stale. 2025-09-07T07:34:07.2375042Z [159479] Skipping because PR was updated recently 2025-09-07T07:34:07.2375509Z ##[endgroup] 2025-09-07T07:34:07.2375862Z ##[group]Processing PR #159481 2025-09-07T07:34:07.2376208Z [159481] URL: https://github.com/pytorch/pytorch/pull/159481 2025-09-07T07:34:07.2376604Z [159481] Checking whether to label PR as stale. 2025-09-07T07:34:07.2376946Z [159481] Skipping because PR was updated recently 2025-09-07T07:34:07.2377405Z ##[endgroup] 2025-09-07T07:34:07.2377908Z ##[group]Processing PR #159482 2025-09-07T07:34:07.2378247Z [159482] URL: https://github.com/pytorch/pytorch/pull/159482 2025-09-07T07:34:07.2378648Z [159482] Checking whether to label PR as stale. 2025-09-07T07:34:07.2378991Z [159482] Skipping because PR was updated recently 2025-09-07T07:34:07.2379456Z ##[endgroup] 2025-09-07T07:34:07.2379871Z ##[group]Processing PR #159494 2025-09-07T07:34:07.2380263Z [159494] URL: https://github.com/pytorch/pytorch/pull/159494 2025-09-07T07:34:07.2380649Z [159494] Checking whether to label PR as stale. 2025-09-07T07:34:07.2381002Z [159494] Skipping because PR was updated recently 2025-09-07T07:34:07.2381454Z ##[endgroup] 2025-09-07T07:34:07.2381821Z ##[group]Processing PR #159503 2025-09-07T07:34:07.2382165Z [159503] URL: https://github.com/pytorch/pytorch/pull/159503 2025-09-07T07:34:07.2382697Z [159503] Checking whether to label PR as stale. 2025-09-07T07:34:07.2383057Z [159503] Skipping because PR was updated recently 2025-09-07T07:34:07.2383523Z ##[endgroup] 2025-09-07T07:34:07.2383894Z ##[group]Processing PR #159511 2025-09-07T07:34:07.2384227Z [159511] URL: https://github.com/pytorch/pytorch/pull/159511 2025-09-07T07:34:07.2384684Z [159511] Checking whether to label PR as stale. 2025-09-07T07:34:07.2385028Z [159511] Skipping because PR was updated recently 2025-09-07T07:34:07.2385486Z ##[endgroup] 2025-09-07T07:34:07.2385852Z ##[group]Processing PR #159521 2025-09-07T07:34:07.2386184Z [159521] URL: https://github.com/pytorch/pytorch/pull/159521 2025-09-07T07:34:07.2386579Z [159521] Checking whether to label PR as stale. 2025-09-07T07:34:07.2386999Z [159521] Skipping because PR was updated recently 2025-09-07T07:34:07.2387450Z ##[endgroup] 2025-09-07T07:34:07.2387813Z ##[group]Processing PR #159523 2025-09-07T07:34:07.2388158Z [159523] URL: https://github.com/pytorch/pytorch/pull/159523 2025-09-07T07:34:07.2388542Z [159523] Checking whether to label PR as stale. 2025-09-07T07:34:07.2388895Z [159523] Skipping because PR was updated recently 2025-09-07T07:34:07.2389358Z ##[endgroup] 2025-09-07T07:34:07.2389731Z ##[group]Processing PR #159544 2025-09-07T07:34:07.2390087Z [159544] URL: https://github.com/pytorch/pytorch/pull/159544 2025-09-07T07:34:07.2390487Z [159544] Checking whether to label PR as stale. 2025-09-07T07:34:07.2390829Z [159544] Skipping because PR was updated recently 2025-09-07T07:34:07.2391290Z ##[endgroup] 2025-09-07T07:34:07.2391663Z ##[group]Processing PR #159546 2025-09-07T07:34:07.2391998Z [159546] URL: https://github.com/pytorch/pytorch/pull/159546 2025-09-07T07:34:07.2392400Z [159546] Checking whether to label PR as stale. 2025-09-07T07:34:07.2392852Z [159546] Skipping because PR was updated recently 2025-09-07T07:34:07.2393420Z ##[endgroup] 2025-09-07T07:34:07.2394122Z ##[group]Processing PR #159552 2025-09-07T07:34:07.2394477Z [159552] URL: https://github.com/pytorch/pytorch/pull/159552 2025-09-07T07:34:07.2394864Z [159552] Checking whether to label PR as stale. 2025-09-07T07:34:07.2395225Z [159552] Skipping because PR was updated recently 2025-09-07T07:34:07.2395693Z ##[endgroup] 2025-09-07T07:34:07.2396048Z ##[group]Processing PR #159553 2025-09-07T07:34:07.2396390Z [159553] URL: https://github.com/pytorch/pytorch/pull/159553 2025-09-07T07:34:07.2396774Z [159553] Checking whether to label PR as stale. 2025-09-07T07:34:07.2397127Z [159553] Skipping because PR was updated recently 2025-09-07T07:34:07.2397584Z ##[endgroup] 2025-09-07T07:34:07.2397946Z ##[group]Processing PR #159575 2025-09-07T07:34:07.2398277Z [159575] URL: https://github.com/pytorch/pytorch/pull/159575 2025-09-07T07:34:07.2398674Z [159575] Checking whether to label PR as stale. 2025-09-07T07:34:07.2399018Z [159575] Skipping because PR was updated recently 2025-09-07T07:34:07.2399471Z ##[endgroup] 2025-09-07T07:34:07.2399833Z ##[group]Processing PR #159576 2025-09-07T07:34:07.2400173Z [159576] URL: https://github.com/pytorch/pytorch/pull/159576 2025-09-07T07:34:07.2400573Z [159576] Checking whether to label PR as stale. 2025-09-07T07:34:07.2401212Z [159576] Skipping because PR was updated recently 2025-09-07T07:34:07.2401697Z ##[endgroup] 2025-09-07T07:34:07.2402065Z ##[group]Processing PR #159582 2025-09-07T07:34:07.2402410Z [159582] URL: https://github.com/pytorch/pytorch/pull/159582 2025-09-07T07:34:07.2402796Z [159582] Checking whether to label PR as stale. 2025-09-07T07:34:07.2403152Z [159582] Skipping because PR was updated recently 2025-09-07T07:34:07.2403611Z ##[endgroup] 2025-09-07T07:34:07.2403976Z ##[group]Processing PR #159585 2025-09-07T07:34:07.2404311Z [159585] URL: https://github.com/pytorch/pytorch/pull/159585 2025-09-07T07:34:07.2404710Z [159585] Checking whether to label PR as stale. 2025-09-07T07:34:07.2405060Z [159585] Skipping because PR was updated recently 2025-09-07T07:34:07.2405516Z ##[endgroup] 2025-09-07T07:34:07.2405879Z ##[group]Processing PR #159593 2025-09-07T07:34:07.2406212Z [159593] URL: https://github.com/pytorch/pytorch/pull/159593 2025-09-07T07:34:07.2406609Z [159593] Checking whether to label PR as stale. 2025-09-07T07:34:07.2406969Z [159593] Skipping because PR was updated recently 2025-09-07T07:34:07.2407416Z ##[endgroup] 2025-09-07T07:34:07.2407779Z ##[group]Processing PR #159597 2025-09-07T07:34:07.2408125Z [159597] URL: https://github.com/pytorch/pytorch/pull/159597 2025-09-07T07:34:07.2408511Z [159597] Checking whether to label PR as stale. 2025-09-07T07:34:07.2408866Z [159597] Skipping because PR was updated recently 2025-09-07T07:34:07.2409319Z ##[endgroup] 2025-09-07T07:34:07.2409682Z ##[group]Processing PR #159600 2025-09-07T07:34:07.2410014Z [159600] URL: https://github.com/pytorch/pytorch/pull/159600 2025-09-07T07:34:07.2410407Z [159600] Checking whether to label PR as stale. 2025-09-07T07:34:07.2410751Z [159600] Skipping because PR was updated recently 2025-09-07T07:34:07.2411205Z ##[endgroup] 2025-09-07T07:34:07.2411567Z ##[group]Processing PR #159606 2025-09-07T07:34:07.2411898Z [159606] URL: https://github.com/pytorch/pytorch/pull/159606 2025-09-07T07:34:07.2412293Z [159606] Checking whether to label PR as stale. 2025-09-07T07:34:07.2412649Z [159606] Skipping because PR was updated recently 2025-09-07T07:34:07.2413091Z ##[endgroup] 2025-09-07T07:34:07.2413454Z ##[group]Processing PR #159608 2025-09-07T07:34:07.2413797Z [159608] URL: https://github.com/pytorch/pytorch/pull/159608 2025-09-07T07:34:07.2414180Z [159608] Checking whether to label PR as stale. 2025-09-07T07:34:07.2414532Z [159608] Skipping because PR was updated recently 2025-09-07T07:34:07.2414984Z ##[endgroup] 2025-09-07T07:34:07.2415335Z ##[group]Processing PR #159609 2025-09-07T07:34:07.2415676Z [159609] URL: https://github.com/pytorch/pytorch/pull/159609 2025-09-07T07:34:07.2416154Z [159609] Checking whether to label PR as stale. 2025-09-07T07:34:07.2416494Z [159609] Skipping because PR was updated recently 2025-09-07T07:34:07.2416956Z ##[endgroup] 2025-09-07T07:34:07.2417322Z ##[group]Processing PR #159626 2025-09-07T07:34:07.2417652Z [159626] URL: https://github.com/pytorch/pytorch/pull/159626 2025-09-07T07:34:07.2418050Z [159626] Checking whether to label PR as stale. 2025-09-07T07:34:07.2418397Z [159626] Skipping because PR was updated recently 2025-09-07T07:34:07.2418854Z ##[endgroup] 2025-09-07T07:34:07.2419229Z ##[group]Processing PR #159632 2025-09-07T07:34:07.2419576Z [159632] URL: https://github.com/pytorch/pytorch/pull/159632 2025-09-07T07:34:07.2419961Z [159632] Checking whether to label PR as stale. 2025-09-07T07:34:07.2420317Z [159632] Skipping because PR was updated recently 2025-09-07T07:34:07.2420771Z ##[endgroup] 2025-09-07T07:34:07.2429487Z ##[group]Processing PR #159664 2025-09-07T07:34:07.2429866Z [159664] URL: https://github.com/pytorch/pytorch/pull/159664 2025-09-07T07:34:07.2430290Z [159664] Checking whether to label PR as stale. 2025-09-07T07:34:07.2430643Z [159664] Skipping because PR was updated recently 2025-09-07T07:34:07.2431120Z ##[endgroup] 2025-09-07T07:34:07.2431496Z ##[group]Processing PR #159682 2025-09-07T07:34:07.2431853Z [159682] URL: https://github.com/pytorch/pytorch/pull/159682 2025-09-07T07:34:07.2432355Z [159682] Checking whether to label PR as stale. 2025-09-07T07:34:07.2432717Z [159682] Skipping because PR was updated recently 2025-09-07T07:34:07.2433172Z ##[endgroup] 2025-09-07T07:34:07.2433546Z ##[group]Processing PR #159689 2025-09-07T07:34:07.2434070Z [159689] URL: https://github.com/pytorch/pytorch/pull/159689 2025-09-07T07:34:07.2434464Z [159689] Checking whether to label PR as stale. 2025-09-07T07:34:07.2434824Z [159689] Skipping because PR was updated recently 2025-09-07T07:34:07.2435290Z ##[endgroup] 2025-09-07T07:34:07.2435659Z ##[group]Processing PR #159691 2025-09-07T07:34:07.2435997Z [159691] URL: https://github.com/pytorch/pytorch/pull/159691 2025-09-07T07:34:07.2436405Z [159691] Checking whether to label PR as stale. 2025-09-07T07:34:07.2436749Z [159691] Skipping because PR was updated recently 2025-09-07T07:34:07.2437211Z ##[endgroup] 2025-09-07T07:34:07.2437579Z ##[group]Processing PR #159698 2025-09-07T07:34:07.2437912Z [159698] URL: https://github.com/pytorch/pytorch/pull/159698 2025-09-07T07:34:07.2438313Z [159698] Checking whether to label PR as stale. 2025-09-07T07:34:07.2438667Z [159698] Skipping because PR was updated recently 2025-09-07T07:34:07.2439112Z ##[endgroup] 2025-09-07T07:34:07.2439476Z ##[group]Processing PR #159715 2025-09-07T07:34:07.2439879Z [159715] URL: https://github.com/pytorch/pytorch/pull/159715 2025-09-07T07:34:07.2440455Z [159715] Checking whether to label PR as stale. 2025-09-07T07:34:07.2441014Z [159715] Skipping because PR was updated recently 2025-09-07T07:34:07.2441690Z ##[endgroup] 2025-09-07T07:34:07.2442285Z ##[group]Processing PR #159716 2025-09-07T07:34:07.2442795Z [159716] URL: https://github.com/pytorch/pytorch/pull/159716 2025-09-07T07:34:07.2443213Z [159716] Checking whether to label PR as stale. 2025-09-07T07:34:07.2443559Z [159716] Skipping because PR was updated recently 2025-09-07T07:34:07.2444030Z ##[endgroup] 2025-09-07T07:34:07.2444402Z ##[group]Processing PR #159718 2025-09-07T07:34:07.2444739Z [159718] URL: https://github.com/pytorch/pytorch/pull/159718 2025-09-07T07:34:07.2445144Z [159718] Checking whether to label PR as stale. 2025-09-07T07:34:07.2445502Z [159718] Skipping because PR was updated recently 2025-09-07T07:34:07.2445953Z ##[endgroup] 2025-09-07T07:34:07.2446319Z ##[group]Processing PR #159735 2025-09-07T07:34:07.2446663Z [159735] URL: https://github.com/pytorch/pytorch/pull/159735 2025-09-07T07:34:07.2447052Z [159735] Checking whether to label PR as stale. 2025-09-07T07:34:07.2447409Z [159735] Skipping because PR was updated recently 2025-09-07T07:34:07.2447866Z ##[endgroup] 2025-09-07T07:34:07.2448222Z ##[group]Processing PR #159736 2025-09-07T07:34:07.2448730Z [159736] URL: https://github.com/pytorch/pytorch/pull/159736 2025-09-07T07:34:07.2449132Z [159736] Checking whether to label PR as stale. 2025-09-07T07:34:07.2449479Z [159736] Skipping because PR was updated recently 2025-09-07T07:34:07.2449952Z ##[endgroup] 2025-09-07T07:34:07.2450327Z ##[group]Processing PR #159737 2025-09-07T07:34:07.2450661Z [159737] URL: https://github.com/pytorch/pytorch/pull/159737 2025-09-07T07:34:07.2451069Z [159737] Checking whether to label PR as stale. 2025-09-07T07:34:07.2451416Z [159737] Skipping because PR was updated recently 2025-09-07T07:34:07.2451868Z ##[endgroup] 2025-09-07T07:34:07.2452237Z ##[group]Processing PR #159751 2025-09-07T07:34:07.2452585Z [159751] URL: https://github.com/pytorch/pytorch/pull/159751 2025-09-07T07:34:07.2452971Z [159751] Checking whether to label PR as stale. 2025-09-07T07:34:07.2453329Z [159751] Skipping because PR was updated recently 2025-09-07T07:34:07.2453793Z ##[endgroup] 2025-09-07T07:34:07.2454145Z ##[group]Processing PR #159757 2025-09-07T07:34:07.2454497Z [159757] URL: https://github.com/pytorch/pytorch/pull/159757 2025-09-07T07:34:07.2454894Z [159757] Checking whether to label PR as stale. 2025-09-07T07:34:07.2455234Z [159757] Skipping because PR was updated recently 2025-09-07T07:34:07.2455689Z ##[endgroup] 2025-09-07T07:34:07.2456054Z ##[group]Processing PR #159766 2025-09-07T07:34:07.2456468Z [159766] URL: https://github.com/pytorch/pytorch/pull/159766 2025-09-07T07:34:07.2456872Z [159766] Checking whether to label PR as stale. 2025-09-07T07:34:07.2457214Z [159766] Skipping because PR was updated recently 2025-09-07T07:34:07.2457672Z ##[endgroup] 2025-09-07T07:34:07.2458040Z ##[group]Processing PR #159767 2025-09-07T07:34:07.2458389Z [159767] URL: https://github.com/pytorch/pytorch/pull/159767 2025-09-07T07:34:07.2458774Z [159767] Checking whether to label PR as stale. 2025-09-07T07:34:07.2459132Z [159767] Skipping because PR was updated recently 2025-09-07T07:34:07.2459587Z ##[endgroup] 2025-09-07T07:34:07.2459938Z ##[group]Processing PR #159768 2025-09-07T07:34:07.2460288Z [159768] URL: https://github.com/pytorch/pytorch/pull/159768 2025-09-07T07:34:07.2460683Z [159768] Checking whether to label PR as stale. 2025-09-07T07:34:07.2461022Z [159768] Skipping because PR was updated recently 2025-09-07T07:34:07.2461479Z ##[endgroup] 2025-09-07T07:34:07.2461845Z ##[group]Processing PR #159774 2025-09-07T07:34:07.2462179Z [159774] URL: https://github.com/pytorch/pytorch/pull/159774 2025-09-07T07:34:07.2462573Z [159774] Checking whether to label PR as stale. 2025-09-07T07:34:07.2462914Z [159774] Skipping because PR was updated recently 2025-09-07T07:34:07.2463370Z ##[endgroup] 2025-09-07T07:34:07.2463733Z ##[group]Processing PR #159778 2025-09-07T07:34:07.2464076Z [159778] URL: https://github.com/pytorch/pytorch/pull/159778 2025-09-07T07:34:07.2464460Z [159778] Checking whether to label PR as stale. 2025-09-07T07:34:07.2464817Z [159778] Skipping because PR was updated recently 2025-09-07T07:34:07.2465275Z ##[endgroup] 2025-09-07T07:34:07.2465626Z ##[group]Processing PR #159780 2025-09-07T07:34:07.2465969Z [159780] URL: https://github.com/pytorch/pytorch/pull/159780 2025-09-07T07:34:07.2466350Z [159780] Checking whether to label PR as stale. 2025-09-07T07:34:07.2466809Z [159780] Skipping because PR was updated recently 2025-09-07T07:34:07.2467274Z ##[endgroup] 2025-09-07T07:34:07.2467639Z ##[group]Processing PR #159785 2025-09-07T07:34:07.2467975Z [159785] URL: https://github.com/pytorch/pytorch/pull/159785 2025-09-07T07:34:07.2468371Z [159785] Checking whether to label PR as stale. 2025-09-07T07:34:07.2468712Z [159785] Skipping because PR was updated recently 2025-09-07T07:34:07.2469167Z ##[endgroup] 2025-09-07T07:34:07.2469532Z ##[group]Processing PR #159794 2025-09-07T07:34:07.2469865Z [159794] URL: https://github.com/pytorch/pytorch/pull/159794 2025-09-07T07:34:07.2470262Z [159794] Checking whether to label PR as stale. 2025-09-07T07:34:07.2470616Z [159794] Skipping because PR was updated recently 2025-09-07T07:34:07.2471059Z ##[endgroup] 2025-09-07T07:34:07.2471559Z ##[group]Processing PR #159795 2025-09-07T07:34:07.2471908Z [159795] URL: https://github.com/pytorch/pytorch/pull/159795 2025-09-07T07:34:07.2472293Z [159795] Checking whether to label PR as stale. 2025-09-07T07:34:07.2472647Z [159795] Skipping because PR was updated recently 2025-09-07T07:34:07.2473110Z ##[endgroup] 2025-09-07T07:34:07.2473484Z ##[group]Processing PR #159797 2025-09-07T07:34:07.2473823Z [159797] URL: https://github.com/pytorch/pytorch/pull/159797 2025-09-07T07:34:07.2474223Z [159797] Checking whether to label PR as stale. 2025-09-07T07:34:07.2474565Z [159797] Skipping because PR was updated recently 2025-09-07T07:34:07.2475023Z ##[endgroup] 2025-09-07T07:34:07.2475387Z ##[group]Processing PR #159804 2025-09-07T07:34:07.2475719Z [159804] URL: https://github.com/pytorch/pytorch/pull/159804 2025-09-07T07:34:07.2476113Z [159804] Checking whether to label PR as stale. 2025-09-07T07:34:07.2476467Z [159804] Skipping because PR was updated recently 2025-09-07T07:34:07.2476913Z ##[endgroup] 2025-09-07T07:34:07.2477275Z ##[group]Processing PR #159808 2025-09-07T07:34:07.2477621Z [159808] URL: https://github.com/pytorch/pytorch/pull/159808 2025-09-07T07:34:07.2478003Z [159808] Checking whether to label PR as stale. 2025-09-07T07:34:07.2478355Z [159808] Skipping because PR was updated recently 2025-09-07T07:34:07.2478812Z ##[endgroup] 2025-09-07T07:34:07.2479266Z ##[group]Processing PR #159812 2025-09-07T07:34:07.2479617Z [159812] URL: https://github.com/pytorch/pytorch/pull/159812 2025-09-07T07:34:07.2480015Z [159812] Checking whether to label PR as stale. 2025-09-07T07:34:07.2480356Z [159812] Skipping because PR was updated recently 2025-09-07T07:34:07.2480820Z ##[endgroup] 2025-09-07T07:34:07.2481185Z ##[group]Processing PR #159813 2025-09-07T07:34:07.2481516Z [159813] URL: https://github.com/pytorch/pytorch/pull/159813 2025-09-07T07:34:07.2481910Z [159813] Checking whether to label PR as stale. 2025-09-07T07:34:07.2482252Z [159813] Skipping because PR was updated recently 2025-09-07T07:34:07.2482709Z ##[endgroup] 2025-09-07T07:34:07.2483072Z ##[group]Processing PR #159815 2025-09-07T07:34:07.2483418Z [159815] URL: https://github.com/pytorch/pytorch/pull/159815 2025-09-07T07:34:07.2483800Z [159815] Checking whether to label PR as stale. 2025-09-07T07:34:07.2484152Z [159815] Skipping because PR was updated recently 2025-09-07T07:34:07.2484613Z ##[endgroup] 2025-09-07T07:34:07.2484968Z ##[group]Processing PR #159821 2025-09-07T07:34:07.2485407Z [159821] URL: https://github.com/pytorch/pytorch/pull/159821 2025-09-07T07:34:07.2485814Z [159821] Checking whether to label PR as stale. 2025-09-07T07:34:07.2486154Z [159821] Skipping because PR was updated recently 2025-09-07T07:34:07.2486614Z ##[endgroup] 2025-09-07T07:34:07.2486977Z ##[group]Processing PR #159827 2025-09-07T07:34:07.2487310Z [159827] URL: https://github.com/pytorch/pytorch/pull/159827 2025-09-07T07:34:07.2487704Z [159827] Checking whether to label PR as stale. 2025-09-07T07:34:07.2488044Z [159827] Skipping because PR was updated recently 2025-09-07T07:34:07.2488505Z ##[endgroup] 2025-09-07T07:34:07.2488870Z ##[group]Processing PR #159828 2025-09-07T07:34:07.2489214Z [159828] URL: https://github.com/pytorch/pytorch/pull/159828 2025-09-07T07:34:07.2489597Z [159828] Checking whether to label PR as stale. 2025-09-07T07:34:07.2489952Z [159828] Skipping because PR was updated recently 2025-09-07T07:34:07.2490411Z ##[endgroup] 2025-09-07T07:34:07.2490766Z ##[group]Processing PR #159830 2025-09-07T07:34:07.2491111Z [159830] URL: https://github.com/pytorch/pytorch/pull/159830 2025-09-07T07:34:07.2491493Z [159830] Checking whether to label PR as stale. 2025-09-07T07:34:07.2491848Z [159830] Skipping because PR was updated recently 2025-09-07T07:34:07.2492306Z ##[endgroup] 2025-09-07T07:34:07.2492669Z ##[group]Processing PR #159835 2025-09-07T07:34:07.2492999Z [159835] URL: https://github.com/pytorch/pytorch/pull/159835 2025-09-07T07:34:07.2493392Z [159835] Checking whether to label PR as stale. 2025-09-07T07:34:07.2493732Z [159835] Skipping because PR was updated recently 2025-09-07T07:34:07.2494273Z ##[endgroup] 2025-09-07T07:34:07.2494644Z ##[group]Processing PR #159837 2025-09-07T07:34:07.2494979Z [159837] URL: https://github.com/pytorch/pytorch/pull/159837 2025-09-07T07:34:07.2495375Z [159837] Checking whether to label PR as stale. 2025-09-07T07:34:07.2495728Z [159837] Skipping because PR was updated recently 2025-09-07T07:34:07.2496183Z ##[endgroup] 2025-09-07T07:34:07.2496548Z ##[group]Processing PR #159850 2025-09-07T07:34:07.2496890Z [159850] URL: https://github.com/pytorch/pytorch/pull/159850 2025-09-07T07:34:07.2497276Z [159850] Checking whether to label PR as stale. 2025-09-07T07:34:07.2497628Z [159850] Skipping because PR was updated recently 2025-09-07T07:34:07.2498080Z ##[endgroup] 2025-09-07T07:34:07.2498442Z ##[group]Processing PR #159856 2025-09-07T07:34:07.2498773Z [159856] URL: https://github.com/pytorch/pytorch/pull/159856 2025-09-07T07:34:07.2499166Z [159856] Checking whether to label PR as stale. 2025-09-07T07:34:07.2499510Z [159856] Skipping because PR was updated recently 2025-09-07T07:34:07.2499962Z ##[endgroup] 2025-09-07T07:34:07.2500330Z ##[group]Processing PR #159858 2025-09-07T07:34:07.2500662Z [159858] URL: https://github.com/pytorch/pytorch/pull/159858 2025-09-07T07:34:07.2501057Z [159858] Checking whether to label PR as stale. 2025-09-07T07:34:07.2501470Z [159858] Skipping because PR was updated recently 2025-09-07T07:34:07.2502013Z ##[endgroup] 2025-09-07T07:34:07.2502380Z ##[group]Processing PR #159859 2025-09-07T07:34:07.2502730Z [159859] URL: https://github.com/pytorch/pytorch/pull/159859 2025-09-07T07:34:07.2503114Z [159859] Checking whether to label PR as stale. 2025-09-07T07:34:07.2503469Z [159859] Skipping because PR was updated recently 2025-09-07T07:34:07.2503927Z ##[endgroup] 2025-09-07T07:34:07.2504281Z ##[group]Processing PR #159861 2025-09-07T07:34:07.2504628Z [159861] URL: https://github.com/pytorch/pytorch/pull/159861 2025-09-07T07:34:07.2505023Z [159861] Checking whether to label PR as stale. 2025-09-07T07:34:07.2505369Z [159861] Skipping because PR was updated recently 2025-09-07T07:34:07.2505829Z ##[endgroup] 2025-09-07T07:34:07.2506194Z ##[group]Processing PR #159862 2025-09-07T07:34:07.2506527Z [159862] URL: https://github.com/pytorch/pytorch/pull/159862 2025-09-07T07:34:07.2507007Z [159862] Checking whether to label PR as stale. 2025-09-07T07:34:07.2507358Z [159862] Skipping because PR was updated recently 2025-09-07T07:34:07.2507825Z ##[endgroup] 2025-09-07T07:34:07.2508193Z ##[group]Processing PR #159868 2025-09-07T07:34:07.2508541Z [159868] URL: https://github.com/pytorch/pytorch/pull/159868 2025-09-07T07:34:07.2508923Z [159868] Checking whether to label PR as stale. 2025-09-07T07:34:07.2509276Z [159868] Skipping because PR was updated recently 2025-09-07T07:34:07.2509730Z ##[endgroup] 2025-09-07T07:34:07.2510082Z ##[group]Processing PR #159873 2025-09-07T07:34:07.2510426Z [159873] URL: https://github.com/pytorch/pytorch/pull/159873 2025-09-07T07:34:07.2510819Z [159873] Checking whether to label PR as stale. 2025-09-07T07:34:07.2511166Z [159873] Skipping because PR was updated recently 2025-09-07T07:34:07.2511624Z ##[endgroup] 2025-09-07T07:34:07.2511985Z ##[group]Processing PR #159874 2025-09-07T07:34:07.2512317Z [159874] URL: https://github.com/pytorch/pytorch/pull/159874 2025-09-07T07:34:07.2512715Z [159874] Checking whether to label PR as stale. 2025-09-07T07:34:07.2513059Z [159874] Skipping because PR was updated recently 2025-09-07T07:34:07.2513513Z ##[endgroup] 2025-09-07T07:34:07.2513880Z ##[group]Processing PR #159875 2025-09-07T07:34:07.2514222Z [159875] URL: https://github.com/pytorch/pytorch/pull/159875 2025-09-07T07:34:07.2514606Z [159875] Checking whether to label PR as stale. 2025-09-07T07:34:07.2514958Z [159875] Skipping because PR was updated recently 2025-09-07T07:34:07.2515417Z ##[endgroup] 2025-09-07T07:34:07.2515767Z ##[group]Processing PR #159876 2025-09-07T07:34:07.2516111Z [159876] URL: https://github.com/pytorch/pytorch/pull/159876 2025-09-07T07:34:07.2516492Z [159876] Checking whether to label PR as stale. 2025-09-07T07:34:07.2516922Z [159876] Skipping because PR was updated recently 2025-09-07T07:34:07.2517389Z ##[endgroup] 2025-09-07T07:34:07.2517762Z ##[group]Processing PR #159893 2025-09-07T07:34:07.2518096Z [159893] URL: https://github.com/pytorch/pytorch/pull/159893 2025-09-07T07:34:07.2518495Z [159893] Checking whether to label PR as stale. 2025-09-07T07:34:07.2518845Z [159893] Skipping because PR was updated recently 2025-09-07T07:34:07.2519305Z ##[endgroup] 2025-09-07T07:34:07.2519667Z ##[group]Processing PR #159895 2025-09-07T07:34:07.2520011Z [159895] URL: https://github.com/pytorch/pytorch/pull/159895 2025-09-07T07:34:07.2520395Z [159895] Checking whether to label PR as stale. 2025-09-07T07:34:07.2520748Z [159895] Skipping because PR was updated recently 2025-09-07T07:34:07.2521193Z ##[endgroup] 2025-09-07T07:34:07.2521557Z ##[group]Processing PR #159898 2025-09-07T07:34:07.2521902Z [159898] URL: https://github.com/pytorch/pytorch/pull/159898 2025-09-07T07:34:07.2522292Z [159898] Checking whether to label PR as stale. 2025-09-07T07:34:07.2522646Z [159898] Skipping because PR was updated recently 2025-09-07T07:34:07.2523106Z ##[endgroup] 2025-09-07T07:34:07.2523469Z ##[group]Processing PR #159905 2025-09-07T07:34:07.2523802Z [159905] URL: https://github.com/pytorch/pytorch/pull/159905 2025-09-07T07:34:07.2524200Z [159905] Checking whether to label PR as stale. 2025-09-07T07:34:07.2524600Z [159905] Skipping because PR was updated recently 2025-09-07T07:34:07.2525064Z ##[endgroup] 2025-09-07T07:34:07.2525430Z ##[group]Processing PR #159909 2025-09-07T07:34:07.2525778Z [159909] URL: https://github.com/pytorch/pytorch/pull/159909 2025-09-07T07:34:07.2526163Z [159909] Checking whether to label PR as stale. 2025-09-07T07:34:07.2526521Z [159909] Skipping because PR was updated recently 2025-09-07T07:34:07.2526972Z ##[endgroup] 2025-09-07T07:34:07.2527337Z ##[group]Processing PR #159919 2025-09-07T07:34:07.2527682Z [159919] URL: https://github.com/pytorch/pytorch/pull/159919 2025-09-07T07:34:07.2528071Z [159919] Checking whether to label PR as stale. 2025-09-07T07:34:07.2528426Z [159919] Skipping because PR was updated recently 2025-09-07T07:34:07.2528886Z ##[endgroup] 2025-09-07T07:34:07.2529250Z ##[group]Processing PR #159934 2025-09-07T07:34:07.2529582Z [159934] URL: https://github.com/pytorch/pytorch/pull/159934 2025-09-07T07:34:07.2529988Z [159934] Checking whether to label PR as stale. 2025-09-07T07:34:07.2530332Z [159934] Skipping because PR was updated recently 2025-09-07T07:34:07.2530792Z ##[endgroup] 2025-09-07T07:34:07.2531158Z ##[group]Processing PR #159936 2025-09-07T07:34:07.2531491Z [159936] URL: https://github.com/pytorch/pytorch/pull/159936 2025-09-07T07:34:07.2531888Z [159936] Checking whether to label PR as stale. 2025-09-07T07:34:07.2532242Z [159936] Skipping because PR was updated recently 2025-09-07T07:34:07.2532686Z ##[endgroup] 2025-09-07T07:34:07.2533046Z ##[group]Processing PR #159937 2025-09-07T07:34:07.2533392Z [159937] URL: https://github.com/pytorch/pytorch/pull/159937 2025-09-07T07:34:07.2533781Z [159937] Checking whether to label PR as stale. 2025-09-07T07:34:07.2534448Z [159937] Skipping because PR was updated recently 2025-09-07T07:34:07.2534921Z ##[endgroup] 2025-09-07T07:34:07.2535275Z ##[group]Processing PR #159944 2025-09-07T07:34:07.2535627Z [159944] URL: https://github.com/pytorch/pytorch/pull/159944 2025-09-07T07:34:07.2536028Z [159944] Checking whether to label PR as stale. 2025-09-07T07:34:07.2536368Z [159944] Skipping because PR was updated recently 2025-09-07T07:34:07.2536826Z ##[endgroup] 2025-09-07T07:34:07.2537190Z ##[group]Processing PR #159946 2025-09-07T07:34:07.2537521Z [159946] URL: https://github.com/pytorch/pytorch/pull/159946 2025-09-07T07:34:07.2537915Z [159946] Checking whether to label PR as stale. 2025-09-07T07:34:07.2538254Z [159946] Skipping because PR was updated recently 2025-09-07T07:34:07.2538710Z ##[endgroup] 2025-09-07T07:34:07.2539074Z ##[group]Processing PR #159964 2025-09-07T07:34:07.2539416Z [159964] URL: https://github.com/pytorch/pytorch/pull/159964 2025-09-07T07:34:07.2539934Z [159964] Checking whether to label PR as stale. 2025-09-07T07:34:07.2540288Z [159964] Skipping because PR was updated recently 2025-09-07T07:34:07.2540747Z ##[endgroup] 2025-09-07T07:34:07.2541102Z ##[group]Processing PR #159967 2025-09-07T07:34:07.2541449Z [159967] URL: https://github.com/pytorch/pytorch/pull/159967 2025-09-07T07:34:07.2541853Z [159967] Checking whether to label PR as stale. 2025-09-07T07:34:07.2542195Z [159967] Skipping because PR was updated recently 2025-09-07T07:34:07.2542656Z ##[endgroup] 2025-09-07T07:34:07.2543020Z ##[group]Processing PR #159971 2025-09-07T07:34:07.2543351Z [159971] URL: https://github.com/pytorch/pytorch/pull/159971 2025-09-07T07:34:07.2543744Z [159971] Checking whether to label PR as stale. 2025-09-07T07:34:07.2544085Z [159971] Skipping because PR was updated recently 2025-09-07T07:34:07.2544540Z ##[endgroup] 2025-09-07T07:34:07.2544904Z ##[group]Processing PR #160017 2025-09-07T07:34:07.2545252Z [160017] URL: https://github.com/pytorch/pytorch/pull/160017 2025-09-07T07:34:07.2545636Z [160017] Checking whether to label PR as stale. 2025-09-07T07:34:07.2545991Z [160017] Skipping because PR was updated recently 2025-09-07T07:34:07.2546448Z ##[endgroup] 2025-09-07T07:34:07.2546887Z ##[group]Processing PR #160045 2025-09-07T07:34:07.2547240Z [160045] URL: https://github.com/pytorch/pytorch/pull/160045 2025-09-07T07:34:07.2547709Z [160045] Checking whether to label PR as stale. 2025-09-07T07:34:07.2548070Z [160045] Skipping because PR was updated recently 2025-09-07T07:34:07.2548535Z ##[endgroup] 2025-09-07T07:34:07.2548908Z ##[group]Processing PR #160055 2025-09-07T07:34:07.2549242Z [160055] URL: https://github.com/pytorch/pytorch/pull/160055 2025-09-07T07:34:07.2549646Z [160055] Checking whether to label PR as stale. 2025-09-07T07:34:07.2549988Z [160055] Skipping because PR was updated recently 2025-09-07T07:34:07.2550443Z ##[endgroup] 2025-09-07T07:34:07.2550805Z ##[group]Processing PR #160058 2025-09-07T07:34:07.2551152Z [160058] URL: https://github.com/pytorch/pytorch/pull/160058 2025-09-07T07:34:07.2551539Z [160058] Checking whether to label PR as stale. 2025-09-07T07:34:07.2551890Z [160058] Skipping because PR was updated recently 2025-09-07T07:34:07.2552334Z ##[endgroup] 2025-09-07T07:34:07.2552695Z ##[group]Processing PR #160061 2025-09-07T07:34:07.2553042Z [160061] URL: https://github.com/pytorch/pytorch/pull/160061 2025-09-07T07:34:07.2553425Z [160061] Checking whether to label PR as stale. 2025-09-07T07:34:07.2553775Z [160061] Skipping because PR was updated recently 2025-09-07T07:34:07.2554231Z ##[endgroup] 2025-09-07T07:34:07.2554593Z ##[group]Processing PR #160063 2025-09-07T07:34:07.2554925Z [160063] URL: https://github.com/pytorch/pytorch/pull/160063 2025-09-07T07:34:07.2555322Z [160063] Checking whether to label PR as stale. 2025-09-07T07:34:07.2555665Z [160063] Skipping because PR was updated recently 2025-09-07T07:34:07.2556120Z ##[endgroup] 2025-09-07T07:34:07.2556481Z ##[group]Processing PR #160067 2025-09-07T07:34:07.2556818Z [160067] URL: https://github.com/pytorch/pytorch/pull/160067 2025-09-07T07:34:07.2557215Z [160067] Checking whether to label PR as stale. 2025-09-07T07:34:07.2557570Z [160067] Skipping because PR was updated recently 2025-09-07T07:34:07.2558018Z ##[endgroup] 2025-09-07T07:34:08.3942509Z ##[group]Processing PR #160073 2025-09-07T07:34:08.3943746Z [160073] URL: https://github.com/pytorch/pytorch/pull/160073 2025-09-07T07:34:08.3944789Z [160073] Checking whether to label PR as stale. 2025-09-07T07:34:08.3945684Z [160073] Skipping because PR was updated recently 2025-09-07T07:34:08.3947083Z ##[endgroup] 2025-09-07T07:34:08.3948043Z ##[group]Processing PR #160076 2025-09-07T07:34:08.3949038Z [160076] URL: https://github.com/pytorch/pytorch/pull/160076 2025-09-07T07:34:08.3949932Z [160076] Checking whether to label PR as stale. 2025-09-07T07:34:08.3950786Z [160076] Skipping because PR was updated recently 2025-09-07T07:34:08.3951829Z ##[endgroup] 2025-09-07T07:34:08.3953143Z ##[group]Processing PR #160078 2025-09-07T07:34:08.3954059Z [160078] URL: https://github.com/pytorch/pytorch/pull/160078 2025-09-07T07:34:08.3955489Z [160078] Checking whether to label PR as stale. 2025-09-07T07:34:08.3956429Z [160078] Skipping because PR was updated recently 2025-09-07T07:34:08.3957576Z ##[endgroup] 2025-09-07T07:34:08.3958413Z ##[group]Processing PR #160079 2025-09-07T07:34:08.3959267Z [160079] URL: https://github.com/pytorch/pytorch/pull/160079 2025-09-07T07:34:08.3960243Z [160079] Checking whether to label PR as stale. 2025-09-07T07:34:08.3962416Z [160079] Skipping because PR was updated recently 2025-09-07T07:34:08.3963427Z ##[endgroup] 2025-09-07T07:34:08.3964261Z ##[group]Processing PR #160080 2025-09-07T07:34:08.3965063Z [160080] URL: https://github.com/pytorch/pytorch/pull/160080 2025-09-07T07:34:08.3965909Z [160080] Checking whether to label PR as stale. 2025-09-07T07:34:08.3966831Z [160080] Skipping because PR was updated recently 2025-09-07T07:34:08.3967714Z ##[endgroup] 2025-09-07T07:34:08.3968565Z ##[group]Processing PR #160082 2025-09-07T07:34:08.3969349Z [160082] URL: https://github.com/pytorch/pytorch/pull/160082 2025-09-07T07:34:08.3970219Z [160082] Checking whether to label PR as stale. 2025-09-07T07:34:08.3990022Z [160082] Skipping because PR was updated recently 2025-09-07T07:34:08.3991022Z ##[endgroup] 2025-09-07T07:34:08.3991679Z ##[group]Processing PR #160090 2025-09-07T07:34:08.3992550Z [160090] URL: https://github.com/pytorch/pytorch/pull/160090 2025-09-07T07:34:08.3993095Z [160090] Checking whether to label PR as stale. 2025-09-07T07:34:08.3993629Z [160090] Skipping because PR was updated recently 2025-09-07T07:34:08.3994349Z ##[endgroup] 2025-09-07T07:34:08.3994912Z ##[group]Processing PR #160091 2025-09-07T07:34:08.3995522Z [160091] URL: https://github.com/pytorch/pytorch/pull/160091 2025-09-07T07:34:08.3996181Z [160091] Checking whether to label PR as stale. 2025-09-07T07:34:08.3996720Z [160091] Skipping because PR was updated recently 2025-09-07T07:34:08.3997453Z ##[endgroup] 2025-09-07T07:34:08.3998023Z ##[group]Processing PR #160101 2025-09-07T07:34:08.3998544Z [160101] URL: https://github.com/pytorch/pytorch/pull/160101 2025-09-07T07:34:08.3999164Z [160101] Checking whether to label PR as stale. 2025-09-07T07:34:08.3999669Z [160101] Skipping because PR was updated recently 2025-09-07T07:34:08.4000399Z ##[endgroup] 2025-09-07T07:34:08.4001071Z ##[group]Processing PR #160105 2025-09-07T07:34:08.4001712Z [160105] URL: https://github.com/pytorch/pytorch/pull/160105 2025-09-07T07:34:08.4002444Z [160105] Checking whether to label PR as stale. 2025-09-07T07:34:08.4003107Z [160105] Skipping because PR was updated recently 2025-09-07T07:34:08.4003959Z ##[endgroup] 2025-09-07T07:34:08.4004608Z ##[group]Processing PR #160117 2025-09-07T07:34:08.4005225Z [160117] URL: https://github.com/pytorch/pytorch/pull/160117 2025-09-07T07:34:08.4005866Z [160117] Checking whether to label PR as stale. 2025-09-07T07:34:08.4006227Z [160117] Skipping because PR was updated recently 2025-09-07T07:34:08.4006702Z ##[endgroup] 2025-09-07T07:34:08.4007073Z ##[group]Processing PR #160126 2025-09-07T07:34:08.4007410Z [160126] URL: https://github.com/pytorch/pytorch/pull/160126 2025-09-07T07:34:08.4007806Z [160126] Checking whether to label PR as stale. 2025-09-07T07:34:08.4008150Z [160126] Skipping because PR was updated recently 2025-09-07T07:34:08.4008607Z ##[endgroup] 2025-09-07T07:34:08.4008977Z ##[group]Processing PR #160127 2025-09-07T07:34:08.4009324Z [160127] URL: https://github.com/pytorch/pytorch/pull/160127 2025-09-07T07:34:08.4009708Z [160127] Checking whether to label PR as stale. 2025-09-07T07:34:08.4010059Z [160127] Skipping because PR was updated recently 2025-09-07T07:34:08.4010502Z ##[endgroup] 2025-09-07T07:34:08.4010863Z ##[group]Processing PR #160129 2025-09-07T07:34:08.4011205Z [160129] URL: https://github.com/pytorch/pytorch/pull/160129 2025-09-07T07:34:08.4011591Z [160129] Checking whether to label PR as stale. 2025-09-07T07:34:08.4011941Z [160129] Skipping because PR was updated recently 2025-09-07T07:34:08.4012546Z ##[endgroup] 2025-09-07T07:34:08.4012911Z ##[group]Processing PR #160131 2025-09-07T07:34:08.4013248Z [160131] URL: https://github.com/pytorch/pytorch/pull/160131 2025-09-07T07:34:08.4013643Z [160131] Checking whether to label PR as stale. 2025-09-07T07:34:08.4013982Z [160131] Skipping because PR was updated recently 2025-09-07T07:34:08.4014436Z ##[endgroup] 2025-09-07T07:34:08.4014808Z ##[group]Processing PR #160139 2025-09-07T07:34:08.4015139Z [160139] URL: https://github.com/pytorch/pytorch/pull/160139 2025-09-07T07:34:08.4015533Z [160139] Checking whether to label PR as stale. 2025-09-07T07:34:08.4015885Z [160139] Skipping because PR was updated recently 2025-09-07T07:34:08.4016329Z ##[endgroup] 2025-09-07T07:34:08.4016690Z ##[group]Processing PR #160146 2025-09-07T07:34:08.4017033Z [160146] URL: https://github.com/pytorch/pytorch/pull/160146 2025-09-07T07:34:08.4017418Z [160146] Checking whether to label PR as stale. 2025-09-07T07:34:08.4017775Z [160146] Skipping because PR was updated recently 2025-09-07T07:34:08.4018243Z ##[endgroup] 2025-09-07T07:34:08.4018609Z ##[group]Processing PR #160151 2025-09-07T07:34:08.4018941Z [160151] URL: https://github.com/pytorch/pytorch/pull/160151 2025-09-07T07:34:08.4019338Z [160151] Checking whether to label PR as stale. 2025-09-07T07:34:08.4019678Z [160151] Skipping because PR was updated recently 2025-09-07T07:34:08.4020244Z ##[endgroup] 2025-09-07T07:34:08.4020614Z ##[group]Processing PR #160152 2025-09-07T07:34:08.4020948Z [160152] URL: https://github.com/pytorch/pytorch/pull/160152 2025-09-07T07:34:08.4021350Z [160152] Checking whether to label PR as stale. 2025-09-07T07:34:08.4021695Z [160152] Skipping because PR was updated recently 2025-09-07T07:34:08.4022160Z ##[endgroup] 2025-09-07T07:34:08.4022525Z ##[group]Processing PR #160154 2025-09-07T07:34:08.4022870Z [160154] URL: https://github.com/pytorch/pytorch/pull/160154 2025-09-07T07:34:08.4023253Z [160154] Checking whether to label PR as stale. 2025-09-07T07:34:08.4023607Z [160154] Skipping because PR was updated recently 2025-09-07T07:34:08.4024074Z ##[endgroup] 2025-09-07T07:34:08.4024427Z ##[group]Processing PR #160158 2025-09-07T07:34:08.4024774Z [160158] URL: https://github.com/pytorch/pytorch/pull/160158 2025-09-07T07:34:08.4025169Z [160158] Checking whether to label PR as stale. 2025-09-07T07:34:08.4025509Z [160158] Skipping because PR was updated recently 2025-09-07T07:34:08.4025979Z ##[endgroup] 2025-09-07T07:34:08.4026346Z ##[group]Processing PR #160161 2025-09-07T07:34:08.4026798Z [160161] URL: https://github.com/pytorch/pytorch/pull/160161 2025-09-07T07:34:08.4027208Z [160161] Checking whether to label PR as stale. 2025-09-07T07:34:08.4027549Z [160161] Skipping because PR was updated recently 2025-09-07T07:34:08.4028015Z ##[endgroup] 2025-09-07T07:34:08.4028378Z ##[group]Processing PR #160166 2025-09-07T07:34:08.4028723Z [160166] URL: https://github.com/pytorch/pytorch/pull/160166 2025-09-07T07:34:08.4029105Z [160166] Checking whether to label PR as stale. 2025-09-07T07:34:08.4029463Z [160166] Skipping because PR was updated recently 2025-09-07T07:34:08.4029917Z ##[endgroup] 2025-09-07T07:34:08.4030270Z ##[group]Processing PR #160174 2025-09-07T07:34:08.4030611Z [160174] URL: https://github.com/pytorch/pytorch/pull/160174 2025-09-07T07:34:08.4030991Z [160174] Checking whether to label PR as stale. 2025-09-07T07:34:08.4031345Z [160174] Skipping because PR was updated recently 2025-09-07T07:34:08.4031805Z ##[endgroup] 2025-09-07T07:34:08.4032164Z ##[group]Processing PR #160178 2025-09-07T07:34:08.4032493Z [160178] URL: https://github.com/pytorch/pytorch/pull/160178 2025-09-07T07:34:08.4032886Z [160178] Checking whether to label PR as stale. 2025-09-07T07:34:08.4033230Z [160178] Skipping because PR was updated recently 2025-09-07T07:34:08.4033684Z ##[endgroup] 2025-09-07T07:34:08.4034246Z ##[group]Processing PR #160180 2025-09-07T07:34:08.4034599Z [160180] URL: https://github.com/pytorch/pytorch/pull/160180 2025-09-07T07:34:08.4034985Z [160180] Checking whether to label PR as stale. 2025-09-07T07:34:08.4035524Z [160180] Skipping because PR was updated recently 2025-09-07T07:34:08.4035974Z ##[endgroup] 2025-09-07T07:34:08.4036342Z ##[group]Processing PR #160181 2025-09-07T07:34:08.4036689Z [160181] URL: https://github.com/pytorch/pytorch/pull/160181 2025-09-07T07:34:08.4037076Z [160181] Checking whether to label PR as stale. 2025-09-07T07:34:08.4037437Z [160181] Skipping because PR was updated recently 2025-09-07T07:34:08.4037895Z ##[endgroup] 2025-09-07T07:34:08.4038259Z ##[group]Processing PR #160182 2025-09-07T07:34:08.4038593Z [160182] URL: https://github.com/pytorch/pytorch/pull/160182 2025-09-07T07:34:08.4038990Z [160182] Checking whether to label PR as stale. 2025-09-07T07:34:08.4039333Z [160182] Skipping because PR was updated recently 2025-09-07T07:34:08.4039793Z ##[endgroup] 2025-09-07T07:34:08.4040155Z ##[group]Processing PR #160184 2025-09-07T07:34:08.4040489Z [160184] URL: https://github.com/pytorch/pytorch/pull/160184 2025-09-07T07:34:08.4040885Z [160184] Checking whether to label PR as stale. 2025-09-07T07:34:08.4041242Z [160184] Skipping because PR was updated recently 2025-09-07T07:34:08.4041686Z ##[endgroup] 2025-09-07T07:34:08.4042050Z ##[group]Processing PR #160186 2025-09-07T07:34:08.4042393Z [160186] URL: https://github.com/pytorch/pytorch/pull/160186 2025-09-07T07:34:08.4042777Z [160186] Checking whether to label PR as stale. 2025-09-07T07:34:08.4043215Z [160186] Skipping because PR was updated recently 2025-09-07T07:34:08.4043678Z ##[endgroup] 2025-09-07T07:34:08.4044043Z ##[group]Processing PR #160189 2025-09-07T07:34:08.4044377Z [160189] URL: https://github.com/pytorch/pytorch/pull/160189 2025-09-07T07:34:08.4044778Z [160189] Checking whether to label PR as stale. 2025-09-07T07:34:08.4045118Z [160189] Skipping because PR was updated recently 2025-09-07T07:34:08.4045597Z ##[endgroup] 2025-09-07T07:34:08.4045963Z ##[group]Processing PR #160190 2025-09-07T07:34:08.4046297Z [160190] URL: https://github.com/pytorch/pytorch/pull/160190 2025-09-07T07:34:08.4046701Z [160190] Checking whether to label PR as stale. 2025-09-07T07:34:08.4047041Z [160190] Skipping because PR was updated recently 2025-09-07T07:34:08.4047497Z ##[endgroup] 2025-09-07T07:34:08.4047862Z ##[group]Processing PR #160207 2025-09-07T07:34:08.4048195Z [160207] URL: https://github.com/pytorch/pytorch/pull/160207 2025-09-07T07:34:08.4048594Z [160207] Checking whether to label PR as stale. 2025-09-07T07:34:08.4048955Z [160207] Skipping because PR was updated recently 2025-09-07T07:34:08.4049399Z ##[endgroup] 2025-09-07T07:34:08.4049767Z ##[group]Processing PR #160209 2025-09-07T07:34:08.4050108Z [160209] URL: https://github.com/pytorch/pytorch/pull/160209 2025-09-07T07:34:08.4050498Z [160209] Checking whether to label PR as stale. 2025-09-07T07:34:08.4050849Z [160209] Skipping because PR was updated recently 2025-09-07T07:34:08.4051309Z ##[endgroup] 2025-09-07T07:34:08.4051660Z ##[group]Processing PR #160215 2025-09-07T07:34:08.4052003Z [160215] URL: https://github.com/pytorch/pytorch/pull/160215 2025-09-07T07:34:08.4052403Z [160215] Checking whether to label PR as stale. 2025-09-07T07:34:08.4052748Z [160215] Skipping because PR was updated recently 2025-09-07T07:34:08.4053209Z ##[endgroup] 2025-09-07T07:34:08.4053571Z ##[group]Processing PR #160218 2025-09-07T07:34:08.4053905Z [160218] URL: https://github.com/pytorch/pytorch/pull/160218 2025-09-07T07:34:08.4054303Z [160218] Checking whether to label PR as stale. 2025-09-07T07:34:08.4054642Z [160218] Skipping because PR was updated recently 2025-09-07T07:34:08.4055096Z ##[endgroup] 2025-09-07T07:34:08.4055454Z ##[group]Processing PR #160219 2025-09-07T07:34:08.4055794Z [160219] URL: https://github.com/pytorch/pytorch/pull/160219 2025-09-07T07:34:08.4056176Z [160219] Checking whether to label PR as stale. 2025-09-07T07:34:08.4056534Z [160219] Skipping because PR was updated recently 2025-09-07T07:34:08.4056989Z ##[endgroup] 2025-09-07T07:34:08.4057342Z ##[group]Processing PR #160224 2025-09-07T07:34:08.4057689Z [160224] URL: https://github.com/pytorch/pytorch/pull/160224 2025-09-07T07:34:08.4058160Z [160224] Checking whether to label PR as stale. 2025-09-07T07:34:08.4058501Z [160224] Skipping because PR was updated recently 2025-09-07T07:34:08.4058957Z ##[endgroup] 2025-09-07T07:34:08.4059320Z ##[group]Processing PR #160226 2025-09-07T07:34:08.4059653Z [160226] URL: https://github.com/pytorch/pytorch/pull/160226 2025-09-07T07:34:08.4060054Z [160226] Checking whether to label PR as stale. 2025-09-07T07:34:08.4060398Z [160226] Skipping because PR was updated recently 2025-09-07T07:34:08.4060854Z ##[endgroup] 2025-09-07T07:34:08.4061217Z ##[group]Processing PR #160229 2025-09-07T07:34:08.4061563Z [160229] URL: https://github.com/pytorch/pytorch/pull/160229 2025-09-07T07:34:08.4061948Z [160229] Checking whether to label PR as stale. 2025-09-07T07:34:08.4062304Z [160229] Skipping because PR was updated recently 2025-09-07T07:34:08.4062764Z ##[endgroup] 2025-09-07T07:34:08.4063115Z ##[group]Processing PR #160236 2025-09-07T07:34:08.4063463Z [160236] URL: https://github.com/pytorch/pytorch/pull/160236 2025-09-07T07:34:08.4063851Z [160236] Checking whether to label PR as stale. 2025-09-07T07:34:08.4064205Z [160236] Skipping because PR was updated recently 2025-09-07T07:34:08.4064659Z ##[endgroup] 2025-09-07T07:34:08.4065021Z ##[group]Processing PR #160239 2025-09-07T07:34:08.4065354Z [160239] URL: https://github.com/pytorch/pytorch/pull/160239 2025-09-07T07:34:08.4065811Z [160239] Checking whether to label PR as stale. 2025-09-07T07:34:08.4066155Z [160239] Skipping because PR was updated recently 2025-09-07T07:34:08.4066701Z ##[endgroup] 2025-09-07T07:34:08.4067078Z ##[group]Processing PR #160258 2025-09-07T07:34:08.4067428Z [160258] URL: https://github.com/pytorch/pytorch/pull/160258 2025-09-07T07:34:08.4067812Z [160258] Checking whether to label PR as stale. 2025-09-07T07:34:08.4068167Z [160258] Skipping because PR was updated recently 2025-09-07T07:34:08.4068826Z ##[endgroup] 2025-09-07T07:34:08.4069193Z ##[group]Processing PR #160264 2025-09-07T07:34:08.4069542Z [160264] URL: https://github.com/pytorch/pytorch/pull/160264 2025-09-07T07:34:08.4069932Z [160264] Checking whether to label PR as stale. 2025-09-07T07:34:08.4070285Z [160264] Skipping because PR was updated recently 2025-09-07T07:34:08.4070741Z ##[endgroup] 2025-09-07T07:34:08.4071104Z ##[group]Processing PR #160266 2025-09-07T07:34:08.4071436Z [160266] URL: https://github.com/pytorch/pytorch/pull/160266 2025-09-07T07:34:08.4071838Z [160266] Checking whether to label PR as stale. 2025-09-07T07:34:08.4072181Z [160266] Skipping because PR was updated recently 2025-09-07T07:34:08.4072639Z ##[endgroup] 2025-09-07T07:34:08.4073003Z ##[group]Processing PR #160279 2025-09-07T07:34:08.4073340Z [160279] URL: https://github.com/pytorch/pytorch/pull/160279 2025-09-07T07:34:08.4073739Z [160279] Checking whether to label PR as stale. 2025-09-07T07:34:08.4074098Z [160279] Skipping because PR was updated recently 2025-09-07T07:34:08.4074547Z ##[endgroup] 2025-09-07T07:34:08.4074911Z ##[group]Processing PR #160282 2025-09-07T07:34:08.4075257Z [160282] URL: https://github.com/pytorch/pytorch/pull/160282 2025-09-07T07:34:08.4075640Z [160282] Checking whether to label PR as stale. 2025-09-07T07:34:08.4075993Z [160282] Skipping because PR was updated recently 2025-09-07T07:34:08.4076587Z ##[endgroup] 2025-09-07T07:34:08.4076944Z ##[group]Processing PR #160288 2025-09-07T07:34:08.4077301Z [160288] URL: https://github.com/pytorch/pytorch/pull/160288 2025-09-07T07:34:08.4077704Z [160288] Checking whether to label PR as stale. 2025-09-07T07:34:08.4078050Z [160288] Skipping because PR was updated recently 2025-09-07T07:34:08.4078511Z ##[endgroup] 2025-09-07T07:34:08.4078877Z ##[group]Processing PR #160298 2025-09-07T07:34:08.4079288Z [160298] URL: https://github.com/pytorch/pytorch/pull/160298 2025-09-07T07:34:08.4079810Z [160298] Checking whether to label PR as stale. 2025-09-07T07:34:08.4080155Z [160298] Skipping because PR was updated recently 2025-09-07T07:34:08.4080618Z ##[endgroup] 2025-09-07T07:34:08.4080984Z ##[group]Processing PR #160299 2025-09-07T07:34:08.4081440Z [160299] URL: https://github.com/pytorch/pytorch/pull/160299 2025-09-07T07:34:08.4081826Z [160299] Checking whether to label PR as stale. 2025-09-07T07:34:08.4082182Z [160299] Skipping because PR was updated recently 2025-09-07T07:34:08.4082639Z ##[endgroup] 2025-09-07T07:34:08.4082988Z ##[group]Processing PR #160301 2025-09-07T07:34:08.4083342Z [160301] URL: https://github.com/pytorch/pytorch/pull/160301 2025-09-07T07:34:08.4083737Z [160301] Checking whether to label PR as stale. 2025-09-07T07:34:08.4084077Z [160301] Skipping because PR was updated recently 2025-09-07T07:34:08.4084534Z ##[endgroup] 2025-09-07T07:34:08.4084895Z ##[group]Processing PR #160315 2025-09-07T07:34:08.4085316Z [160315] URL: https://github.com/pytorch/pytorch/pull/160315 2025-09-07T07:34:08.4085699Z [160315] Checking whether to label PR as stale. 2025-09-07T07:34:08.4086054Z [160315] Skipping because PR was updated recently 2025-09-07T07:34:08.4086508Z ##[endgroup] 2025-09-07T07:34:08.4086873Z ##[group]Processing PR #160318 2025-09-07T07:34:08.4087206Z [160318] URL: https://github.com/pytorch/pytorch/pull/160318 2025-09-07T07:34:08.4087600Z [160318] Checking whether to label PR as stale. 2025-09-07T07:34:08.4087938Z [160318] Skipping because PR was updated recently 2025-09-07T07:34:08.4088391Z ##[endgroup] 2025-09-07T07:34:08.4088752Z ##[group]Processing PR #160319 2025-09-07T07:34:08.4089143Z [160319] URL: https://github.com/pytorch/pytorch/pull/160319 2025-09-07T07:34:08.4089538Z [160319] Checking whether to label PR as stale. 2025-09-07T07:34:08.4089892Z [160319] Skipping because PR was updated recently 2025-09-07T07:34:08.4090484Z ##[endgroup] 2025-09-07T07:34:08.4090852Z ##[group]Processing PR #160323 2025-09-07T07:34:08.4091199Z [160323] URL: https://github.com/pytorch/pytorch/pull/160323 2025-09-07T07:34:08.4091585Z [160323] Checking whether to label PR as stale. 2025-09-07T07:34:08.4091937Z [160323] Skipping because PR was updated recently 2025-09-07T07:34:08.4092394Z ##[endgroup] 2025-09-07T07:34:08.4092761Z ##[group]Processing PR #160324 2025-09-07T07:34:08.4093094Z [160324] URL: https://github.com/pytorch/pytorch/pull/160324 2025-09-07T07:34:08.4093491Z [160324] Checking whether to label PR as stale. 2025-09-07T07:34:08.4093831Z [160324] Skipping because PR was updated recently 2025-09-07T07:34:08.4094288Z ##[endgroup] 2025-09-07T07:34:08.4094653Z ##[group]Processing PR #160325 2025-09-07T07:34:08.4094989Z [160325] URL: https://github.com/pytorch/pytorch/pull/160325 2025-09-07T07:34:08.4095387Z [160325] Checking whether to label PR as stale. 2025-09-07T07:34:08.4095730Z [160325] Skipping because PR was updated recently 2025-09-07T07:34:08.4096187Z ##[endgroup] 2025-09-07T07:34:08.4096549Z ##[group]Processing PR #160326 2025-09-07T07:34:08.4096894Z [160326] URL: https://github.com/pytorch/pytorch/pull/160326 2025-09-07T07:34:08.4097276Z [160326] Checking whether to label PR as stale. 2025-09-07T07:34:08.4097628Z [160326] Skipping because PR was updated recently 2025-09-07T07:34:08.4098083Z ##[endgroup] 2025-09-07T07:34:08.4098436Z ##[group]Processing PR #160327 2025-09-07T07:34:08.4098780Z [160327] URL: https://github.com/pytorch/pytorch/pull/160327 2025-09-07T07:34:08.4099178Z [160327] Checking whether to label PR as stale. 2025-09-07T07:34:08.4099517Z [160327] Skipping because PR was updated recently 2025-09-07T07:34:08.4099972Z ##[endgroup] 2025-09-07T07:34:08.4100332Z ##[group]Processing PR #160328 2025-09-07T07:34:08.4100667Z [160328] URL: https://github.com/pytorch/pytorch/pull/160328 2025-09-07T07:34:08.4101063Z [160328] Checking whether to label PR as stale. 2025-09-07T07:34:08.4101403Z [160328] Skipping because PR was updated recently 2025-09-07T07:34:08.4101857Z ##[endgroup] 2025-09-07T07:34:08.4102218Z ##[group]Processing PR #160329 2025-09-07T07:34:08.4102560Z [160329] URL: https://github.com/pytorch/pytorch/pull/160329 2025-09-07T07:34:08.4102944Z [160329] Checking whether to label PR as stale. 2025-09-07T07:34:08.4103297Z [160329] Skipping because PR was updated recently 2025-09-07T07:34:08.4103849Z ##[endgroup] 2025-09-07T07:34:08.4104198Z ##[group]Processing PR #160338 2025-09-07T07:34:08.4104542Z [160338] URL: https://github.com/pytorch/pytorch/pull/160338 2025-09-07T07:34:08.4104926Z [160338] Checking whether to label PR as stale. 2025-09-07T07:34:08.4105284Z [160338] Skipping because PR was updated recently 2025-09-07T07:34:08.4105744Z ##[endgroup] 2025-09-07T07:34:08.4106118Z ##[group]Processing PR #160339 2025-09-07T07:34:08.4106454Z [160339] URL: https://github.com/pytorch/pytorch/pull/160339 2025-09-07T07:34:08.4106947Z [160339] Checking whether to label PR as stale. 2025-09-07T07:34:08.4107289Z [160339] Skipping because PR was updated recently 2025-09-07T07:34:08.4107752Z ##[endgroup] 2025-09-07T07:34:08.4108116Z ##[group]Processing PR #160351 2025-09-07T07:34:08.4108462Z [160351] URL: https://github.com/pytorch/pytorch/pull/160351 2025-09-07T07:34:08.4108845Z [160351] Checking whether to label PR as stale. 2025-09-07T07:34:08.4109198Z [160351] Skipping because PR was updated recently 2025-09-07T07:34:08.4109647Z ##[endgroup] 2025-09-07T07:34:08.4110026Z ##[group]Processing PR #160353 2025-09-07T07:34:08.4110371Z [160353] URL: https://github.com/pytorch/pytorch/pull/160353 2025-09-07T07:34:08.4110755Z [160353] Checking whether to label PR as stale. 2025-09-07T07:34:08.4111111Z [160353] Skipping because PR was updated recently 2025-09-07T07:34:08.4111571Z ##[endgroup] 2025-09-07T07:34:08.4112005Z ##[group]Processing PR #160371 2025-09-07T07:34:08.4112341Z [160371] URL: https://github.com/pytorch/pytorch/pull/160371 2025-09-07T07:34:08.4112743Z [160371] Checking whether to label PR as stale. 2025-09-07T07:34:08.4113088Z [160371] Skipping because PR was updated recently 2025-09-07T07:34:08.4113552Z ##[endgroup] 2025-09-07T07:34:08.4113920Z ##[group]Processing PR #160372 2025-09-07T07:34:08.4114254Z [160372] URL: https://github.com/pytorch/pytorch/pull/160372 2025-09-07T07:34:08.4114657Z [160372] Checking whether to label PR as stale. 2025-09-07T07:34:08.4115013Z [160372] Skipping because PR was updated recently 2025-09-07T07:34:08.4115461Z ##[endgroup] 2025-09-07T07:34:08.4115826Z ##[group]Processing PR #160380 2025-09-07T07:34:08.4116169Z [160380] URL: https://github.com/pytorch/pytorch/pull/160380 2025-09-07T07:34:08.4116556Z [160380] Checking whether to label PR as stale. 2025-09-07T07:34:08.4116907Z [160380] Skipping because PR was updated recently 2025-09-07T07:34:08.4117376Z ##[endgroup] 2025-09-07T07:34:08.4117748Z ##[group]Processing PR #160381 2025-09-07T07:34:08.4118078Z [160381] URL: https://github.com/pytorch/pytorch/pull/160381 2025-09-07T07:34:08.4118469Z [160381] Checking whether to label PR as stale. 2025-09-07T07:34:08.4118807Z [160381] Skipping because PR was updated recently 2025-09-07T07:34:08.4119259Z ##[endgroup] 2025-09-07T07:34:08.4119620Z ##[group]Processing PR #160401 2025-09-07T07:34:08.4119950Z [160401] URL: https://github.com/pytorch/pytorch/pull/160401 2025-09-07T07:34:08.4120341Z [160401] Checking whether to label PR as stale. 2025-09-07T07:34:08.4120679Z [160401] Skipping because PR was updated recently 2025-09-07T07:34:08.4121138Z ##[endgroup] 2025-09-07T07:34:08.4121499Z ##[group]Processing PR #160406 2025-09-07T07:34:08.4121846Z [160406] URL: https://github.com/pytorch/pytorch/pull/160406 2025-09-07T07:34:08.4122229Z [160406] Checking whether to label PR as stale. 2025-09-07T07:34:08.4122580Z [160406] Skipping because PR was updated recently 2025-09-07T07:34:08.4123039Z ##[endgroup] 2025-09-07T07:34:08.4123393Z ##[group]Processing PR #160408 2025-09-07T07:34:08.4123737Z [160408] URL: https://github.com/pytorch/pytorch/pull/160408 2025-09-07T07:34:08.4124131Z [160408] Checking whether to label PR as stale. 2025-09-07T07:34:08.4124475Z [160408] Skipping because PR was updated recently 2025-09-07T07:34:08.4124930Z ##[endgroup] 2025-09-07T07:34:08.4125290Z ##[group]Processing PR #160412 2025-09-07T07:34:08.4125622Z [160412] URL: https://github.com/pytorch/pytorch/pull/160412 2025-09-07T07:34:08.4126021Z [160412] Checking whether to label PR as stale. 2025-09-07T07:34:08.4126449Z [160412] Skipping because PR was updated recently 2025-09-07T07:34:08.4126916Z ##[endgroup] 2025-09-07T07:34:08.4127286Z ##[group]Processing PR #160417 2025-09-07T07:34:08.4127638Z [160417] URL: https://github.com/pytorch/pytorch/pull/160417 2025-09-07T07:34:08.4128025Z [160417] Checking whether to label PR as stale. 2025-09-07T07:34:08.4128382Z [160417] Skipping because PR was updated recently 2025-09-07T07:34:08.4128844Z ##[endgroup] 2025-09-07T07:34:08.4129193Z ##[group]Processing PR #160429 2025-09-07T07:34:08.4129538Z [160429] URL: https://github.com/pytorch/pytorch/pull/160429 2025-09-07T07:34:08.4129919Z [160429] Checking whether to label PR as stale. 2025-09-07T07:34:08.4130271Z [160429] Skipping because PR was updated recently 2025-09-07T07:34:08.4130732Z ##[endgroup] 2025-09-07T07:34:08.4131183Z ##[group]Processing PR #160431 2025-09-07T07:34:08.4131518Z [160431] URL: https://github.com/pytorch/pytorch/pull/160431 2025-09-07T07:34:08.4131917Z [160431] Checking whether to label PR as stale. 2025-09-07T07:34:08.4132266Z [160431] Skipping because PR was updated recently 2025-09-07T07:34:08.4132729Z ##[endgroup] 2025-09-07T07:34:08.4133091Z ##[group]Processing PR #160434 2025-09-07T07:34:08.4133436Z [160434] URL: https://github.com/pytorch/pytorch/pull/160434 2025-09-07T07:34:08.4133977Z [160434] Checking whether to label PR as stale. 2025-09-07T07:34:08.4134504Z [160434] Skipping because PR was updated recently 2025-09-07T07:34:08.4134955Z ##[endgroup] 2025-09-07T07:34:08.4135326Z ##[group]Processing PR #160452 2025-09-07T07:34:08.4135674Z [160452] URL: https://github.com/pytorch/pytorch/pull/160452 2025-09-07T07:34:08.4136062Z [160452] Checking whether to label PR as stale. 2025-09-07T07:34:08.4136419Z [160452] Skipping because PR was updated recently 2025-09-07T07:34:08.4136873Z ##[endgroup] 2025-09-07T07:34:08.4137237Z ##[group]Processing PR #160461 2025-09-07T07:34:08.4137571Z [160461] URL: https://github.com/pytorch/pytorch/pull/160461 2025-09-07T07:34:08.4137971Z [160461] Checking whether to label PR as stale. 2025-09-07T07:34:08.4138325Z [160461] Skipping because PR was updated recently 2025-09-07T07:34:08.4138780Z ##[endgroup] 2025-09-07T07:34:08.4139149Z ##[group]Processing PR #160468 2025-09-07T07:34:08.4139483Z [160468] URL: https://github.com/pytorch/pytorch/pull/160468 2025-09-07T07:34:08.4139877Z [160468] Checking whether to label PR as stale. 2025-09-07T07:34:08.4149018Z [160468] Skipping because PR was updated recently 2025-09-07T07:34:08.4149647Z ##[endgroup] 2025-09-07T07:34:08.4150024Z ##[group]Processing PR #160473 2025-09-07T07:34:08.4150388Z [160473] URL: https://github.com/pytorch/pytorch/pull/160473 2025-09-07T07:34:08.4150801Z [160473] Checking whether to label PR as stale. 2025-09-07T07:34:08.4151152Z [160473] Skipping because PR was updated recently 2025-09-07T07:34:08.4151619Z ##[endgroup] 2025-09-07T07:34:08.4151994Z ##[group]Processing PR #160474 2025-09-07T07:34:08.4152328Z [160474] URL: https://github.com/pytorch/pytorch/pull/160474 2025-09-07T07:34:08.4152729Z [160474] Checking whether to label PR as stale. 2025-09-07T07:34:08.4153083Z [160474] Skipping because PR was updated recently 2025-09-07T07:34:08.4153549Z ##[endgroup] 2025-09-07T07:34:08.4153921Z ##[group]Processing PR #160476 2025-09-07T07:34:08.4154270Z [160476] URL: https://github.com/pytorch/pytorch/pull/160476 2025-09-07T07:34:08.4154657Z [160476] Checking whether to label PR as stale. 2025-09-07T07:34:08.4155023Z [160476] Skipping because PR was updated recently 2025-09-07T07:34:08.4155489Z ##[endgroup] 2025-09-07T07:34:08.4155847Z ##[group]Processing PR #160480 2025-09-07T07:34:08.4156195Z [160480] URL: https://github.com/pytorch/pytorch/pull/160480 2025-09-07T07:34:08.4156580Z [160480] Checking whether to label PR as stale. 2025-09-07T07:34:08.4156938Z [160480] Skipping because PR was updated recently 2025-09-07T07:34:08.4157397Z ##[endgroup] 2025-09-07T07:34:08.4157851Z ##[group]Processing PR #160486 2025-09-07T07:34:08.4158187Z [160486] URL: https://github.com/pytorch/pytorch/pull/160486 2025-09-07T07:34:08.4158927Z [160486] Checking whether to label PR as stale. 2025-09-07T07:34:08.4159270Z [160486] Skipping because PR was updated recently 2025-09-07T07:34:08.4159733Z ##[endgroup] 2025-09-07T07:34:08.4160103Z ##[group]Processing PR #160488 2025-09-07T07:34:08.4160437Z [160488] URL: https://github.com/pytorch/pytorch/pull/160488 2025-09-07T07:34:08.4160837Z [160488] Checking whether to label PR as stale. 2025-09-07T07:34:08.4161198Z [160488] Skipping because PR was updated recently 2025-09-07T07:34:08.4161649Z ##[endgroup] 2025-09-07T07:34:08.4162017Z ##[group]Processing PR #160496 2025-09-07T07:34:08.4162366Z [160496] URL: https://github.com/pytorch/pytorch/pull/160496 2025-09-07T07:34:08.4162754Z [160496] Checking whether to label PR as stale. 2025-09-07T07:34:08.4163113Z [160496] Skipping because PR was updated recently 2025-09-07T07:34:08.4163575Z ##[endgroup] 2025-09-07T07:34:08.4163944Z ##[group]Processing PR #160503 2025-09-07T07:34:08.4164278Z [160503] URL: https://github.com/pytorch/pytorch/pull/160503 2025-09-07T07:34:08.4164682Z [160503] Checking whether to label PR as stale. 2025-09-07T07:34:08.4165026Z [160503] Skipping because PR was updated recently 2025-09-07T07:34:08.4165487Z ##[endgroup] 2025-09-07T07:34:08.4165852Z ##[group]Processing PR #160509 2025-09-07T07:34:08.4166187Z [160509] URL: https://github.com/pytorch/pytorch/pull/160509 2025-09-07T07:34:08.4166648Z [160509] Checking whether to label PR as stale. 2025-09-07T07:34:08.4167007Z [160509] Skipping because PR was updated recently 2025-09-07T07:34:08.4167455Z ##[endgroup] 2025-09-07T07:34:08.4167825Z ##[group]Processing PR #160516 2025-09-07T07:34:08.4168174Z [160516] URL: https://github.com/pytorch/pytorch/pull/160516 2025-09-07T07:34:08.4168558Z [160516] Checking whether to label PR as stale. 2025-09-07T07:34:08.4168915Z [160516] Skipping because PR was updated recently 2025-09-07T07:34:08.4169378Z ##[endgroup] 2025-09-07T07:34:08.4169733Z ##[group]Processing PR #160519 2025-09-07T07:34:08.4170080Z [160519] URL: https://github.com/pytorch/pytorch/pull/160519 2025-09-07T07:34:08.4170482Z [160519] Checking whether to label PR as stale. 2025-09-07T07:34:08.4170826Z [160519] Skipping because PR was updated recently 2025-09-07T07:34:08.4171286Z ##[endgroup] 2025-09-07T07:34:08.4171654Z ##[group]Processing PR #160527 2025-09-07T07:34:08.4171986Z [160527] URL: https://github.com/pytorch/pytorch/pull/160527 2025-09-07T07:34:08.4172392Z [160527] Checking whether to label PR as stale. 2025-09-07T07:34:08.4172739Z [160527] Skipping because PR was updated recently 2025-09-07T07:34:08.4173203Z ##[endgroup] 2025-09-07T07:34:08.4173569Z ##[group]Processing PR #160532 2025-09-07T07:34:08.4173912Z [160532] URL: https://github.com/pytorch/pytorch/pull/160532 2025-09-07T07:34:08.4174296Z [160532] Checking whether to label PR as stale. 2025-09-07T07:34:08.4174649Z [160532] Skipping because PR was updated recently 2025-09-07T07:34:08.4175104Z ##[endgroup] 2025-09-07T07:34:08.4175457Z ##[group]Processing PR #160533 2025-09-07T07:34:08.4175806Z [160533] URL: https://github.com/pytorch/pytorch/pull/160533 2025-09-07T07:34:08.4176210Z [160533] Checking whether to label PR as stale. 2025-09-07T07:34:08.4176552Z [160533] Skipping because PR was updated recently 2025-09-07T07:34:08.4177083Z ##[endgroup] 2025-09-07T07:34:08.4177474Z ##[group]Processing PR #160538 2025-09-07T07:34:08.4177811Z [160538] URL: https://github.com/pytorch/pytorch/pull/160538 2025-09-07T07:34:08.4178214Z [160538] Checking whether to label PR as stale. 2025-09-07T07:34:08.4178555Z [160538] Skipping because PR was updated recently 2025-09-07T07:34:08.4179012Z ##[endgroup] 2025-09-07T07:34:08.4179374Z ##[group]Processing PR #160539 2025-09-07T07:34:08.4179716Z [160539] URL: https://github.com/pytorch/pytorch/pull/160539 2025-09-07T07:34:08.4180100Z [160539] Checking whether to label PR as stale. 2025-09-07T07:34:08.4180454Z [160539] Skipping because PR was updated recently 2025-09-07T07:34:08.4180910Z ##[endgroup] 2025-09-07T07:34:08.4181259Z ##[group]Processing PR #160555 2025-09-07T07:34:08.4181684Z [160555] URL: https://github.com/pytorch/pytorch/pull/160555 2025-09-07T07:34:08.4182085Z [160555] Checking whether to label PR as stale. 2025-09-07T07:34:08.4182427Z [160555] Skipping because PR was updated recently 2025-09-07T07:34:08.4182882Z ##[endgroup] 2025-09-07T07:34:08.4183248Z ##[group]Processing PR #160561 2025-09-07T07:34:08.4183580Z [160561] URL: https://github.com/pytorch/pytorch/pull/160561 2025-09-07T07:34:08.4183982Z [160561] Checking whether to label PR as stale. 2025-09-07T07:34:08.4184321Z [160561] Skipping because PR was updated recently 2025-09-07T07:34:08.4184772Z ##[endgroup] 2025-09-07T07:34:08.4185130Z ##[group]Processing PR #160573 2025-09-07T07:34:08.4185472Z [160573] URL: https://github.com/pytorch/pytorch/pull/160573 2025-09-07T07:34:08.4185855Z [160573] Checking whether to label PR as stale. 2025-09-07T07:34:08.4186206Z [160573] Skipping because PR was updated recently 2025-09-07T07:34:08.4186759Z ##[endgroup] 2025-09-07T07:34:08.4187114Z ##[group]Processing PR #160576 2025-09-07T07:34:08.4187466Z [160576] URL: https://github.com/pytorch/pytorch/pull/160576 2025-09-07T07:34:08.4187851Z [160576] Checking whether to label PR as stale. 2025-09-07T07:34:08.4188205Z [160576] Skipping because PR was updated recently 2025-09-07T07:34:08.4188662Z ##[endgroup] 2025-09-07T07:34:09.3314132Z ##[group]Processing PR #160580 2025-09-07T07:34:09.3315210Z [160580] URL: https://github.com/pytorch/pytorch/pull/160580 2025-09-07T07:34:09.3315890Z [160580] Checking whether to label PR as stale. 2025-09-07T07:34:09.3316512Z [160580] Skipping because PR was updated recently 2025-09-07T07:34:09.3317366Z ##[endgroup] 2025-09-07T07:34:09.3318024Z ##[group]Processing PR #160582 2025-09-07T07:34:09.3318638Z [160582] URL: https://github.com/pytorch/pytorch/pull/160582 2025-09-07T07:34:09.3319672Z [160582] Checking whether to label PR as stale. 2025-09-07T07:34:09.3320387Z [160582] Skipping because PR was updated recently 2025-09-07T07:34:09.3321293Z ##[endgroup] 2025-09-07T07:34:09.3322027Z ##[group]Processing PR #160584 2025-09-07T07:34:09.3322793Z [160584] URL: https://github.com/pytorch/pytorch/pull/160584 2025-09-07T07:34:09.3323583Z [160584] Checking whether to label PR as stale. 2025-09-07T07:34:09.3324289Z [160584] Skipping because PR was updated recently 2025-09-07T07:34:09.3325201Z ##[endgroup] 2025-09-07T07:34:09.3325935Z ##[group]Processing PR #160585 2025-09-07T07:34:09.3326643Z [160585] URL: https://github.com/pytorch/pytorch/pull/160585 2025-09-07T07:34:09.3327442Z [160585] Checking whether to label PR as stale. 2025-09-07T07:34:09.3328141Z [160585] Skipping because PR was updated recently 2025-09-07T07:34:09.3329059Z ##[endgroup] 2025-09-07T07:34:09.3329791Z ##[group]Processing PR #160587 2025-09-07T07:34:09.3330500Z [160587] URL: https://github.com/pytorch/pytorch/pull/160587 2025-09-07T07:34:09.3331276Z [160587] Checking whether to label PR as stale. 2025-09-07T07:34:09.3331998Z [160587] Skipping because PR was updated recently 2025-09-07T07:34:09.3332927Z ##[endgroup] 2025-09-07T07:34:09.3333677Z ##[group]Processing PR #160588 2025-09-07T07:34:09.3334517Z [160588] URL: https://github.com/pytorch/pytorch/pull/160588 2025-09-07T07:34:09.3335328Z [160588] Checking whether to label PR as stale. 2025-09-07T07:34:09.3336045Z [160588] Skipping because PR was updated recently 2025-09-07T07:34:09.3336997Z ##[endgroup] 2025-09-07T07:34:09.3337747Z ##[group]Processing PR #160590 2025-09-07T07:34:09.3338484Z [160590] URL: https://github.com/pytorch/pytorch/pull/160590 2025-09-07T07:34:09.3339283Z [160590] Checking whether to label PR as stale. 2025-09-07T07:34:09.3340003Z [160590] Skipping because PR was updated recently 2025-09-07T07:34:09.3340909Z ##[endgroup] 2025-09-07T07:34:09.3341648Z ##[group]Processing PR #160601 2025-09-07T07:34:09.3342345Z [160601] URL: https://github.com/pytorch/pytorch/pull/160601 2025-09-07T07:34:09.3343161Z [160601] Checking whether to label PR as stale. 2025-09-07T07:34:09.3343878Z [160601] Skipping because PR was updated recently 2025-09-07T07:34:09.3346176Z ##[endgroup] 2025-09-07T07:34:09.3348563Z ##[group]Processing PR #160609 2025-09-07T07:34:09.3349324Z [160609] URL: https://github.com/pytorch/pytorch/pull/160609 2025-09-07T07:34:09.3350144Z [160609] Checking whether to label PR as stale. 2025-09-07T07:34:09.3351928Z [160609] Skipping because PR was updated recently 2025-09-07T07:34:09.3353887Z ##[endgroup] 2025-09-07T07:34:09.3355757Z ##[group]Processing PR #160610 2025-09-07T07:34:09.3356492Z [160610] URL: https://github.com/pytorch/pytorch/pull/160610 2025-09-07T07:34:09.3385812Z [160610] Checking whether to label PR as stale. 2025-09-07T07:34:09.3386793Z [160610] Skipping because PR was updated recently 2025-09-07T07:34:09.3387712Z ##[endgroup] 2025-09-07T07:34:09.3388452Z ##[group]Processing PR #160611 2025-09-07T07:34:09.3389543Z [160611] URL: https://github.com/pytorch/pytorch/pull/160611 2025-09-07T07:34:09.3390358Z [160611] Checking whether to label PR as stale. 2025-09-07T07:34:09.3391073Z [160611] Skipping because PR was updated recently 2025-09-07T07:34:09.3392018Z ##[endgroup] 2025-09-07T07:34:09.3392693Z ##[group]Processing PR #160613 2025-09-07T07:34:09.3393228Z [160613] URL: https://github.com/pytorch/pytorch/pull/160613 2025-09-07T07:34:09.3393923Z [160613] Checking whether to label PR as stale. 2025-09-07T07:34:09.3394483Z [160613] Skipping because PR was updated recently 2025-09-07T07:34:09.3395333Z ##[endgroup] 2025-09-07T07:34:09.3396062Z ##[group]Processing PR #160618 2025-09-07T07:34:09.3396612Z [160618] URL: https://github.com/pytorch/pytorch/pull/160618 2025-09-07T07:34:09.3397177Z [160618] Checking whether to label PR as stale. 2025-09-07T07:34:09.3397708Z [160618] Skipping because PR was updated recently 2025-09-07T07:34:09.3398387Z ##[endgroup] 2025-09-07T07:34:09.3398936Z ##[group]Processing PR #160619 2025-09-07T07:34:09.3399571Z [160619] URL: https://github.com/pytorch/pytorch/pull/160619 2025-09-07T07:34:09.3400215Z [160619] Checking whether to label PR as stale. 2025-09-07T07:34:09.3400840Z [160619] Skipping because PR was updated recently 2025-09-07T07:34:09.3401531Z ##[endgroup] 2025-09-07T07:34:09.3402095Z ##[group]Processing PR #160624 2025-09-07T07:34:09.3402613Z [160624] URL: https://github.com/pytorch/pytorch/pull/160624 2025-09-07T07:34:09.3403164Z [160624] Checking whether to label PR as stale. 2025-09-07T07:34:09.3403690Z [160624] Skipping because PR was updated recently 2025-09-07T07:34:09.3404363Z ##[endgroup] 2025-09-07T07:34:09.3404928Z ##[group]Processing PR #160638 2025-09-07T07:34:09.3405460Z [160638] URL: https://github.com/pytorch/pytorch/pull/160638 2025-09-07T07:34:09.3405999Z [160638] Checking whether to label PR as stale. 2025-09-07T07:34:09.3406541Z [160638] Skipping because PR was updated recently 2025-09-07T07:34:09.3407216Z ##[endgroup] 2025-09-07T07:34:09.3407766Z ##[group]Processing PR #160639 2025-09-07T07:34:09.3408282Z [160639] URL: https://github.com/pytorch/pytorch/pull/160639 2025-09-07T07:34:09.3408829Z [160639] Checking whether to label PR as stale. 2025-09-07T07:34:09.3409367Z [160639] Skipping because PR was updated recently 2025-09-07T07:34:09.3410034Z ##[endgroup] 2025-09-07T07:34:09.3410587Z ##[group]Processing PR #160641 2025-09-07T07:34:09.3411110Z [160641] URL: https://github.com/pytorch/pytorch/pull/160641 2025-09-07T07:34:09.3411645Z [160641] Checking whether to label PR as stale. 2025-09-07T07:34:09.3412195Z [160641] Skipping because PR was updated recently 2025-09-07T07:34:09.3412868Z ##[endgroup] 2025-09-07T07:34:09.3413418Z ##[group]Processing PR #160644 2025-09-07T07:34:09.3413933Z [160644] URL: https://github.com/pytorch/pytorch/pull/160644 2025-09-07T07:34:09.3414479Z [160644] Checking whether to label PR as stale. 2025-09-07T07:34:09.3415022Z [160644] Skipping because PR was updated recently 2025-09-07T07:34:09.3415673Z ##[endgroup] 2025-09-07T07:34:09.3416220Z ##[group]Processing PR #160653 2025-09-07T07:34:09.3416745Z [160653] URL: https://github.com/pytorch/pytorch/pull/160653 2025-09-07T07:34:09.3417282Z [160653] Checking whether to label PR as stale. 2025-09-07T07:34:09.3417821Z [160653] Skipping because PR was updated recently 2025-09-07T07:34:09.3418600Z ##[endgroup] 2025-09-07T07:34:09.3419153Z ##[group]Processing PR #160655 2025-09-07T07:34:09.3419669Z [160655] URL: https://github.com/pytorch/pytorch/pull/160655 2025-09-07T07:34:09.3420222Z [160655] Checking whether to label PR as stale. 2025-09-07T07:34:09.3420769Z [160655] Skipping because PR was updated recently 2025-09-07T07:34:09.3421444Z ##[endgroup] 2025-09-07T07:34:09.3421981Z ##[group]Processing PR #160659 2025-09-07T07:34:09.3422509Z [160659] URL: https://github.com/pytorch/pytorch/pull/160659 2025-09-07T07:34:09.3423062Z [160659] Checking whether to label PR as stale. 2025-09-07T07:34:09.3423586Z [160659] Skipping because PR was updated recently 2025-09-07T07:34:09.3424252Z ##[endgroup] 2025-09-07T07:34:09.3424800Z ##[group]Processing PR #160667 2025-09-07T07:34:09.3425332Z [160667] URL: https://github.com/pytorch/pytorch/pull/160667 2025-09-07T07:34:09.3425867Z [160667] Checking whether to label PR as stale. 2025-09-07T07:34:09.3426418Z [160667] Skipping because PR was updated recently 2025-09-07T07:34:09.3427161Z ##[endgroup] 2025-09-07T07:34:09.3427715Z ##[group]Processing PR #160674 2025-09-07T07:34:09.3428248Z [160674] URL: https://github.com/pytorch/pytorch/pull/160674 2025-09-07T07:34:09.3428800Z [160674] Checking whether to label PR as stale. 2025-09-07T07:34:09.3429617Z [160674] Skipping because PR was updated recently 2025-09-07T07:34:09.3430401Z ##[endgroup] 2025-09-07T07:34:09.3430960Z ##[group]Processing PR #160679 2025-09-07T07:34:09.3431492Z [160679] URL: https://github.com/pytorch/pytorch/pull/160679 2025-09-07T07:34:09.3432023Z [160679] Checking whether to label PR as stale. 2025-09-07T07:34:09.3432569Z [160679] Skipping because PR was updated recently 2025-09-07T07:34:09.3433251Z ##[endgroup] 2025-09-07T07:34:09.3433805Z ##[group]Processing PR #160680 2025-09-07T07:34:09.3434496Z [160680] URL: https://github.com/pytorch/pytorch/pull/160680 2025-09-07T07:34:09.3435049Z [160680] Checking whether to label PR as stale. 2025-09-07T07:34:09.3435574Z [160680] Skipping because PR was updated recently 2025-09-07T07:34:09.3436209Z ##[endgroup] 2025-09-07T07:34:09.3436743Z ##[group]Processing PR #160681 2025-09-07T07:34:09.3437241Z [160681] URL: https://github.com/pytorch/pytorch/pull/160681 2025-09-07T07:34:09.3437787Z [160681] Checking whether to label PR as stale. 2025-09-07T07:34:09.3438318Z [160681] Skipping because PR was updated recently 2025-09-07T07:34:09.3438971Z ##[endgroup] 2025-09-07T07:34:09.3439492Z ##[group]Processing PR #160685 2025-09-07T07:34:09.3440002Z [160685] URL: https://github.com/pytorch/pytorch/pull/160685 2025-09-07T07:34:09.3440565Z [160685] Checking whether to label PR as stale. 2025-09-07T07:34:09.3441072Z [160685] Skipping because PR was updated recently 2025-09-07T07:34:09.3441707Z ##[endgroup] 2025-09-07T07:34:09.3442237Z ##[group]Processing PR #160686 2025-09-07T07:34:09.3442745Z [160686] URL: https://github.com/pytorch/pytorch/pull/160686 2025-09-07T07:34:09.3443277Z [160686] Checking whether to label PR as stale. 2025-09-07T07:34:09.3443806Z [160686] Skipping because PR was updated recently 2025-09-07T07:34:09.3444436Z ##[endgroup] 2025-09-07T07:34:09.3444950Z ##[group]Processing PR #160687 2025-09-07T07:34:09.3445459Z [160687] URL: https://github.com/pytorch/pytorch/pull/160687 2025-09-07T07:34:09.3445974Z [160687] Checking whether to label PR as stale. 2025-09-07T07:34:09.3446557Z [160687] Skipping because PR was updated recently 2025-09-07T07:34:09.3447187Z ##[endgroup] 2025-09-07T07:34:09.3447716Z ##[group]Processing PR #160688 2025-09-07T07:34:09.3448227Z [160688] URL: https://github.com/pytorch/pytorch/pull/160688 2025-09-07T07:34:09.3448755Z [160688] Checking whether to label PR as stale. 2025-09-07T07:34:09.3449278Z [160688] Skipping because PR was updated recently 2025-09-07T07:34:09.3449914Z ##[endgroup] 2025-09-07T07:34:09.3450443Z ##[group]Processing PR #160690 2025-09-07T07:34:09.3450933Z [160690] URL: https://github.com/pytorch/pytorch/pull/160690 2025-09-07T07:34:09.3451482Z [160690] Checking whether to label PR as stale. 2025-09-07T07:34:09.3452163Z [160690] Skipping because PR was updated recently 2025-09-07T07:34:09.3452801Z ##[endgroup] 2025-09-07T07:34:09.3453335Z ##[group]Processing PR #160692 2025-09-07T07:34:09.3453845Z [160692] URL: https://github.com/pytorch/pytorch/pull/160692 2025-09-07T07:34:09.3454376Z [160692] Checking whether to label PR as stale. 2025-09-07T07:34:09.3454907Z [160692] Skipping because PR was updated recently 2025-09-07T07:34:09.3455533Z ##[endgroup] 2025-09-07T07:34:09.3456059Z ##[group]Processing PR #160704 2025-09-07T07:34:09.3456553Z [160704] URL: https://github.com/pytorch/pytorch/pull/160704 2025-09-07T07:34:09.3457096Z [160704] Checking whether to label PR as stale. 2025-09-07T07:34:09.3457603Z [160704] Skipping because PR was updated recently 2025-09-07T07:34:09.3458232Z ##[endgroup] 2025-09-07T07:34:09.3458764Z ##[group]Processing PR #160706 2025-09-07T07:34:09.3459278Z [160706] URL: https://github.com/pytorch/pytorch/pull/160706 2025-09-07T07:34:09.3459810Z [160706] Checking whether to label PR as stale. 2025-09-07T07:34:09.3460342Z [160706] Skipping because PR was updated recently 2025-09-07T07:34:09.3460976Z ##[endgroup] 2025-09-07T07:34:09.3461508Z ##[group]Processing PR #160708 2025-09-07T07:34:09.3462001Z [160708] URL: https://github.com/pytorch/pytorch/pull/160708 2025-09-07T07:34:09.3462544Z [160708] Checking whether to label PR as stale. 2025-09-07T07:34:09.3463182Z [160708] Skipping because PR was updated recently 2025-09-07T07:34:09.3463804Z ##[endgroup] 2025-09-07T07:34:09.3464354Z ##[group]Processing PR #160711 2025-09-07T07:34:09.3464867Z [160711] URL: https://github.com/pytorch/pytorch/pull/160711 2025-09-07T07:34:09.3465421Z [160711] Checking whether to label PR as stale. 2025-09-07T07:34:09.3465926Z [160711] Skipping because PR was updated recently 2025-09-07T07:34:09.3466556Z ##[endgroup] 2025-09-07T07:34:09.3467172Z ##[group]Processing PR #160712 2025-09-07T07:34:09.3467669Z [160712] URL: https://github.com/pytorch/pytorch/pull/160712 2025-09-07T07:34:09.3468222Z [160712] Checking whether to label PR as stale. 2025-09-07T07:34:09.3468739Z [160712] Skipping because PR was updated recently 2025-09-07T07:34:09.3469377Z ##[endgroup] 2025-09-07T07:34:09.3469893Z ##[group]Processing PR #160720 2025-09-07T07:34:09.3470399Z [160720] URL: https://github.com/pytorch/pytorch/pull/160720 2025-09-07T07:34:09.3470950Z [160720] Checking whether to label PR as stale. 2025-09-07T07:34:09.3471447Z [160720] Skipping because PR was updated recently 2025-09-07T07:34:09.3472077Z ##[endgroup] 2025-09-07T07:34:09.3472606Z ##[group]Processing PR #160729 2025-09-07T07:34:09.3473114Z [160729] URL: https://github.com/pytorch/pytorch/pull/160729 2025-09-07T07:34:09.3473642Z [160729] Checking whether to label PR as stale. 2025-09-07T07:34:09.3474162Z [160729] Skipping because PR was updated recently 2025-09-07T07:34:09.3474787Z ##[endgroup] 2025-09-07T07:34:09.3475301Z ##[group]Processing PR #160733 2025-09-07T07:34:09.3475807Z [160733] URL: https://github.com/pytorch/pytorch/pull/160733 2025-09-07T07:34:09.3476356Z [160733] Checking whether to label PR as stale. 2025-09-07T07:34:09.3476857Z [160733] Skipping because PR was updated recently 2025-09-07T07:34:09.3477486Z ##[endgroup] 2025-09-07T07:34:09.3478010Z ##[group]Processing PR #160735 2025-09-07T07:34:09.3478519Z [160735] URL: https://github.com/pytorch/pytorch/pull/160735 2025-09-07T07:34:09.3479058Z [160735] Checking whether to label PR as stale. 2025-09-07T07:34:09.3479573Z [160735] Skipping because PR was updated recently 2025-09-07T07:34:09.3480201Z ##[endgroup] 2025-09-07T07:34:09.3480727Z ##[group]Processing PR #160748 2025-09-07T07:34:09.3481220Z [160748] URL: https://github.com/pytorch/pytorch/pull/160748 2025-09-07T07:34:09.3481759Z [160748] Checking whether to label PR as stale. 2025-09-07T07:34:09.3482271Z [160748] Skipping because PR was updated recently 2025-09-07T07:34:09.3482903Z ##[endgroup] 2025-09-07T07:34:09.3483435Z ##[group]Processing PR #160750 2025-09-07T07:34:09.3483950Z [160750] URL: https://github.com/pytorch/pytorch/pull/160750 2025-09-07T07:34:09.3484638Z [160750] Checking whether to label PR as stale. 2025-09-07T07:34:09.3485143Z [160750] Skipping because PR was updated recently 2025-09-07T07:34:09.3485777Z ##[endgroup] 2025-09-07T07:34:09.3486304Z ##[group]Processing PR #160758 2025-09-07T07:34:09.3486813Z [160758] URL: https://github.com/pytorch/pytorch/pull/160758 2025-09-07T07:34:09.3487351Z [160758] Checking whether to label PR as stale. 2025-09-07T07:34:09.3487866Z [160758] Skipping because PR was updated recently 2025-09-07T07:34:09.3488507Z ##[endgroup] 2025-09-07T07:34:09.3489038Z ##[group]Processing PR #160767 2025-09-07T07:34:09.3489546Z [160767] URL: https://github.com/pytorch/pytorch/pull/160767 2025-09-07T07:34:09.3490093Z [160767] Checking whether to label PR as stale. 2025-09-07T07:34:09.3490603Z [160767] Skipping because PR was updated recently 2025-09-07T07:34:09.3491239Z ##[endgroup] 2025-09-07T07:34:09.3491767Z ##[group]Processing PR #160769 2025-09-07T07:34:09.3492275Z [160769] URL: https://github.com/pytorch/pytorch/pull/160769 2025-09-07T07:34:09.3492814Z [160769] Checking whether to label PR as stale. 2025-09-07T07:34:09.3493333Z [160769] Skipping because PR was updated recently 2025-09-07T07:34:09.3493962Z ##[endgroup] 2025-09-07T07:34:09.3494495Z ##[group]Processing PR #160772 2025-09-07T07:34:09.3494996Z [160772] URL: https://github.com/pytorch/pytorch/pull/160772 2025-09-07T07:34:09.3495632Z [160772] Checking whether to label PR as stale. 2025-09-07T07:34:09.3496253Z [160772] Skipping because PR was updated recently 2025-09-07T07:34:09.3496874Z ##[endgroup] 2025-09-07T07:34:09.3497403Z ##[group]Processing PR #160776 2025-09-07T07:34:09.3497912Z [160776] URL: https://github.com/pytorch/pytorch/pull/160776 2025-09-07T07:34:09.3498458Z [160776] Checking whether to label PR as stale. 2025-09-07T07:34:09.3498962Z [160776] Skipping because PR was updated recently 2025-09-07T07:34:09.3499592Z ##[endgroup] 2025-09-07T07:34:09.3500149Z ##[group]Processing PR #160792 2025-09-07T07:34:09.3500656Z [160792] URL: https://github.com/pytorch/pytorch/pull/160792 2025-09-07T07:34:09.3501202Z [160792] Checking whether to label PR as stale. 2025-09-07T07:34:09.3501727Z [160792] Skipping because PR was updated recently 2025-09-07T07:34:09.3502378Z ##[endgroup] 2025-09-07T07:34:09.3502897Z ##[group]Processing PR #160794 2025-09-07T07:34:09.3503409Z [160794] URL: https://github.com/pytorch/pytorch/pull/160794 2025-09-07T07:34:09.3503957Z [160794] Checking whether to label PR as stale. 2025-09-07T07:34:09.3504458Z [160794] Skipping because PR was updated recently 2025-09-07T07:34:09.3505089Z ##[endgroup] 2025-09-07T07:34:09.3505620Z ##[group]Processing PR #160798 2025-09-07T07:34:09.3506126Z [160798] URL: https://github.com/pytorch/pytorch/pull/160798 2025-09-07T07:34:09.3506728Z [160798] Checking whether to label PR as stale. 2025-09-07T07:34:09.3507268Z [160798] Skipping because PR was updated recently 2025-09-07T07:34:09.3507905Z ##[endgroup] 2025-09-07T07:34:09.3508435Z ##[group]Processing PR #160807 2025-09-07T07:34:09.3508936Z [160807] URL: https://github.com/pytorch/pytorch/pull/160807 2025-09-07T07:34:09.3509481Z [160807] Checking whether to label PR as stale. 2025-09-07T07:34:09.3509994Z [160807] Skipping because PR was updated recently 2025-09-07T07:34:09.3510628Z ##[endgroup] 2025-09-07T07:34:09.3511159Z ##[group]Processing PR #160822 2025-09-07T07:34:09.3511668Z [160822] URL: https://github.com/pytorch/pytorch/pull/160822 2025-09-07T07:34:09.3512194Z [160822] Checking whether to label PR as stale. 2025-09-07T07:34:09.3512705Z [160822] Skipping because PR was updated recently 2025-09-07T07:34:09.3513338Z ##[endgroup] 2025-09-07T07:34:09.3513863Z ##[group]Processing PR #160825 2025-09-07T07:34:09.3514355Z [160825] URL: https://github.com/pytorch/pytorch/pull/160825 2025-09-07T07:34:09.3514899Z [160825] Checking whether to label PR as stale. 2025-09-07T07:34:09.3515431Z [160825] Skipping because PR was updated recently 2025-09-07T07:34:09.3516071Z ##[endgroup] 2025-09-07T07:34:09.3516605Z ##[group]Processing PR #160836 2025-09-07T07:34:09.3517221Z [160836] URL: https://github.com/pytorch/pytorch/pull/160836 2025-09-07T07:34:09.3517757Z [160836] Checking whether to label PR as stale. 2025-09-07T07:34:09.3518273Z [160836] Skipping because PR was updated recently 2025-09-07T07:34:09.3518905Z ##[endgroup] 2025-09-07T07:34:09.3519432Z ##[group]Processing PR #160837 2025-09-07T07:34:09.3519930Z [160837] URL: https://github.com/pytorch/pytorch/pull/160837 2025-09-07T07:34:09.3520470Z [160837] Checking whether to label PR as stale. 2025-09-07T07:34:09.3520998Z [160837] Skipping because PR was updated recently 2025-09-07T07:34:09.3521609Z ##[endgroup] 2025-09-07T07:34:09.3522134Z ##[group]Processing PR #160843 2025-09-07T07:34:09.3522640Z [160843] URL: https://github.com/pytorch/pytorch/pull/160843 2025-09-07T07:34:09.3523169Z [160843] Checking whether to label PR as stale. 2025-09-07T07:34:09.3523687Z [160843] Skipping because PR was updated recently 2025-09-07T07:34:09.3524324Z ##[endgroup] 2025-09-07T07:34:09.3524856Z ##[group]Processing PR #160844 2025-09-07T07:34:09.3525350Z [160844] URL: https://github.com/pytorch/pytorch/pull/160844 2025-09-07T07:34:09.3525888Z [160844] Checking whether to label PR as stale. 2025-09-07T07:34:09.3526406Z [160844] Skipping because PR was updated recently 2025-09-07T07:34:09.3527024Z ##[endgroup] 2025-09-07T07:34:09.3527555Z ##[group]Processing PR #160853 2025-09-07T07:34:09.3528136Z [160853] URL: https://github.com/pytorch/pytorch/pull/160853 2025-09-07T07:34:09.3528686Z [160853] Checking whether to label PR as stale. 2025-09-07T07:34:09.3529197Z [160853] Skipping because PR was updated recently 2025-09-07T07:34:09.3529831Z ##[endgroup] 2025-09-07T07:34:09.3530359Z ##[group]Processing PR #160858 2025-09-07T07:34:09.3530852Z [160858] URL: https://github.com/pytorch/pytorch/pull/160858 2025-09-07T07:34:09.3531395Z [160858] Checking whether to label PR as stale. 2025-09-07T07:34:09.3531918Z [160858] Skipping because PR was updated recently 2025-09-07T07:34:09.3532545Z ##[endgroup] 2025-09-07T07:34:09.3533061Z ##[group]Processing PR #160860 2025-09-07T07:34:09.3533568Z [160860] URL: https://github.com/pytorch/pytorch/pull/160860 2025-09-07T07:34:09.3534326Z [160860] Checking whether to label PR as stale. 2025-09-07T07:34:09.3534861Z [160860] Skipping because PR was updated recently 2025-09-07T07:34:09.3535501Z ##[endgroup] 2025-09-07T07:34:09.3536034Z ##[group]Processing PR #160865 2025-09-07T07:34:09.3536548Z [160865] URL: https://github.com/pytorch/pytorch/pull/160865 2025-09-07T07:34:09.3537075Z [160865] Checking whether to label PR as stale. 2025-09-07T07:34:09.3537602Z [160865] Skipping because PR was updated recently 2025-09-07T07:34:09.3538232Z ##[endgroup] 2025-09-07T07:34:09.3538759Z ##[group]Processing PR #160867 2025-09-07T07:34:09.3539250Z [160867] URL: https://github.com/pytorch/pytorch/pull/160867 2025-09-07T07:34:09.3539797Z [160867] Checking whether to label PR as stale. 2025-09-07T07:34:09.3540297Z [160867] Skipping because PR was updated recently 2025-09-07T07:34:09.3540960Z ##[endgroup] 2025-09-07T07:34:09.3541484Z ##[group]Processing PR #160869 2025-09-07T07:34:09.3541988Z [160869] URL: https://github.com/pytorch/pytorch/pull/160869 2025-09-07T07:34:09.3542517Z [160869] Checking whether to label PR as stale. 2025-09-07T07:34:09.3543038Z [160869] Skipping because PR was updated recently 2025-09-07T07:34:09.3543668Z ##[endgroup] 2025-09-07T07:34:09.3544194Z ##[group]Processing PR #160872 2025-09-07T07:34:09.3544689Z [160872] URL: https://github.com/pytorch/pytorch/pull/160872 2025-09-07T07:34:09.3545235Z [160872] Checking whether to label PR as stale. 2025-09-07T07:34:09.3545744Z [160872] Skipping because PR was updated recently 2025-09-07T07:34:09.3546376Z ##[endgroup] 2025-09-07T07:34:09.3546975Z ##[group]Processing PR #160878 2025-09-07T07:34:09.3547489Z [160878] URL: https://github.com/pytorch/pytorch/pull/160878 2025-09-07T07:34:09.3548018Z [160878] Checking whether to label PR as stale. 2025-09-07T07:34:09.3548542Z [160878] Skipping because PR was updated recently 2025-09-07T07:34:09.3549321Z ##[endgroup] 2025-09-07T07:34:09.3549852Z ##[group]Processing PR #160883 2025-09-07T07:34:09.3550350Z [160883] URL: https://github.com/pytorch/pytorch/pull/160883 2025-09-07T07:34:09.3550891Z [160883] Checking whether to label PR as stale. 2025-09-07T07:34:09.3551416Z [160883] Skipping because PR was updated recently 2025-09-07T07:34:09.3552034Z ##[endgroup] 2025-09-07T07:34:09.3552569Z ##[group]Processing PR #160885 2025-09-07T07:34:09.3553080Z [160885] URL: https://github.com/pytorch/pytorch/pull/160885 2025-09-07T07:34:09.3553602Z [160885] Checking whether to label PR as stale. 2025-09-07T07:34:09.3554143Z [160885] Skipping because PR was updated recently 2025-09-07T07:34:09.3554779Z ##[endgroup] 2025-09-07T07:34:09.3555307Z ##[group]Processing PR #160887 2025-09-07T07:34:09.3555801Z [160887] URL: https://github.com/pytorch/pytorch/pull/160887 2025-09-07T07:34:09.3556344Z [160887] Checking whether to label PR as stale. 2025-09-07T07:34:09.3556866Z [160887] Skipping because PR was updated recently 2025-09-07T07:34:09.3557489Z ##[endgroup] 2025-09-07T07:34:09.3558044Z ##[group]Processing PR #160888 2025-09-07T07:34:09.3558555Z [160888] URL: https://github.com/pytorch/pytorch/pull/160888 2025-09-07T07:34:09.3559097Z [160888] Checking whether to label PR as stale. 2025-09-07T07:34:09.3559604Z [160888] Skipping because PR was updated recently 2025-09-07T07:34:09.3560235Z ##[endgroup] 2025-09-07T07:34:09.3560894Z ##[group]Processing PR #160890 2025-09-07T07:34:09.3561417Z [160890] URL: https://github.com/pytorch/pytorch/pull/160890 2025-09-07T07:34:09.3561948Z [160890] Checking whether to label PR as stale. 2025-09-07T07:34:09.3562465Z [160890] Skipping because PR was updated recently 2025-09-07T07:34:09.3563096Z ##[endgroup] 2025-09-07T07:34:09.3563613Z ##[group]Processing PR #160897 2025-09-07T07:34:09.3564121Z [160897] URL: https://github.com/pytorch/pytorch/pull/160897 2025-09-07T07:34:09.3564667Z [160897] Checking whether to label PR as stale. 2025-09-07T07:34:09.3565166Z [160897] Skipping because PR was updated recently 2025-09-07T07:34:09.3565815Z ##[endgroup] 2025-09-07T07:34:09.3566345Z ##[group]Processing PR #160903 2025-09-07T07:34:09.3566852Z [160903] URL: https://github.com/pytorch/pytorch/pull/160903 2025-09-07T07:34:09.3567387Z [160903] Checking whether to label PR as stale. 2025-09-07T07:34:09.3567903Z [160903] Skipping because PR was updated recently 2025-09-07T07:34:09.3568541Z ##[endgroup] 2025-09-07T07:34:09.3569075Z ##[group]Processing PR #160907 2025-09-07T07:34:09.3569573Z [160907] URL: https://github.com/pytorch/pytorch/pull/160907 2025-09-07T07:34:09.3570120Z [160907] Checking whether to label PR as stale. 2025-09-07T07:34:09.3570620Z [160907] Skipping because PR was updated recently 2025-09-07T07:34:09.3571252Z ##[endgroup] 2025-09-07T07:34:09.3571778Z ##[group]Processing PR #160908 2025-09-07T07:34:09.3572296Z [160908] URL: https://github.com/pytorch/pytorch/pull/160908 2025-09-07T07:34:09.3572838Z [160908] Checking whether to label PR as stale. 2025-09-07T07:34:09.3573362Z [160908] Skipping because PR was updated recently 2025-09-07T07:34:09.3574000Z ##[endgroup] 2025-09-07T07:34:09.3574529Z ##[group]Processing PR #160913 2025-09-07T07:34:09.3575022Z [160913] URL: https://github.com/pytorch/pytorch/pull/160913 2025-09-07T07:34:09.3575568Z [160913] Checking whether to label PR as stale. 2025-09-07T07:34:09.3576079Z [160913] Skipping because PR was updated recently 2025-09-07T07:34:09.3576716Z ##[endgroup] 2025-09-07T07:34:09.3577246Z ##[group]Processing PR #160914 2025-09-07T07:34:09.3577755Z [160914] URL: https://github.com/pytorch/pytorch/pull/160914 2025-09-07T07:34:09.3578288Z [160914] Checking whether to label PR as stale. 2025-09-07T07:34:09.3578810Z [160914] Skipping because PR was updated recently 2025-09-07T07:34:09.3579443Z ##[endgroup] 2025-09-07T07:34:09.3579974Z ##[group]Processing PR #160915 2025-09-07T07:34:09.3580468Z [160915] URL: https://github.com/pytorch/pytorch/pull/160915 2025-09-07T07:34:09.3581013Z [160915] Checking whether to label PR as stale. 2025-09-07T07:34:09.3581628Z [160915] Skipping because PR was updated recently 2025-09-07T07:34:09.3582251Z ##[endgroup] 2025-09-07T07:34:09.3582791Z ##[group]Processing PR #160920 2025-09-07T07:34:09.3583298Z [160920] URL: https://github.com/pytorch/pytorch/pull/160920 2025-09-07T07:34:09.3583829Z [160920] Checking whether to label PR as stale. 2025-09-07T07:34:09.3584355Z [160920] Skipping because PR was updated recently 2025-09-07T07:34:09.3584983Z ##[endgroup] 2025-09-07T07:34:09.3585507Z ##[group]Processing PR #160925 2025-09-07T07:34:09.3586001Z [160925] URL: https://github.com/pytorch/pytorch/pull/160925 2025-09-07T07:34:09.3586541Z [160925] Checking whether to label PR as stale. 2025-09-07T07:34:09.3587140Z [160925] Skipping because PR was updated recently 2025-09-07T07:34:09.3587770Z ##[endgroup] 2025-09-07T07:34:09.3588286Z ##[group]Processing PR #160931 2025-09-07T07:34:09.3588796Z [160931] URL: https://github.com/pytorch/pytorch/pull/160931 2025-09-07T07:34:09.3589337Z [160931] Checking whether to label PR as stale. 2025-09-07T07:34:09.3589843Z [160931] Skipping because PR was updated recently 2025-09-07T07:34:09.3590476Z ##[endgroup] 2025-09-07T07:34:09.3591039Z ##[group]Processing PR #160936 2025-09-07T07:34:09.3591553Z [160936] URL: https://github.com/pytorch/pytorch/pull/160936 2025-09-07T07:34:09.3592086Z [160936] Checking whether to label PR as stale. 2025-09-07T07:34:09.3592693Z [160936] Skipping because PR was updated recently 2025-09-07T07:34:09.3593327Z ##[endgroup] 2025-09-07T07:34:09.3593845Z ##[group]Processing PR #160938 2025-09-07T07:34:09.3594356Z [160938] URL: https://github.com/pytorch/pytorch/pull/160938 2025-09-07T07:34:09.3594906Z [160938] Checking whether to label PR as stale. 2025-09-07T07:34:09.3595412Z [160938] Skipping because PR was updated recently 2025-09-07T07:34:09.3596044Z ##[endgroup] 2025-09-07T07:34:09.3596576Z ##[group]Processing PR #160940 2025-09-07T07:34:09.3597082Z [160940] URL: https://github.com/pytorch/pytorch/pull/160940 2025-09-07T07:34:09.3597612Z [160940] Checking whether to label PR as stale. 2025-09-07T07:34:09.3598133Z [160940] Skipping because PR was updated recently 2025-09-07T07:34:09.3598766Z ##[endgroup] 2025-09-07T07:34:09.3599298Z ##[group]Processing PR #160943 2025-09-07T07:34:09.3599791Z [160943] URL: https://github.com/pytorch/pytorch/pull/160943 2025-09-07T07:34:09.3600338Z [160943] Checking whether to label PR as stale. 2025-09-07T07:34:09.3600846Z [160943] Skipping because PR was updated recently 2025-09-07T07:34:09.3601480Z ##[endgroup] 2025-09-07T07:34:09.3602011Z ##[group]Processing PR #160945 2025-09-07T07:34:09.3602515Z [160945] URL: https://github.com/pytorch/pytorch/pull/160945 2025-09-07T07:34:09.3603044Z [160945] Checking whether to label PR as stale. 2025-09-07T07:34:09.3603566Z [160945] Skipping because PR was updated recently 2025-09-07T07:34:09.3604197Z ##[endgroup] 2025-09-07T07:34:09.3604721Z ##[group]Processing PR #160952 2025-09-07T07:34:09.3605213Z [160952] URL: https://github.com/pytorch/pytorch/pull/160952 2025-09-07T07:34:09.3605765Z [160952] Checking whether to label PR as stale. 2025-09-07T07:34:09.3606272Z [160952] Skipping because PR was updated recently 2025-09-07T07:34:09.3606903Z ##[endgroup] 2025-09-07T07:34:09.3607427Z ##[group]Processing PR #160953 2025-09-07T07:34:09.3607931Z [160953] URL: https://github.com/pytorch/pytorch/pull/160953 2025-09-07T07:34:09.3608458Z [160953] Checking whether to label PR as stale. 2025-09-07T07:34:09.3608977Z [160953] Skipping because PR was updated recently 2025-09-07T07:34:09.3609609Z ##[endgroup] 2025-09-07T07:34:09.3610135Z ##[group]Processing PR #160958 2025-09-07T07:34:09.3610627Z [160958] URL: https://github.com/pytorch/pytorch/pull/160958 2025-09-07T07:34:09.3611166Z [160958] Checking whether to label PR as stale. 2025-09-07T07:34:09.3611696Z [160958] Skipping because PR was updated recently 2025-09-07T07:34:09.3612314Z ##[endgroup] 2025-09-07T07:34:09.3612865Z ##[group]Processing PR #160961 2025-09-07T07:34:09.3613383Z [160961] URL: https://github.com/pytorch/pytorch/pull/160961 2025-09-07T07:34:09.3614020Z [160961] Checking whether to label PR as stale. 2025-09-07T07:34:09.3614527Z [160961] Skipping because PR was updated recently 2025-09-07T07:34:09.3615157Z ##[endgroup] 2025-09-07T07:34:09.3615684Z ##[group]Processing PR #160965 2025-09-07T07:34:09.3616198Z [160965] URL: https://github.com/pytorch/pytorch/pull/160965 2025-09-07T07:34:09.3616754Z [160965] Checking whether to label PR as stale. 2025-09-07T07:34:09.3617277Z [160965] Skipping because PR was updated recently 2025-09-07T07:34:09.3617901Z ##[endgroup] 2025-09-07T07:34:09.3618420Z ##[group]Processing PR #160977 2025-09-07T07:34:09.3618928Z [160977] URL: https://github.com/pytorch/pytorch/pull/160977 2025-09-07T07:34:09.3619478Z [160977] Checking whether to label PR as stale. 2025-09-07T07:34:09.3619986Z [160977] Skipping because PR was updated recently 2025-09-07T07:34:09.3620614Z ##[endgroup] 2025-09-07T07:34:09.3621141Z ##[group]Processing PR #160985 2025-09-07T07:34:09.3621648Z [160985] URL: https://github.com/pytorch/pytorch/pull/160985 2025-09-07T07:34:09.3622182Z [160985] Checking whether to label PR as stale. 2025-09-07T07:34:09.3622700Z [160985] Skipping because PR was updated recently 2025-09-07T07:34:09.3623325Z ##[endgroup] 2025-09-07T07:34:09.3623842Z ##[group]Processing PR #160991 2025-09-07T07:34:09.3624351Z [160991] URL: https://github.com/pytorch/pytorch/pull/160991 2025-09-07T07:34:09.3624978Z [160991] Checking whether to label PR as stale. 2025-09-07T07:34:09.3625487Z [160991] Skipping because PR was updated recently 2025-09-07T07:34:09.3626123Z ##[endgroup] 2025-09-07T07:34:09.3626725Z ##[group]Processing PR #161000 2025-09-07T07:34:09.3627246Z [161000] URL: https://github.com/pytorch/pytorch/pull/161000 2025-09-07T07:34:09.3627780Z [161000] Checking whether to label PR as stale. 2025-09-07T07:34:09.3628314Z [161000] Skipping because PR was updated recently 2025-09-07T07:34:09.3628948Z ##[endgroup] 2025-09-07T07:34:09.3629477Z ##[group]Processing PR #161003 2025-09-07T07:34:09.3629968Z [161003] URL: https://github.com/pytorch/pytorch/pull/161003 2025-09-07T07:34:09.3630514Z [161003] Checking whether to label PR as stale. 2025-09-07T07:34:09.3631020Z [161003] Skipping because PR was updated recently 2025-09-07T07:34:09.3631651Z ##[endgroup] 2025-09-07T07:34:09.3632178Z ##[group]Processing PR #161004 2025-09-07T07:34:09.3632680Z [161004] URL: https://github.com/pytorch/pytorch/pull/161004 2025-09-07T07:34:09.3633218Z [161004] Checking whether to label PR as stale. 2025-09-07T07:34:09.3633728Z [161004] Skipping because PR was updated recently 2025-09-07T07:34:09.3634625Z ##[endgroup] 2025-09-07T07:34:09.3635165Z ##[group]Processing PR #161016 2025-09-07T07:34:09.3635670Z [161016] URL: https://github.com/pytorch/pytorch/pull/161016 2025-09-07T07:34:09.3636214Z [161016] Checking whether to label PR as stale. 2025-09-07T07:34:09.3636742Z [161016] Skipping because PR was updated recently 2025-09-07T07:34:09.3637362Z ##[endgroup] 2025-09-07T07:34:09.3637951Z ##[group]Processing PR #161017 2025-09-07T07:34:09.3638476Z [161017] URL: https://github.com/pytorch/pytorch/pull/161017 2025-09-07T07:34:09.3639007Z [161017] Checking whether to label PR as stale. 2025-09-07T07:34:09.3639528Z [161017] Skipping because PR was updated recently 2025-09-07T07:34:09.3640085Z ##[endgroup] 2025-09-07T07:34:10.4593728Z ##[group]Processing PR #161023 2025-09-07T07:34:10.4594781Z [161023] URL: https://github.com/pytorch/pytorch/pull/161023 2025-09-07T07:34:10.4595734Z [161023] Checking whether to label PR as stale. 2025-09-07T07:34:10.4596657Z [161023] Skipping because PR was updated recently 2025-09-07T07:34:10.4597801Z ##[endgroup] 2025-09-07T07:34:10.4598704Z ##[group]Processing PR #161028 2025-09-07T07:34:10.4599593Z [161028] URL: https://github.com/pytorch/pytorch/pull/161028 2025-09-07T07:34:10.4600660Z [161028] Checking whether to label PR as stale. 2025-09-07T07:34:10.4601552Z [161028] Skipping because PR was updated recently 2025-09-07T07:34:10.4602654Z ##[endgroup] 2025-09-07T07:34:10.4603527Z ##[group]Processing PR #161032 2025-09-07T07:34:10.4604718Z [161032] URL: https://github.com/pytorch/pytorch/pull/161032 2025-09-07T07:34:10.4605628Z [161032] Checking whether to label PR as stale. 2025-09-07T07:34:10.4606491Z [161032] Skipping because PR was updated recently 2025-09-07T07:34:10.4608292Z ##[endgroup] 2025-09-07T07:34:10.4609139Z ##[group]Processing PR #161033 2025-09-07T07:34:10.4609976Z [161033] URL: https://github.com/pytorch/pytorch/pull/161033 2025-09-07T07:34:10.4610991Z [161033] Checking whether to label PR as stale. 2025-09-07T07:34:10.4613099Z [161033] Skipping because PR was updated recently 2025-09-07T07:34:10.4614122Z ##[endgroup] 2025-09-07T07:34:10.4614972Z ##[group]Processing PR #161035 2025-09-07T07:34:10.4615841Z [161035] URL: https://github.com/pytorch/pytorch/pull/161035 2025-09-07T07:34:10.4618076Z [161035] Checking whether to label PR as stale. 2025-09-07T07:34:10.4619024Z [161035] Skipping because PR was updated recently 2025-09-07T07:34:10.4620170Z ##[endgroup] 2025-09-07T07:34:10.4620997Z ##[group]Processing PR #161037 2025-09-07T07:34:10.4621796Z [161037] URL: https://github.com/pytorch/pytorch/pull/161037 2025-09-07T07:34:10.4622726Z [161037] Checking whether to label PR as stale. 2025-09-07T07:34:10.4623648Z [161037] Skipping because PR was updated recently 2025-09-07T07:34:10.4624731Z ##[endgroup] 2025-09-07T07:34:10.4625696Z ##[group]Processing PR #161041 2025-09-07T07:34:10.4626865Z [161041] URL: https://github.com/pytorch/pytorch/pull/161041 2025-09-07T07:34:10.4627798Z [161041] Checking whether to label PR as stale. 2025-09-07T07:34:10.4688808Z [161041] Skipping because PR was updated recently 2025-09-07T07:34:10.4690059Z ##[endgroup] 2025-09-07T07:34:10.4690734Z ##[group]Processing PR #161044 2025-09-07T07:34:10.4691394Z [161044] URL: https://github.com/pytorch/pytorch/pull/161044 2025-09-07T07:34:10.4692142Z [161044] Checking whether to label PR as stale. 2025-09-07T07:34:10.4692810Z [161044] Skipping because PR was updated recently 2025-09-07T07:34:10.4693665Z ##[endgroup] 2025-09-07T07:34:10.4694272Z ##[group]Processing PR #161045 2025-09-07T07:34:10.4694828Z [161045] URL: https://github.com/pytorch/pytorch/pull/161045 2025-09-07T07:34:10.4695428Z [161045] Checking whether to label PR as stale. 2025-09-07T07:34:10.4695942Z [161045] Skipping because PR was updated recently 2025-09-07T07:34:10.4696623Z ##[endgroup] 2025-09-07T07:34:10.4697155Z ##[group]Processing PR #161049 2025-09-07T07:34:10.4697826Z [161049] URL: https://github.com/pytorch/pytorch/pull/161049 2025-09-07T07:34:10.4698328Z [161049] Checking whether to label PR as stale. 2025-09-07T07:34:10.4698673Z [161049] Skipping because PR was updated recently 2025-09-07T07:34:10.4699137Z ##[endgroup] 2025-09-07T07:34:10.4699502Z ##[group]Processing PR #161052 2025-09-07T07:34:10.4699833Z [161052] URL: https://github.com/pytorch/pytorch/pull/161052 2025-09-07T07:34:10.4700226Z [161052] Checking whether to label PR as stale. 2025-09-07T07:34:10.4700567Z [161052] Skipping because PR was updated recently 2025-09-07T07:34:10.4701022Z ##[endgroup] 2025-09-07T07:34:10.4701390Z ##[group]Processing PR #161058 2025-09-07T07:34:10.4701732Z [161058] URL: https://github.com/pytorch/pytorch/pull/161058 2025-09-07T07:34:10.4702118Z [161058] Checking whether to label PR as stale. 2025-09-07T07:34:10.4702470Z [161058] Skipping because PR was updated recently 2025-09-07T07:34:10.4702923Z ##[endgroup] 2025-09-07T07:34:10.4703275Z ##[group]Processing PR #161062 2025-09-07T07:34:10.4703623Z [161062] URL: https://github.com/pytorch/pytorch/pull/161062 2025-09-07T07:34:10.4704019Z [161062] Checking whether to label PR as stale. 2025-09-07T07:34:10.4704362Z [161062] Skipping because PR was updated recently 2025-09-07T07:34:10.4704815Z ##[endgroup] 2025-09-07T07:34:10.4705548Z ##[group]Processing PR #161072 2025-09-07T07:34:10.4705885Z [161072] URL: https://github.com/pytorch/pytorch/pull/161072 2025-09-07T07:34:10.4706283Z [161072] Checking whether to label PR as stale. 2025-09-07T07:34:10.4706705Z [161072] Skipping because PR was updated recently 2025-09-07T07:34:10.4707362Z ##[endgroup] 2025-09-07T07:34:10.4707815Z ##[group]Processing PR #161085 2025-09-07T07:34:10.4708167Z [161085] URL: https://github.com/pytorch/pytorch/pull/161085 2025-09-07T07:34:10.4708552Z [161085] Checking whether to label PR as stale. 2025-09-07T07:34:10.4708906Z [161085] Skipping because PR was updated recently 2025-09-07T07:34:10.4709355Z ##[endgroup] 2025-09-07T07:34:10.4709733Z ##[group]Processing PR #161092 2025-09-07T07:34:10.4710077Z [161092] URL: https://github.com/pytorch/pytorch/pull/161092 2025-09-07T07:34:10.4710461Z [161092] Checking whether to label PR as stale. 2025-09-07T07:34:10.4710813Z [161092] Skipping because PR was updated recently 2025-09-07T07:34:10.4711268Z ##[endgroup] 2025-09-07T07:34:10.4711632Z ##[group]Processing PR #161093 2025-09-07T07:34:10.4711963Z [161093] URL: https://github.com/pytorch/pytorch/pull/161093 2025-09-07T07:34:10.4712356Z [161093] Checking whether to label PR as stale. 2025-09-07T07:34:10.4712698Z [161093] Skipping because PR was updated recently 2025-09-07T07:34:10.4713157Z ##[endgroup] 2025-09-07T07:34:10.4713521Z ##[group]Processing PR #161094 2025-09-07T07:34:10.4713857Z [161094] URL: https://github.com/pytorch/pytorch/pull/161094 2025-09-07T07:34:10.4714250Z [161094] Checking whether to label PR as stale. 2025-09-07T07:34:10.4714602Z [161094] Skipping because PR was updated recently 2025-09-07T07:34:10.4715041Z ##[endgroup] 2025-09-07T07:34:10.4715520Z ##[group]Processing PR #161100 2025-09-07T07:34:10.4715867Z [161100] URL: https://github.com/pytorch/pytorch/pull/161100 2025-09-07T07:34:10.4716253Z [161100] Checking whether to label PR as stale. 2025-09-07T07:34:10.4716605Z [161100] Skipping because PR was updated recently 2025-09-07T07:34:10.4717158Z ##[endgroup] 2025-09-07T07:34:10.4717524Z ##[group]Processing PR #161106 2025-09-07T07:34:10.4717853Z [161106] URL: https://github.com/pytorch/pytorch/pull/161106 2025-09-07T07:34:10.4718249Z [161106] Checking whether to label PR as stale. 2025-09-07T07:34:10.4718590Z [161106] Skipping because PR was updated recently 2025-09-07T07:34:10.4719054Z ##[endgroup] 2025-09-07T07:34:10.4719419Z ##[group]Processing PR #161107 2025-09-07T07:34:10.4719751Z [161107] URL: https://github.com/pytorch/pytorch/pull/161107 2025-09-07T07:34:10.4720150Z [161107] Checking whether to label PR as stale. 2025-09-07T07:34:10.4720501Z [161107] Skipping because PR was updated recently 2025-09-07T07:34:10.4720944Z ##[endgroup] 2025-09-07T07:34:10.4729257Z ##[group]Processing PR #161109 2025-09-07T07:34:10.4729647Z [161109] URL: https://github.com/pytorch/pytorch/pull/161109 2025-09-07T07:34:10.4730221Z [161109] Checking whether to label PR as stale. 2025-09-07T07:34:10.4730579Z [161109] Skipping because PR was updated recently 2025-09-07T07:34:10.4731061Z ##[endgroup] 2025-09-07T07:34:10.4731438Z ##[group]Processing PR #161114 2025-09-07T07:34:10.4731781Z [161114] URL: https://github.com/pytorch/pytorch/pull/161114 2025-09-07T07:34:10.4732187Z [161114] Checking whether to label PR as stale. 2025-09-07T07:34:10.4732533Z [161114] Skipping because PR was updated recently 2025-09-07T07:34:10.4733011Z ##[endgroup] 2025-09-07T07:34:10.4733383Z ##[group]Processing PR #161118 2025-09-07T07:34:10.4733732Z [161118] URL: https://github.com/pytorch/pytorch/pull/161118 2025-09-07T07:34:10.4734295Z [161118] Checking whether to label PR as stale. 2025-09-07T07:34:10.4734655Z [161118] Skipping because PR was updated recently 2025-09-07T07:34:10.4735129Z ##[endgroup] 2025-09-07T07:34:10.4735489Z ##[group]Processing PR #161130 2025-09-07T07:34:10.4735838Z [161130] URL: https://github.com/pytorch/pytorch/pull/161130 2025-09-07T07:34:10.4736237Z [161130] Checking whether to label PR as stale. 2025-09-07T07:34:10.4736581Z [161130] Skipping because PR was updated recently 2025-09-07T07:34:10.4737042Z ##[endgroup] 2025-09-07T07:34:10.4737411Z ##[group]Processing PR #161135 2025-09-07T07:34:10.4737742Z [161135] URL: https://github.com/pytorch/pytorch/pull/161135 2025-09-07T07:34:10.4738137Z [161135] Checking whether to label PR as stale. 2025-09-07T07:34:10.4738638Z [161135] Skipping because PR was updated recently 2025-09-07T07:34:10.4739098Z ##[endgroup] 2025-09-07T07:34:10.4739462Z ##[group]Processing PR #161141 2025-09-07T07:34:10.4739804Z [161141] URL: https://github.com/pytorch/pytorch/pull/161141 2025-09-07T07:34:10.4740188Z [161141] Checking whether to label PR as stale. 2025-09-07T07:34:10.4740543Z [161141] Skipping because PR was updated recently 2025-09-07T07:34:10.4741011Z ##[endgroup] 2025-09-07T07:34:10.4741365Z ##[group]Processing PR #161143 2025-09-07T07:34:10.4741713Z [161143] URL: https://github.com/pytorch/pytorch/pull/161143 2025-09-07T07:34:10.4742096Z [161143] Checking whether to label PR as stale. 2025-09-07T07:34:10.4742452Z [161143] Skipping because PR was updated recently 2025-09-07T07:34:10.4742912Z ##[endgroup] 2025-09-07T07:34:10.4743280Z ##[group]Processing PR #161155 2025-09-07T07:34:10.4743615Z [161155] URL: https://github.com/pytorch/pytorch/pull/161155 2025-09-07T07:34:10.4744013Z [161155] Checking whether to label PR as stale. 2025-09-07T07:34:10.4744360Z [161155] Skipping because PR was updated recently 2025-09-07T07:34:10.4744819Z ##[endgroup] 2025-09-07T07:34:10.4745183Z ##[group]Processing PR #161156 2025-09-07T07:34:10.4745527Z [161156] URL: https://github.com/pytorch/pytorch/pull/161156 2025-09-07T07:34:10.4745911Z [161156] Checking whether to label PR as stale. 2025-09-07T07:34:10.4746351Z [161156] Skipping because PR was updated recently 2025-09-07T07:34:10.4746903Z ##[endgroup] 2025-09-07T07:34:10.4747276Z ##[group]Processing PR #161157 2025-09-07T07:34:10.4747623Z [161157] URL: https://github.com/pytorch/pytorch/pull/161157 2025-09-07T07:34:10.4748012Z [161157] Checking whether to label PR as stale. 2025-09-07T07:34:10.4748369Z [161157] Skipping because PR was updated recently 2025-09-07T07:34:10.4748834Z ##[endgroup] 2025-09-07T07:34:10.4749206Z ##[group]Processing PR #161158 2025-09-07T07:34:10.4749539Z [161158] URL: https://github.com/pytorch/pytorch/pull/161158 2025-09-07T07:34:10.4749939Z [161158] Checking whether to label PR as stale. 2025-09-07T07:34:10.4750288Z [161158] Skipping because PR was updated recently 2025-09-07T07:34:10.4750749Z ##[endgroup] 2025-09-07T07:34:10.4751203Z ##[group]Processing PR #161161 2025-09-07T07:34:10.4751544Z [161161] URL: https://github.com/pytorch/pytorch/pull/161161 2025-09-07T07:34:10.4751946Z [161161] Checking whether to label PR as stale. 2025-09-07T07:34:10.4752308Z [161161] Skipping because PR was updated recently 2025-09-07T07:34:10.4752759Z ##[endgroup] 2025-09-07T07:34:10.4753128Z ##[group]Processing PR #161165 2025-09-07T07:34:10.4753478Z [161165] URL: https://github.com/pytorch/pytorch/pull/161165 2025-09-07T07:34:10.4753862Z [161165] Checking whether to label PR as stale. 2025-09-07T07:34:10.4754214Z [161165] Skipping because PR was updated recently 2025-09-07T07:34:10.4754668Z ##[endgroup] 2025-09-07T07:34:10.4755020Z ##[group]Processing PR #161169 2025-09-07T07:34:10.4755363Z [161169] URL: https://github.com/pytorch/pytorch/pull/161169 2025-09-07T07:34:10.4755760Z [161169] Checking whether to label PR as stale. 2025-09-07T07:34:10.4756103Z [161169] Skipping because PR was updated recently 2025-09-07T07:34:10.4756561Z ##[endgroup] 2025-09-07T07:34:10.4756925Z ##[group]Processing PR #161172 2025-09-07T07:34:10.4757258Z [161172] URL: https://github.com/pytorch/pytorch/pull/161172 2025-09-07T07:34:10.4757656Z [161172] Checking whether to label PR as stale. 2025-09-07T07:34:10.4758004Z [161172] Skipping because PR was updated recently 2025-09-07T07:34:10.4758463Z ##[endgroup] 2025-09-07T07:34:10.4758830Z ##[group]Processing PR #161173 2025-09-07T07:34:10.4759234Z [161173] URL: https://github.com/pytorch/pytorch/pull/161173 2025-09-07T07:34:10.4759619Z [161173] Checking whether to label PR as stale. 2025-09-07T07:34:10.4759970Z [161173] Skipping because PR was updated recently 2025-09-07T07:34:10.4760427Z ##[endgroup] 2025-09-07T07:34:10.4760782Z ##[group]Processing PR #161174 2025-09-07T07:34:10.4761124Z [161174] URL: https://github.com/pytorch/pytorch/pull/161174 2025-09-07T07:34:10.4761625Z [161174] Checking whether to label PR as stale. 2025-09-07T07:34:10.4762130Z [161174] Skipping because PR was updated recently 2025-09-07T07:34:10.4762594Z ##[endgroup] 2025-09-07T07:34:10.4762960Z ##[group]Processing PR #161175 2025-09-07T07:34:10.4763289Z [161175] URL: https://github.com/pytorch/pytorch/pull/161175 2025-09-07T07:34:10.4763686Z [161175] Checking whether to label PR as stale. 2025-09-07T07:34:10.4764034Z [161175] Skipping because PR was updated recently 2025-09-07T07:34:10.4764493Z ##[endgroup] 2025-09-07T07:34:10.4764854Z ##[group]Processing PR #161176 2025-09-07T07:34:10.4765194Z [161176] URL: https://github.com/pytorch/pytorch/pull/161176 2025-09-07T07:34:10.4765576Z [161176] Checking whether to label PR as stale. 2025-09-07T07:34:10.4765926Z [161176] Skipping because PR was updated recently 2025-09-07T07:34:10.4766379Z ##[endgroup] 2025-09-07T07:34:10.4766726Z ##[group]Processing PR #161178 2025-09-07T07:34:10.4767067Z [161178] URL: https://github.com/pytorch/pytorch/pull/161178 2025-09-07T07:34:10.4767466Z [161178] Checking whether to label PR as stale. 2025-09-07T07:34:10.4767805Z [161178] Skipping because PR was updated recently 2025-09-07T07:34:10.4768262Z ##[endgroup] 2025-09-07T07:34:10.4768626Z ##[group]Processing PR #161190 2025-09-07T07:34:10.4768957Z [161190] URL: https://github.com/pytorch/pytorch/pull/161190 2025-09-07T07:34:10.4769431Z [161190] Checking whether to label PR as stale. 2025-09-07T07:34:10.4769774Z [161190] Skipping because PR was updated recently 2025-09-07T07:34:10.4770230Z ##[endgroup] 2025-09-07T07:34:10.4770593Z ##[group]Processing PR #161208 2025-09-07T07:34:10.4771090Z [161208] URL: https://github.com/pytorch/pytorch/pull/161208 2025-09-07T07:34:10.4771802Z [161208] Checking whether to label PR as stale. 2025-09-07T07:34:10.4772430Z [161208] Skipping because PR was updated recently 2025-09-07T07:34:10.4773197Z ##[endgroup] 2025-09-07T07:34:10.4773553Z ##[group]Processing PR #161213 2025-09-07T07:34:10.4773899Z [161213] URL: https://github.com/pytorch/pytorch/pull/161213 2025-09-07T07:34:10.4774292Z [161213] Checking whether to label PR as stale. 2025-09-07T07:34:10.4774646Z [161213] Skipping because PR was updated recently 2025-09-07T07:34:10.4775104Z ##[endgroup] 2025-09-07T07:34:10.4775467Z ##[group]Processing PR #161217 2025-09-07T07:34:10.4775796Z [161217] URL: https://github.com/pytorch/pytorch/pull/161217 2025-09-07T07:34:10.4776198Z [161217] Checking whether to label PR as stale. 2025-09-07T07:34:10.4776539Z [161217] Skipping because PR was updated recently 2025-09-07T07:34:10.4776999Z ##[endgroup] 2025-09-07T07:34:10.4777360Z ##[group]Processing PR #161224 2025-09-07T07:34:10.4777703Z [161224] URL: https://github.com/pytorch/pytorch/pull/161224 2025-09-07T07:34:10.4778089Z [161224] Checking whether to label PR as stale. 2025-09-07T07:34:10.4778441Z [161224] Skipping because PR was updated recently 2025-09-07T07:34:10.4778886Z ##[endgroup] 2025-09-07T07:34:10.4779246Z ##[group]Processing PR #161225 2025-09-07T07:34:10.4779588Z [161225] URL: https://github.com/pytorch/pytorch/pull/161225 2025-09-07T07:34:10.4779976Z [161225] Checking whether to label PR as stale. 2025-09-07T07:34:10.4780328Z [161225] Skipping because PR was updated recently 2025-09-07T07:34:10.4780789Z ##[endgroup] 2025-09-07T07:34:10.4781149Z ##[group]Processing PR #161230 2025-09-07T07:34:10.4781478Z [161230] URL: https://github.com/pytorch/pytorch/pull/161230 2025-09-07T07:34:10.4781877Z [161230] Checking whether to label PR as stale. 2025-09-07T07:34:10.4782216Z [161230] Skipping because PR was updated recently 2025-09-07T07:34:10.4782669Z ##[endgroup] 2025-09-07T07:34:10.4783028Z ##[group]Processing PR #161233 2025-09-07T07:34:10.4783360Z [161233] URL: https://github.com/pytorch/pytorch/pull/161233 2025-09-07T07:34:10.4783754Z [161233] Checking whether to label PR as stale. 2025-09-07T07:34:10.4784106Z [161233] Skipping because PR was updated recently 2025-09-07T07:34:10.4784549Z ##[endgroup] 2025-09-07T07:34:10.4784917Z ##[group]Processing PR #161237 2025-09-07T07:34:10.4785371Z [161237] URL: https://github.com/pytorch/pytorch/pull/161237 2025-09-07T07:34:10.4785756Z [161237] Checking whether to label PR as stale. 2025-09-07T07:34:10.4786109Z [161237] Skipping because PR was updated recently 2025-09-07T07:34:10.4786567Z ##[endgroup] 2025-09-07T07:34:10.4787019Z ##[group]Processing PR #161243 2025-09-07T07:34:10.4787349Z [161243] URL: https://github.com/pytorch/pytorch/pull/161243 2025-09-07T07:34:10.4787751Z [161243] Checking whether to label PR as stale. 2025-09-07T07:34:10.4788094Z [161243] Skipping because PR was updated recently 2025-09-07T07:34:10.4788550Z ##[endgroup] 2025-09-07T07:34:10.4788917Z ##[group]Processing PR #161246 2025-09-07T07:34:10.4789248Z [161246] URL: https://github.com/pytorch/pytorch/pull/161246 2025-09-07T07:34:10.4789645Z [161246] Checking whether to label PR as stale. 2025-09-07T07:34:10.4789989Z [161246] Skipping because PR was updated recently 2025-09-07T07:34:10.4790448Z ##[endgroup] 2025-09-07T07:34:10.4790810Z ##[group]Processing PR #161247 2025-09-07T07:34:10.4791157Z [161247] URL: https://github.com/pytorch/pytorch/pull/161247 2025-09-07T07:34:10.4791541Z [161247] Checking whether to label PR as stale. 2025-09-07T07:34:10.4791890Z [161247] Skipping because PR was updated recently 2025-09-07T07:34:10.4792351Z ##[endgroup] 2025-09-07T07:34:10.4792701Z ##[group]Processing PR #161248 2025-09-07T07:34:10.4793106Z [161248] URL: https://github.com/pytorch/pytorch/pull/161248 2025-09-07T07:34:10.4793505Z [161248] Checking whether to label PR as stale. 2025-09-07T07:34:10.4793846Z [161248] Skipping because PR was updated recently 2025-09-07T07:34:10.4794310Z ##[endgroup] 2025-09-07T07:34:10.4794677Z ##[group]Processing PR #161253 2025-09-07T07:34:10.4795009Z [161253] URL: https://github.com/pytorch/pytorch/pull/161253 2025-09-07T07:34:10.4795404Z [161253] Checking whether to label PR as stale. 2025-09-07T07:34:10.4795747Z [161253] Skipping because PR was updated recently 2025-09-07T07:34:10.4796204Z ##[endgroup] 2025-09-07T07:34:10.4796573Z ##[group]Processing PR #161254 2025-09-07T07:34:10.4796926Z [161254] URL: https://github.com/pytorch/pytorch/pull/161254 2025-09-07T07:34:10.4797310Z [161254] Checking whether to label PR as stale. 2025-09-07T07:34:10.4797662Z [161254] Skipping because PR was updated recently 2025-09-07T07:34:10.4798115Z ##[endgroup] 2025-09-07T07:34:10.4798462Z ##[group]Processing PR #161260 2025-09-07T07:34:10.4798806Z [161260] URL: https://github.com/pytorch/pytorch/pull/161260 2025-09-07T07:34:10.4799189Z [161260] Checking whether to label PR as stale. 2025-09-07T07:34:10.4799540Z [161260] Skipping because PR was updated recently 2025-09-07T07:34:10.4799993Z ##[endgroup] 2025-09-07T07:34:10.4800352Z ##[group]Processing PR #161262 2025-09-07T07:34:10.4800680Z [161262] URL: https://github.com/pytorch/pytorch/pull/161262 2025-09-07T07:34:10.4801073Z [161262] Checking whether to label PR as stale. 2025-09-07T07:34:10.4801413Z [161262] Skipping because PR was updated recently 2025-09-07T07:34:10.4801870Z ##[endgroup] 2025-09-07T07:34:10.4802234Z ##[group]Processing PR #161266 2025-09-07T07:34:10.4802577Z [161266] URL: https://github.com/pytorch/pytorch/pull/161266 2025-09-07T07:34:10.4802961Z [161266] Checking whether to label PR as stale. 2025-09-07T07:34:10.4803312Z [161266] Skipping because PR was updated recently 2025-09-07T07:34:10.4803756Z ##[endgroup] 2025-09-07T07:34:10.4804118Z ##[group]Processing PR #161274 2025-09-07T07:34:10.4804466Z [161274] URL: https://github.com/pytorch/pytorch/pull/161274 2025-09-07T07:34:10.4804849Z [161274] Checking whether to label PR as stale. 2025-09-07T07:34:10.4805201Z [161274] Skipping because PR was updated recently 2025-09-07T07:34:10.4805660Z ##[endgroup] 2025-09-07T07:34:10.4806023Z ##[group]Processing PR #161278 2025-09-07T07:34:10.4806355Z [161278] URL: https://github.com/pytorch/pytorch/pull/161278 2025-09-07T07:34:10.4806751Z [161278] Checking whether to label PR as stale. 2025-09-07T07:34:10.4807092Z [161278] Skipping because PR was updated recently 2025-09-07T07:34:10.4807548Z ##[endgroup] 2025-09-07T07:34:10.4807987Z ##[group]Processing PR #161279 2025-09-07T07:34:10.4808319Z [161279] URL: https://github.com/pytorch/pytorch/pull/161279 2025-09-07T07:34:10.4808720Z [161279] Checking whether to label PR as stale. 2025-09-07T07:34:10.4809074Z [161279] Skipping because PR was updated recently 2025-09-07T07:34:10.4809520Z ##[endgroup] 2025-09-07T07:34:10.4809882Z ##[group]Processing PR #161280 2025-09-07T07:34:10.4810227Z [161280] URL: https://github.com/pytorch/pytorch/pull/161280 2025-09-07T07:34:10.4810611Z [161280] Checking whether to label PR as stale. 2025-09-07T07:34:10.4810967Z [161280] Skipping because PR was updated recently 2025-09-07T07:34:10.4811426Z ##[endgroup] 2025-09-07T07:34:10.4811791Z ##[group]Processing PR #161288 2025-09-07T07:34:10.4812121Z [161288] URL: https://github.com/pytorch/pytorch/pull/161288 2025-09-07T07:34:10.4812514Z [161288] Checking whether to label PR as stale. 2025-09-07T07:34:10.4812851Z [161288] Skipping because PR was updated recently 2025-09-07T07:34:10.4813308Z ##[endgroup] 2025-09-07T07:34:10.4813671Z ##[group]Processing PR #161291 2025-09-07T07:34:10.4814005Z [161291] URL: https://github.com/pytorch/pytorch/pull/161291 2025-09-07T07:34:10.4814397Z [161291] Checking whether to label PR as stale. 2025-09-07T07:34:10.4814736Z [161291] Skipping because PR was updated recently 2025-09-07T07:34:10.4815188Z ##[endgroup] 2025-09-07T07:34:10.4815623Z ##[group]Processing PR #161299 2025-09-07T07:34:10.4815968Z [161299] URL: https://github.com/pytorch/pytorch/pull/161299 2025-09-07T07:34:10.4816350Z [161299] Checking whether to label PR as stale. 2025-09-07T07:34:10.4816703Z [161299] Skipping because PR was updated recently 2025-09-07T07:34:10.4817162Z ##[endgroup] 2025-09-07T07:34:10.4817520Z ##[group]Processing PR #161303 2025-09-07T07:34:10.4817867Z [161303] URL: https://github.com/pytorch/pytorch/pull/161303 2025-09-07T07:34:10.4818261Z [161303] Checking whether to label PR as stale. 2025-09-07T07:34:10.4818600Z [161303] Skipping because PR was updated recently 2025-09-07T07:34:10.4819057Z ##[endgroup] 2025-09-07T07:34:10.4819416Z ##[group]Processing PR #161307 2025-09-07T07:34:10.4819749Z [161307] URL: https://github.com/pytorch/pytorch/pull/161307 2025-09-07T07:34:10.4820146Z [161307] Checking whether to label PR as stale. 2025-09-07T07:34:10.4820486Z [161307] Skipping because PR was updated recently 2025-09-07T07:34:10.4820941Z ##[endgroup] 2025-09-07T07:34:10.4821307Z ##[group]Processing PR #161309 2025-09-07T07:34:10.4821655Z [161309] URL: https://github.com/pytorch/pytorch/pull/161309 2025-09-07T07:34:10.4822038Z [161309] Checking whether to label PR as stale. 2025-09-07T07:34:10.4822391Z [161309] Skipping because PR was updated recently 2025-09-07T07:34:10.4822846Z ##[endgroup] 2025-09-07T07:34:10.4823194Z ##[group]Processing PR #161311 2025-09-07T07:34:10.4823544Z [161311] URL: https://github.com/pytorch/pytorch/pull/161311 2025-09-07T07:34:10.4823938Z [161311] Checking whether to label PR as stale. 2025-09-07T07:34:10.4824277Z [161311] Skipping because PR was updated recently 2025-09-07T07:34:10.4824743Z ##[endgroup] 2025-09-07T07:34:10.4825106Z ##[group]Processing PR #161320 2025-09-07T07:34:10.4825438Z [161320] URL: https://github.com/pytorch/pytorch/pull/161320 2025-09-07T07:34:10.4825840Z [161320] Checking whether to label PR as stale. 2025-09-07T07:34:10.4826183Z [161320] Skipping because PR was updated recently 2025-09-07T07:34:10.4826733Z ##[endgroup] 2025-09-07T07:34:10.4827107Z ##[group]Processing PR #161325 2025-09-07T07:34:10.4827453Z [161325] URL: https://github.com/pytorch/pytorch/pull/161325 2025-09-07T07:34:10.4827837Z [161325] Checking whether to label PR as stale. 2025-09-07T07:34:10.4828192Z [161325] Skipping because PR was updated recently 2025-09-07T07:34:10.4828651Z ##[endgroup] 2025-09-07T07:34:10.4829003Z ##[group]Processing PR #161349 2025-09-07T07:34:10.4829345Z [161349] URL: https://github.com/pytorch/pytorch/pull/161349 2025-09-07T07:34:10.4829729Z [161349] Checking whether to label PR as stale. 2025-09-07T07:34:10.4830087Z [161349] Skipping because PR was updated recently 2025-09-07T07:34:10.4830631Z ##[endgroup] 2025-09-07T07:34:10.4831000Z ##[group]Processing PR #161350 2025-09-07T07:34:10.4831333Z [161350] URL: https://github.com/pytorch/pytorch/pull/161350 2025-09-07T07:34:10.4831731Z [161350] Checking whether to label PR as stale. 2025-09-07T07:34:10.4832072Z [161350] Skipping because PR was updated recently 2025-09-07T07:34:10.4832535Z ##[endgroup] 2025-09-07T07:34:10.4832898Z ##[group]Processing PR #161351 2025-09-07T07:34:10.4833239Z [161351] URL: https://github.com/pytorch/pytorch/pull/161351 2025-09-07T07:34:10.4833623Z [161351] Checking whether to label PR as stale. 2025-09-07T07:34:10.4834181Z [161351] Skipping because PR was updated recently 2025-09-07T07:34:10.4834634Z ##[endgroup] 2025-09-07T07:34:10.4835005Z ##[group]Processing PR #161359 2025-09-07T07:34:10.4835352Z [161359] URL: https://github.com/pytorch/pytorch/pull/161359 2025-09-07T07:34:10.4835736Z [161359] Checking whether to label PR as stale. 2025-09-07T07:34:10.4836088Z [161359] Skipping because PR was updated recently 2025-09-07T07:34:10.4836551Z ##[endgroup] 2025-09-07T07:34:10.4836914Z ##[group]Processing PR #161367 2025-09-07T07:34:10.4837245Z [161367] URL: https://github.com/pytorch/pytorch/pull/161367 2025-09-07T07:34:10.4837637Z [161367] Checking whether to label PR as stale. 2025-09-07T07:34:10.4837977Z [161367] Skipping because PR was updated recently 2025-09-07T07:34:10.4838552Z ##[endgroup] 2025-09-07T07:34:10.4838917Z ##[group]Processing PR #161369 2025-09-07T07:34:10.4839250Z [161369] URL: https://github.com/pytorch/pytorch/pull/161369 2025-09-07T07:34:10.4839648Z [161369] Checking whether to label PR as stale. 2025-09-07T07:34:10.4839999Z [161369] Skipping because PR was updated recently 2025-09-07T07:34:10.4840445Z ##[endgroup] 2025-09-07T07:34:10.4840813Z ##[group]Processing PR #161370 2025-09-07T07:34:10.4841156Z [161370] URL: https://github.com/pytorch/pytorch/pull/161370 2025-09-07T07:34:10.4841543Z [161370] Checking whether to label PR as stale. 2025-09-07T07:34:10.4841900Z [161370] Skipping because PR was updated recently 2025-09-07T07:34:10.4842357Z ##[endgroup] 2025-09-07T07:34:10.4842719Z ##[group]Processing PR #161373 2025-09-07T07:34:10.4843049Z [161373] URL: https://github.com/pytorch/pytorch/pull/161373 2025-09-07T07:34:10.4843443Z [161373] Checking whether to label PR as stale. 2025-09-07T07:34:10.4843784Z [161373] Skipping because PR was updated recently 2025-09-07T07:34:10.4844244Z ##[endgroup] 2025-09-07T07:34:10.4844606Z ##[group]Processing PR #161374 2025-09-07T07:34:10.4844936Z [161374] URL: https://github.com/pytorch/pytorch/pull/161374 2025-09-07T07:34:10.4845334Z [161374] Checking whether to label PR as stale. 2025-09-07T07:34:10.4845690Z [161374] Skipping because PR was updated recently 2025-09-07T07:34:10.4846135Z ##[endgroup] 2025-09-07T07:34:10.4846498Z ##[group]Processing PR #161394 2025-09-07T07:34:10.4846841Z [161394] URL: https://github.com/pytorch/pytorch/pull/161394 2025-09-07T07:34:10.4847225Z [161394] Checking whether to label PR as stale. 2025-09-07T07:34:10.4847580Z [161394] Skipping because PR was updated recently 2025-09-07T07:34:10.4848038Z ##[endgroup] 2025-09-07T07:34:10.4848390Z ##[group]Processing PR #161395 2025-09-07T07:34:10.4848733Z [161395] URL: https://github.com/pytorch/pytorch/pull/161395 2025-09-07T07:34:10.4849130Z [161395] Checking whether to label PR as stale. 2025-09-07T07:34:10.4849473Z [161395] Skipping because PR was updated recently 2025-09-07T07:34:10.4849926Z ##[endgroup] 2025-09-07T07:34:10.4850291Z ##[group]Processing PR #161397 2025-09-07T07:34:10.4850621Z [161397] URL: https://github.com/pytorch/pytorch/pull/161397 2025-09-07T07:34:10.4851014Z [161397] Checking whether to label PR as stale. 2025-09-07T07:34:10.4851354Z [161397] Skipping because PR was updated recently 2025-09-07T07:34:10.4851810Z ##[endgroup] 2025-09-07T07:34:10.4852171Z ##[group]Processing PR #161399 2025-09-07T07:34:10.4852513Z [161399] URL: https://github.com/pytorch/pytorch/pull/161399 2025-09-07T07:34:10.4852898Z [161399] Checking whether to label PR as stale. 2025-09-07T07:34:10.4853347Z [161399] Skipping because PR was updated recently 2025-09-07T07:34:10.4853804Z ##[endgroup] 2025-09-07T07:34:10.4854155Z ##[group]Processing PR #161400 2025-09-07T07:34:10.4854497Z [161400] URL: https://github.com/pytorch/pytorch/pull/161400 2025-09-07T07:34:10.4854883Z [161400] Checking whether to label PR as stale. 2025-09-07T07:34:10.4855240Z [161400] Skipping because PR was updated recently 2025-09-07T07:34:10.4855695Z ##[endgroup] 2025-09-07T07:34:10.4856057Z ##[group]Processing PR #161404 2025-09-07T07:34:10.4856390Z [161404] URL: https://github.com/pytorch/pytorch/pull/161404 2025-09-07T07:34:10.4856786Z [161404] Checking whether to label PR as stale. 2025-09-07T07:34:10.4857130Z [161404] Skipping because PR was updated recently 2025-09-07T07:34:10.4857587Z ##[endgroup] 2025-09-07T07:34:10.4857957Z ##[group]Processing PR #161405 2025-09-07T07:34:10.4858303Z [161405] URL: https://github.com/pytorch/pytorch/pull/161405 2025-09-07T07:34:10.4858699Z [161405] Checking whether to label PR as stale. 2025-09-07T07:34:10.4859031Z [161405] Skipping because PR was updated recently 2025-09-07T07:34:10.4859462Z ##[endgroup] 2025-09-07T07:34:10.4859885Z ##[group]Processing PR #161406 2025-09-07T07:34:10.4860203Z [161406] URL: https://github.com/pytorch/pytorch/pull/161406 2025-09-07T07:34:10.4860578Z [161406] Checking whether to label PR as stale. 2025-09-07T07:34:10.4860970Z [161406] Skipping because PR was updated recently 2025-09-07T07:34:10.4861407Z ##[endgroup] 2025-09-07T07:34:10.4861743Z ##[group]Processing PR #161414 2025-09-07T07:34:10.4862067Z [161414] URL: https://github.com/pytorch/pytorch/pull/161414 2025-09-07T07:34:10.4862439Z [161414] Checking whether to label PR as stale. 2025-09-07T07:34:10.4862779Z [161414] Skipping because PR was updated recently 2025-09-07T07:34:10.4863219Z ##[endgroup] 2025-09-07T07:34:10.4863552Z ##[group]Processing PR #161430 2025-09-07T07:34:10.4863887Z [161430] URL: https://github.com/pytorch/pytorch/pull/161430 2025-09-07T07:34:10.4864262Z [161430] Checking whether to label PR as stale. 2025-09-07T07:34:10.4864598Z [161430] Skipping because PR was updated recently 2025-09-07T07:34:10.4865032Z ##[endgroup] 2025-09-07T07:34:10.4865362Z ##[group]Processing PR #161431 2025-09-07T07:34:10.4865683Z [161431] URL: https://github.com/pytorch/pytorch/pull/161431 2025-09-07T07:34:10.4866060Z [161431] Checking whether to label PR as stale. 2025-09-07T07:34:10.4866385Z [161431] Skipping because PR was updated recently 2025-09-07T07:34:10.4866887Z ##[endgroup] 2025-09-07T07:34:10.4867231Z ##[group]Processing PR #161434 2025-09-07T07:34:10.4867560Z [161434] URL: https://github.com/pytorch/pytorch/pull/161434 2025-09-07T07:34:10.4867934Z [161434] Checking whether to label PR as stale. 2025-09-07T07:34:10.4868271Z [161434] Skipping because PR was updated recently 2025-09-07T07:34:10.4868701Z ##[endgroup] 2025-09-07T07:34:10.4869043Z ##[group]Processing PR #161442 2025-09-07T07:34:10.4869373Z [161442] URL: https://github.com/pytorch/pytorch/pull/161442 2025-09-07T07:34:10.4869750Z [161442] Checking whether to label PR as stale. 2025-09-07T07:34:10.4870089Z [161442] Skipping because PR was updated recently 2025-09-07T07:34:10.4870528Z ##[endgroup] 2025-09-07T07:34:10.4870869Z ##[group]Processing PR #161447 2025-09-07T07:34:10.4871193Z [161447] URL: https://github.com/pytorch/pytorch/pull/161447 2025-09-07T07:34:10.4871573Z [161447] Checking whether to label PR as stale. 2025-09-07T07:34:10.4871904Z [161447] Skipping because PR was updated recently 2025-09-07T07:34:10.4872343Z ##[endgroup] 2025-09-07T07:34:10.4872684Z ##[group]Processing PR #161458 2025-09-07T07:34:10.4873002Z [161458] URL: https://github.com/pytorch/pytorch/pull/161458 2025-09-07T07:34:10.4873387Z [161458] Checking whether to label PR as stale. 2025-09-07T07:34:10.4873722Z [161458] Skipping because PR was updated recently 2025-09-07T07:34:10.4874146Z ##[endgroup] 2025-09-07T07:34:10.4874485Z ##[group]Processing PR #161462 2025-09-07T07:34:10.4874814Z [161462] URL: https://github.com/pytorch/pytorch/pull/161462 2025-09-07T07:34:10.4875264Z [161462] Checking whether to label PR as stale. 2025-09-07T07:34:10.4875607Z [161462] Skipping because PR was updated recently 2025-09-07T07:34:10.4876055Z ##[endgroup] 2025-09-07T07:34:10.4876404Z ##[group]Processing PR #161464 2025-09-07T07:34:10.4876731Z [161464] URL: https://github.com/pytorch/pytorch/pull/161464 2025-09-07T07:34:10.4877120Z [161464] Checking whether to label PR as stale. 2025-09-07T07:34:10.4877451Z [161464] Skipping because PR was updated recently 2025-09-07T07:34:10.4877890Z ##[endgroup] 2025-09-07T07:34:10.4878235Z ##[group]Processing PR #161467 2025-09-07T07:34:10.4878557Z [161467] URL: https://github.com/pytorch/pytorch/pull/161467 2025-09-07T07:34:10.4878938Z [161467] Checking whether to label PR as stale. 2025-09-07T07:34:10.4879270Z [161467] Skipping because PR was updated recently 2025-09-07T07:34:10.4879711Z ##[endgroup] 2025-09-07T07:34:10.4880055Z ##[group]Processing PR #161468 2025-09-07T07:34:10.4880385Z [161468] URL: https://github.com/pytorch/pytorch/pull/161468 2025-09-07T07:34:10.4880759Z [161468] Checking whether to label PR as stale. 2025-09-07T07:34:10.4881102Z [161468] Skipping because PR was updated recently 2025-09-07T07:34:10.4881541Z ##[endgroup] 2025-09-07T07:34:11.4024562Z ##[group]Processing PR #161469 2025-09-07T07:34:11.4025252Z [161469] URL: https://github.com/pytorch/pytorch/pull/161469 2025-09-07T07:34:11.4026387Z [161469] Checking whether to label PR as stale. 2025-09-07T07:34:11.4027206Z [161469] Skipping because PR was updated recently 2025-09-07T07:34:11.4028137Z ##[endgroup] 2025-09-07T07:34:11.4028795Z ##[group]Processing PR #161472 2025-09-07T07:34:11.4029758Z [161472] URL: https://github.com/pytorch/pytorch/pull/161472 2025-09-07T07:34:11.4030618Z [161472] Checking whether to label PR as stale. 2025-09-07T07:34:11.4031380Z [161472] Skipping because PR was updated recently 2025-09-07T07:34:11.4032379Z ##[endgroup] 2025-09-07T07:34:11.4033175Z ##[group]Processing PR #161475 2025-09-07T07:34:11.4060887Z [161475] URL: https://github.com/pytorch/pytorch/pull/161475 2025-09-07T07:34:11.4061867Z [161475] Checking whether to label PR as stale. 2025-09-07T07:34:11.4062512Z [161475] Skipping because PR was updated recently 2025-09-07T07:34:11.4063420Z ##[endgroup] 2025-09-07T07:34:11.4064078Z ##[group]Processing PR #161476 2025-09-07T07:34:11.4064729Z [161476] URL: https://github.com/pytorch/pytorch/pull/161476 2025-09-07T07:34:11.4065468Z [161476] Checking whether to label PR as stale. 2025-09-07T07:34:11.4065981Z [161476] Skipping because PR was updated recently 2025-09-07T07:34:11.4066867Z ##[endgroup] 2025-09-07T07:34:11.4067407Z ##[group]Processing PR #161485 2025-09-07T07:34:11.4067986Z [161485] URL: https://github.com/pytorch/pytorch/pull/161485 2025-09-07T07:34:11.4068603Z [161485] Checking whether to label PR as stale. 2025-09-07T07:34:11.4069112Z [161485] Skipping because PR was updated recently 2025-09-07T07:34:11.4069865Z ##[endgroup] 2025-09-07T07:34:11.4070441Z ##[group]Processing PR #161488 2025-09-07T07:34:11.4071006Z [161488] URL: https://github.com/pytorch/pytorch/pull/161488 2025-09-07T07:34:11.4071621Z [161488] Checking whether to label PR as stale. 2025-09-07T07:34:11.4072174Z [161488] Skipping because PR was updated recently 2025-09-07T07:34:11.4072900Z ##[endgroup] 2025-09-07T07:34:11.4073410Z ##[group]Processing PR #161495 2025-09-07T07:34:11.4077385Z [161495] URL: https://github.com/pytorch/pytorch/pull/161495 2025-09-07T07:34:11.4078146Z [161495] Checking whether to label PR as stale. 2025-09-07T07:34:11.4078784Z [161495] Skipping because PR was updated recently 2025-09-07T07:34:11.4079686Z ##[endgroup] 2025-09-07T07:34:11.4080359Z ##[group]Processing PR #161499 2025-09-07T07:34:11.4150586Z [161499] URL: https://github.com/pytorch/pytorch/pull/161499 2025-09-07T07:34:11.4151290Z [161499] Checking whether to label PR as stale. 2025-09-07T07:34:11.4151841Z [161499] Skipping because PR was updated recently 2025-09-07T07:34:11.4152660Z ##[endgroup] 2025-09-07T07:34:11.4153267Z ##[group]Processing PR #161511 2025-09-07T07:34:11.4154162Z [161511] URL: https://github.com/pytorch/pytorch/pull/161511 2025-09-07T07:34:11.4154868Z [161511] Checking whether to label PR as stale. 2025-09-07T07:34:11.4155479Z [161511] Skipping because PR was updated recently 2025-09-07T07:34:11.4156258Z ##[endgroup] 2025-09-07T07:34:11.4156888Z ##[group]Processing PR #161512 2025-09-07T07:34:11.4157488Z [161512] URL: https://github.com/pytorch/pytorch/pull/161512 2025-09-07T07:34:11.4158182Z [161512] Checking whether to label PR as stale. 2025-09-07T07:34:11.4158803Z [161512] Skipping because PR was updated recently 2025-09-07T07:34:11.4159597Z ##[endgroup] 2025-09-07T07:34:11.4160232Z ##[group]Processing PR #161526 2025-09-07T07:34:11.4160816Z [161526] URL: https://github.com/pytorch/pytorch/pull/161526 2025-09-07T07:34:11.4161508Z [161526] Checking whether to label PR as stale. 2025-09-07T07:34:11.4162114Z [161526] Skipping because PR was updated recently 2025-09-07T07:34:11.4162912Z ##[endgroup] 2025-09-07T07:34:11.4163557Z ##[group]Processing PR #161527 2025-09-07T07:34:11.4164139Z [161527] URL: https://github.com/pytorch/pytorch/pull/161527 2025-09-07T07:34:11.4164832Z [161527] Checking whether to label PR as stale. 2025-09-07T07:34:11.4165446Z [161527] Skipping because PR was updated recently 2025-09-07T07:34:11.4166230Z ##[endgroup] 2025-09-07T07:34:11.4166855Z ##[group]Processing PR #161528 2025-09-07T07:34:11.4167604Z [161528] URL: https://github.com/pytorch/pytorch/pull/161528 2025-09-07T07:34:11.4168264Z [161528] Checking whether to label PR as stale. 2025-09-07T07:34:11.4168873Z [161528] Skipping because PR was updated recently 2025-09-07T07:34:11.4169695Z ##[endgroup] 2025-09-07T07:34:11.4170296Z ##[group]Processing PR #161529 2025-09-07T07:34:11.4170893Z [161529] URL: https://github.com/pytorch/pytorch/pull/161529 2025-09-07T07:34:11.4171579Z [161529] Checking whether to label PR as stale. 2025-09-07T07:34:11.4174343Z [161529] Skipping because PR was updated recently 2025-09-07T07:34:11.4175110Z ##[endgroup] 2025-09-07T07:34:11.4175674Z ##[group]Processing PR #161531 2025-09-07T07:34:11.4176173Z [161531] URL: https://github.com/pytorch/pytorch/pull/161531 2025-09-07T07:34:11.4176790Z [161531] Checking whether to label PR as stale. 2025-09-07T07:34:11.4177640Z [161531] Skipping because PR was updated recently 2025-09-07T07:34:11.4178408Z ##[endgroup] 2025-09-07T07:34:11.4186872Z ##[group]Processing PR #161534 2025-09-07T07:34:11.4187491Z [161534] URL: https://github.com/pytorch/pytorch/pull/161534 2025-09-07T07:34:11.4188115Z [161534] Checking whether to label PR as stale. 2025-09-07T07:34:11.4188718Z [161534] Skipping because PR was updated recently 2025-09-07T07:34:11.4189538Z ##[endgroup] 2025-09-07T07:34:11.4190102Z ##[group]Processing PR #161535 2025-09-07T07:34:11.4190655Z [161535] URL: https://github.com/pytorch/pytorch/pull/161535 2025-09-07T07:34:11.4191303Z [161535] Checking whether to label PR as stale. 2025-09-07T07:34:11.4191866Z [161535] Skipping because PR was updated recently 2025-09-07T07:34:11.4192567Z ##[endgroup] 2025-09-07T07:34:11.4193147Z ##[group]Processing PR #161543 2025-09-07T07:34:11.4193689Z [161543] URL: https://github.com/pytorch/pytorch/pull/161543 2025-09-07T07:34:11.4194291Z [161543] Checking whether to label PR as stale. 2025-09-07T07:34:11.4194877Z [161543] Skipping because PR was updated recently 2025-09-07T07:34:11.4195556Z ##[endgroup] 2025-09-07T07:34:11.4196114Z ##[group]Processing PR #161547 2025-09-07T07:34:11.4196637Z [161547] URL: https://github.com/pytorch/pytorch/pull/161547 2025-09-07T07:34:11.4197263Z [161547] Checking whether to label PR as stale. 2025-09-07T07:34:11.4197827Z [161547] Skipping because PR was updated recently 2025-09-07T07:34:11.4198572Z ##[endgroup] 2025-09-07T07:34:11.4199163Z ##[group]Processing PR #161551 2025-09-07T07:34:11.4199812Z [161551] URL: https://github.com/pytorch/pytorch/pull/161551 2025-09-07T07:34:11.4200544Z [161551] Checking whether to label PR as stale. 2025-09-07T07:34:11.4201220Z [161551] Skipping because PR was updated recently 2025-09-07T07:34:11.4202293Z ##[endgroup] 2025-09-07T07:34:11.4202973Z ##[group]Processing PR #161555 2025-09-07T07:34:11.4203609Z [161555] URL: https://github.com/pytorch/pytorch/pull/161555 2025-09-07T07:34:11.4204360Z [161555] Checking whether to label PR as stale. 2025-09-07T07:34:11.4205025Z [161555] Skipping because PR was updated recently 2025-09-07T07:34:11.4205901Z ##[endgroup] 2025-09-07T07:34:11.4206592Z ##[group]Processing PR #161557 2025-09-07T07:34:11.4207227Z [161557] URL: https://github.com/pytorch/pytorch/pull/161557 2025-09-07T07:34:11.4207957Z [161557] Checking whether to label PR as stale. 2025-09-07T07:34:11.4208618Z [161557] Skipping because PR was updated recently 2025-09-07T07:34:11.4209472Z ##[endgroup] 2025-09-07T07:34:11.4210139Z ##[group]Processing PR #161559 2025-09-07T07:34:11.4210781Z [161559] URL: https://github.com/pytorch/pytorch/pull/161559 2025-09-07T07:34:11.4211494Z [161559] Checking whether to label PR as stale. 2025-09-07T07:34:11.4212153Z [161559] Skipping because PR was updated recently 2025-09-07T07:34:11.4213020Z ##[endgroup] 2025-09-07T07:34:11.4213688Z ##[group]Processing PR #161564 2025-09-07T07:34:11.4214312Z [161564] URL: https://github.com/pytorch/pytorch/pull/161564 2025-09-07T07:34:11.4215064Z [161564] Checking whether to label PR as stale. 2025-09-07T07:34:11.4215721Z [161564] Skipping because PR was updated recently 2025-09-07T07:34:11.4216581Z ##[endgroup] 2025-09-07T07:34:11.4217420Z ##[group]Processing PR #161571 2025-09-07T07:34:11.4218063Z [161571] URL: https://github.com/pytorch/pytorch/pull/161571 2025-09-07T07:34:11.4218800Z [161571] Checking whether to label PR as stale. 2025-09-07T07:34:11.4219470Z [161571] Skipping because PR was updated recently 2025-09-07T07:34:11.4220323Z ##[endgroup] 2025-09-07T07:34:11.4220994Z ##[group]Processing PR #161578 2025-09-07T07:34:11.4221649Z [161578] URL: https://github.com/pytorch/pytorch/pull/161578 2025-09-07T07:34:11.4222396Z [161578] Checking whether to label PR as stale. 2025-09-07T07:34:11.4223077Z [161578] Skipping because PR was updated recently 2025-09-07T07:34:11.4223941Z ##[endgroup] 2025-09-07T07:34:11.4224605Z ##[group]Processing PR #161583 2025-09-07T07:34:11.4225267Z [161583] URL: https://github.com/pytorch/pytorch/pull/161583 2025-09-07T07:34:11.4226013Z [161583] Checking whether to label PR as stale. 2025-09-07T07:34:11.4226769Z [161583] Skipping because PR was updated recently 2025-09-07T07:34:11.4227665Z ##[endgroup] 2025-09-07T07:34:11.4228333Z ##[group]Processing PR #161585 2025-09-07T07:34:11.4228970Z [161585] URL: https://github.com/pytorch/pytorch/pull/161585 2025-09-07T07:34:11.4229730Z [161585] Checking whether to label PR as stale. 2025-09-07T07:34:11.4230783Z [161585] Skipping because PR was updated recently 2025-09-07T07:34:11.4231677Z ##[endgroup] 2025-09-07T07:34:11.4232362Z ##[group]Processing PR #161591 2025-09-07T07:34:11.4233021Z [161591] URL: https://github.com/pytorch/pytorch/pull/161591 2025-09-07T07:34:11.4233773Z [161591] Checking whether to label PR as stale. 2025-09-07T07:34:11.4234683Z [161591] Skipping because PR was updated recently 2025-09-07T07:34:11.4235573Z ##[endgroup] 2025-09-07T07:34:11.4236230Z ##[group]Processing PR #161594 2025-09-07T07:34:11.4236894Z [161594] URL: https://github.com/pytorch/pytorch/pull/161594 2025-09-07T07:34:11.4237641Z [161594] Checking whether to label PR as stale. 2025-09-07T07:34:11.4238303Z [161594] Skipping because PR was updated recently 2025-09-07T07:34:11.4239189Z ##[endgroup] 2025-09-07T07:34:11.4239855Z ##[group]Processing PR #161595 2025-09-07T07:34:11.4240491Z [161595] URL: https://github.com/pytorch/pytorch/pull/161595 2025-09-07T07:34:11.4241239Z [161595] Checking whether to label PR as stale. 2025-09-07T07:34:11.4241897Z [161595] Skipping because PR was updated recently 2025-09-07T07:34:11.4242762Z ##[endgroup] 2025-09-07T07:34:11.4243474Z ##[group]Processing PR #161596 2025-09-07T07:34:11.4244065Z [161596] URL: https://github.com/pytorch/pytorch/pull/161596 2025-09-07T07:34:11.4244797Z [161596] Checking whether to label PR as stale. 2025-09-07T07:34:11.4245626Z [161596] Skipping because PR was updated recently 2025-09-07T07:34:11.4246466Z ##[endgroup] 2025-09-07T07:34:11.4247109Z ##[group]Processing PR #161598 2025-09-07T07:34:11.4247692Z [161598] URL: https://github.com/pytorch/pytorch/pull/161598 2025-09-07T07:34:11.4248380Z [161598] Checking whether to label PR as stale. 2025-09-07T07:34:11.4249054Z [161598] Skipping because PR was updated recently 2025-09-07T07:34:11.4249745Z ##[endgroup] 2025-09-07T07:34:11.4250244Z ##[group]Processing PR #161606 2025-09-07T07:34:11.4250584Z [161606] URL: https://github.com/pytorch/pytorch/pull/161606 2025-09-07T07:34:11.4250985Z [161606] Checking whether to label PR as stale. 2025-09-07T07:34:11.4251329Z [161606] Skipping because PR was updated recently 2025-09-07T07:34:11.4251789Z ##[endgroup] 2025-09-07T07:34:11.4252155Z ##[group]Processing PR #161607 2025-09-07T07:34:11.4252502Z [161607] URL: https://github.com/pytorch/pytorch/pull/161607 2025-09-07T07:34:11.4252886Z [161607] Checking whether to label PR as stale. 2025-09-07T07:34:11.4253250Z [161607] Skipping because PR was updated recently 2025-09-07T07:34:11.4253699Z ##[endgroup] 2025-09-07T07:34:11.4254070Z ##[group]Processing PR #161615 2025-09-07T07:34:11.4254415Z [161615] URL: https://github.com/pytorch/pytorch/pull/161615 2025-09-07T07:34:11.4254798Z [161615] Checking whether to label PR as stale. 2025-09-07T07:34:11.4255309Z [161615] Skipping because PR was updated recently 2025-09-07T07:34:11.4255775Z ##[endgroup] 2025-09-07T07:34:11.4256142Z ##[group]Processing PR #161624 2025-09-07T07:34:11.4256476Z [161624] URL: https://github.com/pytorch/pytorch/pull/161624 2025-09-07T07:34:11.4256875Z [161624] Checking whether to label PR as stale. 2025-09-07T07:34:11.4257219Z [161624] Skipping because PR was updated recently 2025-09-07T07:34:11.4257675Z ##[endgroup] 2025-09-07T07:34:11.4258037Z ##[group]Processing PR #161630 2025-09-07T07:34:11.4258368Z [161630] URL: https://github.com/pytorch/pytorch/pull/161630 2025-09-07T07:34:11.4258762Z [161630] Checking whether to label PR as stale. 2025-09-07T07:34:11.4259119Z [161630] Skipping because PR was updated recently 2025-09-07T07:34:11.4259566Z ##[endgroup] 2025-09-07T07:34:11.4259931Z ##[group]Processing PR #161633 2025-09-07T07:34:11.4260278Z [161633] URL: https://github.com/pytorch/pytorch/pull/161633 2025-09-07T07:34:11.4260666Z [161633] Checking whether to label PR as stale. 2025-09-07T07:34:11.4261019Z [161633] Skipping because PR was updated recently 2025-09-07T07:34:11.4261472Z ##[endgroup] 2025-09-07T07:34:11.4261821Z ##[group]Processing PR #161634 2025-09-07T07:34:11.4262162Z [161634] URL: https://github.com/pytorch/pytorch/pull/161634 2025-09-07T07:34:11.4262557Z [161634] Checking whether to label PR as stale. 2025-09-07T07:34:11.4262897Z [161634] Skipping because PR was updated recently 2025-09-07T07:34:11.4263351Z ##[endgroup] 2025-09-07T07:34:11.4263714Z ##[group]Processing PR #161635 2025-09-07T07:34:11.4264045Z [161635] URL: https://github.com/pytorch/pytorch/pull/161635 2025-09-07T07:34:11.4264444Z [161635] Checking whether to label PR as stale. 2025-09-07T07:34:11.4264784Z [161635] Skipping because PR was updated recently 2025-09-07T07:34:11.4265239Z ##[endgroup] 2025-09-07T07:34:11.4265602Z ##[group]Processing PR #161639 2025-09-07T07:34:11.4265943Z [161639] URL: https://github.com/pytorch/pytorch/pull/161639 2025-09-07T07:34:11.4266327Z [161639] Checking whether to label PR as stale. 2025-09-07T07:34:11.4266792Z [161639] Skipping because PR was updated recently 2025-09-07T07:34:11.4267249Z ##[endgroup] 2025-09-07T07:34:11.4267600Z ##[group]Processing PR #161645 2025-09-07T07:34:11.4267943Z [161645] URL: https://github.com/pytorch/pytorch/pull/161645 2025-09-07T07:34:11.4268343Z [161645] Checking whether to label PR as stale. 2025-09-07T07:34:11.4268685Z [161645] Skipping because PR was updated recently 2025-09-07T07:34:11.4269141Z ##[endgroup] 2025-09-07T07:34:11.4269507Z ##[group]Processing PR #161652 2025-09-07T07:34:11.4269839Z [161652] URL: https://github.com/pytorch/pytorch/pull/161652 2025-09-07T07:34:11.4270322Z [161652] Checking whether to label PR as stale. 2025-09-07T07:34:11.4270665Z [161652] Skipping because PR was updated recently 2025-09-07T07:34:11.4271130Z ##[endgroup] 2025-09-07T07:34:11.4271499Z ##[group]Processing PR #161664 2025-09-07T07:34:11.4271846Z [161664] URL: https://github.com/pytorch/pytorch/pull/161664 2025-09-07T07:34:11.4272234Z [161664] Checking whether to label PR as stale. 2025-09-07T07:34:11.4272587Z [161664] Skipping because PR was updated recently 2025-09-07T07:34:11.4273042Z ##[endgroup] 2025-09-07T07:34:11.4273392Z ##[group]Processing PR #161665 2025-09-07T07:34:11.4273733Z [161665] URL: https://github.com/pytorch/pytorch/pull/161665 2025-09-07T07:34:11.4274113Z [161665] Checking whether to label PR as stale. 2025-09-07T07:34:11.4274464Z [161665] Skipping because PR was updated recently 2025-09-07T07:34:11.4274920Z ##[endgroup] 2025-09-07T07:34:11.4275279Z ##[group]Processing PR #161667 2025-09-07T07:34:11.4275611Z [161667] URL: https://github.com/pytorch/pytorch/pull/161667 2025-09-07T07:34:11.4276009Z [161667] Checking whether to label PR as stale. 2025-09-07T07:34:11.4276349Z [161667] Skipping because PR was updated recently 2025-09-07T07:34:11.4276802Z ##[endgroup] 2025-09-07T07:34:11.4277164Z ##[group]Processing PR #161669 2025-09-07T07:34:11.4277503Z [161669] URL: https://github.com/pytorch/pytorch/pull/161669 2025-09-07T07:34:11.4277947Z [161669] Checking whether to label PR as stale. 2025-09-07T07:34:11.4278300Z [161669] Skipping because PR was updated recently 2025-09-07T07:34:11.4278743Z ##[endgroup] 2025-09-07T07:34:11.4279106Z ##[group]Processing PR #161670 2025-09-07T07:34:11.4279451Z [161670] URL: https://github.com/pytorch/pytorch/pull/161670 2025-09-07T07:34:11.4279832Z [161670] Checking whether to label PR as stale. 2025-09-07T07:34:11.4280183Z [161670] Skipping because PR was updated recently 2025-09-07T07:34:11.4280641Z ##[endgroup] 2025-09-07T07:34:11.4281009Z ##[group]Processing PR #161673 2025-09-07T07:34:11.4281340Z [161673] URL: https://github.com/pytorch/pytorch/pull/161673 2025-09-07T07:34:11.4281746Z [161673] Checking whether to label PR as stale. 2025-09-07T07:34:11.4282087Z [161673] Skipping because PR was updated recently 2025-09-07T07:34:11.4282543Z ##[endgroup] 2025-09-07T07:34:11.4282905Z ##[group]Processing PR #161674 2025-09-07T07:34:11.4283235Z [161674] URL: https://github.com/pytorch/pytorch/pull/161674 2025-09-07T07:34:11.4283633Z [161674] Checking whether to label PR as stale. 2025-09-07T07:34:11.4283986Z [161674] Skipping because PR was updated recently 2025-09-07T07:34:11.4284431Z ##[endgroup] 2025-09-07T07:34:11.4284794Z ##[group]Processing PR #161675 2025-09-07T07:34:11.4285152Z [161675] URL: https://github.com/pytorch/pytorch/pull/161675 2025-09-07T07:34:11.4285538Z [161675] Checking whether to label PR as stale. 2025-09-07T07:34:11.4285890Z [161675] Skipping because PR was updated recently 2025-09-07T07:34:11.4286350Z ##[endgroup] 2025-09-07T07:34:11.4286716Z ##[group]Processing PR #161678 2025-09-07T07:34:11.4287050Z [161678] URL: https://github.com/pytorch/pytorch/pull/161678 2025-09-07T07:34:11.4287447Z [161678] Checking whether to label PR as stale. 2025-09-07T07:34:11.4287792Z [161678] Skipping because PR was updated recently 2025-09-07T07:34:11.4288256Z ##[endgroup] 2025-09-07T07:34:11.4288620Z ##[group]Processing PR #161680 2025-09-07T07:34:11.4288957Z [161680] URL: https://github.com/pytorch/pytorch/pull/161680 2025-09-07T07:34:11.4289354Z [161680] Checking whether to label PR as stale. 2025-09-07T07:34:11.4289701Z [161680] Skipping because PR was updated recently 2025-09-07T07:34:11.4290160Z ##[endgroup] 2025-09-07T07:34:11.4290529Z ##[group]Processing PR #161681 2025-09-07T07:34:11.4290871Z [161681] URL: https://github.com/pytorch/pytorch/pull/161681 2025-09-07T07:34:11.4291253Z [161681] Checking whether to label PR as stale. 2025-09-07T07:34:11.4291607Z [161681] Skipping because PR was updated recently 2025-09-07T07:34:11.4292068Z ##[endgroup] 2025-09-07T07:34:11.4292423Z ##[group]Processing PR #161683 2025-09-07T07:34:11.4292845Z [161683] URL: https://github.com/pytorch/pytorch/pull/161683 2025-09-07T07:34:11.4293241Z [161683] Checking whether to label PR as stale. 2025-09-07T07:34:11.4293581Z [161683] Skipping because PR was updated recently 2025-09-07T07:34:11.4294041Z ##[endgroup] 2025-09-07T07:34:11.4294397Z ##[group]Processing PR #161689 2025-09-07T07:34:11.4294730Z [161689] URL: https://github.com/pytorch/pytorch/pull/161689 2025-09-07T07:34:11.4295124Z [161689] Checking whether to label PR as stale. 2025-09-07T07:34:11.4295466Z [161689] Skipping because PR was updated recently 2025-09-07T07:34:11.4295919Z ##[endgroup] 2025-09-07T07:34:11.4296281Z ##[group]Processing PR #161692 2025-09-07T07:34:11.4296625Z [161692] URL: https://github.com/pytorch/pytorch/pull/161692 2025-09-07T07:34:11.4297010Z [161692] Checking whether to label PR as stale. 2025-09-07T07:34:11.4297361Z [161692] Skipping because PR was updated recently 2025-09-07T07:34:11.4297817Z ##[endgroup] 2025-09-07T07:34:11.4298167Z ##[group]Processing PR #161693 2025-09-07T07:34:11.4298513Z [161693] URL: https://github.com/pytorch/pytorch/pull/161693 2025-09-07T07:34:11.4298894Z [161693] Checking whether to label PR as stale. 2025-09-07T07:34:11.4299245Z [161693] Skipping because PR was updated recently 2025-09-07T07:34:11.4299700Z ##[endgroup] 2025-09-07T07:34:11.4300059Z ##[group]Processing PR #161695 2025-09-07T07:34:11.4300459Z [161695] URL: https://github.com/pytorch/pytorch/pull/161695 2025-09-07T07:34:11.4300858Z [161695] Checking whether to label PR as stale. 2025-09-07T07:34:11.4301206Z [161695] Skipping because PR was updated recently 2025-09-07T07:34:11.4301673Z ##[endgroup] 2025-09-07T07:34:11.4302045Z ##[group]Processing PR #161700 2025-09-07T07:34:11.4302391Z [161700] URL: https://github.com/pytorch/pytorch/pull/161700 2025-09-07T07:34:11.4302774Z [161700] Checking whether to label PR as stale. 2025-09-07T07:34:11.4303130Z [161700] Skipping because PR was updated recently 2025-09-07T07:34:11.4303571Z ##[endgroup] 2025-09-07T07:34:11.4303941Z ##[group]Processing PR #161703 2025-09-07T07:34:11.4304281Z [161703] URL: https://github.com/pytorch/pytorch/pull/161703 2025-09-07T07:34:11.4304664Z [161703] Checking whether to label PR as stale. 2025-09-07T07:34:11.4305016Z [161703] Skipping because PR was updated recently 2025-09-07T07:34:11.4305467Z ##[endgroup] 2025-09-07T07:34:11.4305939Z ##[group]Processing PR #161704 2025-09-07T07:34:11.4306280Z [161704] URL: https://github.com/pytorch/pytorch/pull/161704 2025-09-07T07:34:11.4306745Z [161704] Checking whether to label PR as stale. 2025-09-07T07:34:11.4307089Z [161704] Skipping because PR was updated recently 2025-09-07T07:34:11.4307551Z ##[endgroup] 2025-09-07T07:34:11.4307918Z ##[group]Processing PR #161707 2025-09-07T07:34:11.4308249Z [161707] URL: https://github.com/pytorch/pytorch/pull/161707 2025-09-07T07:34:11.4308647Z [161707] Checking whether to label PR as stale. 2025-09-07T07:34:11.4308998Z [161707] Skipping because PR was updated recently 2025-09-07T07:34:11.4309440Z ##[endgroup] 2025-09-07T07:34:11.4309807Z ##[group]Processing PR #161709 2025-09-07T07:34:11.4310151Z [161709] URL: https://github.com/pytorch/pytorch/pull/161709 2025-09-07T07:34:11.4310536Z [161709] Checking whether to label PR as stale. 2025-09-07T07:34:11.4310893Z [161709] Skipping because PR was updated recently 2025-09-07T07:34:11.4311356Z ##[endgroup] 2025-09-07T07:34:11.4311714Z ##[group]Processing PR #161710 2025-09-07T07:34:11.4312052Z [161710] URL: https://github.com/pytorch/pytorch/pull/161710 2025-09-07T07:34:11.4312446Z [161710] Checking whether to label PR as stale. 2025-09-07T07:34:11.4312788Z [161710] Skipping because PR was updated recently 2025-09-07T07:34:11.4313242Z ##[endgroup] 2025-09-07T07:34:11.4313608Z ##[group]Processing PR #161711 2025-09-07T07:34:11.4314010Z [161711] URL: https://github.com/pytorch/pytorch/pull/161711 2025-09-07T07:34:11.4314409Z [161711] Checking whether to label PR as stale. 2025-09-07T07:34:11.4314751Z [161711] Skipping because PR was updated recently 2025-09-07T07:34:11.4323471Z ##[endgroup] 2025-09-07T07:34:11.4323931Z ##[group]Processing PR #161716 2025-09-07T07:34:11.4324299Z [161716] URL: https://github.com/pytorch/pytorch/pull/161716 2025-09-07T07:34:11.4324709Z [161716] Checking whether to label PR as stale. 2025-09-07T07:34:11.4325060Z [161716] Skipping because PR was updated recently 2025-09-07T07:34:11.4325533Z ##[endgroup] 2025-09-07T07:34:11.4325914Z ##[group]Processing PR #161718 2025-09-07T07:34:11.4326255Z [161718] URL: https://github.com/pytorch/pytorch/pull/161718 2025-09-07T07:34:11.4326661Z [161718] Checking whether to label PR as stale. 2025-09-07T07:34:11.4327006Z [161718] Skipping because PR was updated recently 2025-09-07T07:34:11.4327472Z ##[endgroup] 2025-09-07T07:34:11.4327842Z ##[group]Processing PR #161724 2025-09-07T07:34:11.4328193Z [161724] URL: https://github.com/pytorch/pytorch/pull/161724 2025-09-07T07:34:11.4328580Z [161724] Checking whether to label PR as stale. 2025-09-07T07:34:11.4328937Z [161724] Skipping because PR was updated recently 2025-09-07T07:34:11.4329408Z ##[endgroup] 2025-09-07T07:34:11.4329764Z ##[group]Processing PR #161728 2025-09-07T07:34:11.4330116Z [161728] URL: https://github.com/pytorch/pytorch/pull/161728 2025-09-07T07:34:11.4330505Z [161728] Checking whether to label PR as stale. 2025-09-07T07:34:11.4330860Z [161728] Skipping because PR was updated recently 2025-09-07T07:34:11.4331322Z ##[endgroup] 2025-09-07T07:34:11.4331828Z ##[group]Processing PR #161730 2025-09-07T07:34:11.4332165Z [161730] URL: https://github.com/pytorch/pytorch/pull/161730 2025-09-07T07:34:11.4332564Z [161730] Checking whether to label PR as stale. 2025-09-07T07:34:11.4332906Z [161730] Skipping because PR was updated recently 2025-09-07T07:34:11.4333363Z ##[endgroup] 2025-09-07T07:34:11.4333731Z ##[group]Processing PR #161731 2025-09-07T07:34:11.4334318Z [161731] URL: https://github.com/pytorch/pytorch/pull/161731 2025-09-07T07:34:11.4334706Z [161731] Checking whether to label PR as stale. 2025-09-07T07:34:11.4335064Z [161731] Skipping because PR was updated recently 2025-09-07T07:34:11.4335519Z ##[endgroup] 2025-09-07T07:34:11.4335892Z ##[group]Processing PR #161732 2025-09-07T07:34:11.4336242Z [161732] URL: https://github.com/pytorch/pytorch/pull/161732 2025-09-07T07:34:11.4336627Z [161732] Checking whether to label PR as stale. 2025-09-07T07:34:11.4336983Z [161732] Skipping because PR was updated recently 2025-09-07T07:34:11.4337446Z ##[endgroup] 2025-09-07T07:34:11.4337819Z ##[group]Processing PR #161734 2025-09-07T07:34:11.4338152Z [161734] URL: https://github.com/pytorch/pytorch/pull/161734 2025-09-07T07:34:11.4338549Z [161734] Checking whether to label PR as stale. 2025-09-07T07:34:11.4338892Z [161734] Skipping because PR was updated recently 2025-09-07T07:34:11.4339351Z ##[endgroup] 2025-09-07T07:34:11.4339716Z ##[group]Processing PR #161736 2025-09-07T07:34:11.4340049Z [161736] URL: https://github.com/pytorch/pytorch/pull/161736 2025-09-07T07:34:11.4340445Z [161736] Checking whether to label PR as stale. 2025-09-07T07:34:11.4340798Z [161736] Skipping because PR was updated recently 2025-09-07T07:34:11.4341250Z ##[endgroup] 2025-09-07T07:34:11.4341616Z ##[group]Processing PR #161738 2025-09-07T07:34:11.4341965Z [161738] URL: https://github.com/pytorch/pytorch/pull/161738 2025-09-07T07:34:11.4342351Z [161738] Checking whether to label PR as stale. 2025-09-07T07:34:11.4342705Z [161738] Skipping because PR was updated recently 2025-09-07T07:34:11.4343172Z ##[endgroup] 2025-09-07T07:34:11.4343541Z ##[group]Processing PR #161740 2025-09-07T07:34:11.4343874Z [161740] URL: https://github.com/pytorch/pytorch/pull/161740 2025-09-07T07:34:11.4344272Z [161740] Checking whether to label PR as stale. 2025-09-07T07:34:11.4344614Z [161740] Skipping because PR was updated recently 2025-09-07T07:34:11.4345073Z ##[endgroup] 2025-09-07T07:34:11.4345438Z ##[group]Processing PR #161742 2025-09-07T07:34:11.4345775Z [161742] URL: https://github.com/pytorch/pytorch/pull/161742 2025-09-07T07:34:11.4346174Z [161742] Checking whether to label PR as stale. 2025-09-07T07:34:11.4346729Z [161742] Skipping because PR was updated recently 2025-09-07T07:34:11.4347197Z ##[endgroup] 2025-09-07T07:34:11.4347569Z ##[group]Processing PR #161744 2025-09-07T07:34:11.4347916Z [161744] URL: https://github.com/pytorch/pytorch/pull/161744 2025-09-07T07:34:11.4348297Z [161744] Checking whether to label PR as stale. 2025-09-07T07:34:11.4348653Z [161744] Skipping because PR was updated recently 2025-09-07T07:34:11.4349120Z ##[endgroup] 2025-09-07T07:34:11.4349473Z ##[group]Processing PR #161745 2025-09-07T07:34:11.4349814Z [161745] URL: https://github.com/pytorch/pytorch/pull/161745 2025-09-07T07:34:11.4350210Z [161745] Checking whether to label PR as stale. 2025-09-07T07:34:11.4350551Z [161745] Skipping because PR was updated recently 2025-09-07T07:34:11.4351008Z ##[endgroup] 2025-09-07T07:34:11.4351376Z ##[group]Processing PR #161746 2025-09-07T07:34:11.4351707Z [161746] URL: https://github.com/pytorch/pytorch/pull/161746 2025-09-07T07:34:11.4352105Z [161746] Checking whether to label PR as stale. 2025-09-07T07:34:11.4352455Z [161746] Skipping because PR was updated recently 2025-09-07T07:34:11.4352913Z ##[endgroup] 2025-09-07T07:34:11.4353274Z ##[group]Processing PR #161749 2025-09-07T07:34:11.4353615Z [161749] URL: https://github.com/pytorch/pytorch/pull/161749 2025-09-07T07:34:11.4353997Z [161749] Checking whether to label PR as stale. 2025-09-07T07:34:11.4354440Z [161749] Skipping because PR was updated recently 2025-09-07T07:34:11.4354907Z ##[endgroup] 2025-09-07T07:34:11.4355263Z ##[group]Processing PR #161759 2025-09-07T07:34:11.4355607Z [161759] URL: https://github.com/pytorch/pytorch/pull/161759 2025-09-07T07:34:11.4356005Z [161759] Checking whether to label PR as stale. 2025-09-07T07:34:11.4356347Z [161759] Skipping because PR was updated recently 2025-09-07T07:34:11.4356807Z ##[endgroup] 2025-09-07T07:34:11.4357225Z ##[group]Processing PR #161761 2025-09-07T07:34:11.4357574Z [161761] URL: https://github.com/pytorch/pytorch/pull/161761 2025-09-07T07:34:11.4357957Z [161761] Checking whether to label PR as stale. 2025-09-07T07:34:11.4358318Z [161761] Skipping because PR was updated recently 2025-09-07T07:34:11.4358770Z ##[endgroup] 2025-09-07T07:34:11.4359118Z ##[group]Processing PR #161766 2025-09-07T07:34:11.4359457Z [161766] URL: https://github.com/pytorch/pytorch/pull/161766 2025-09-07T07:34:11.4359836Z [161766] Checking whether to label PR as stale. 2025-09-07T07:34:11.4360191Z [161766] Skipping because PR was updated recently 2025-09-07T07:34:11.4360650Z ##[endgroup] 2025-09-07T07:34:11.4361010Z ##[group]Processing PR #161770 2025-09-07T07:34:11.4361339Z [161770] URL: https://github.com/pytorch/pytorch/pull/161770 2025-09-07T07:34:11.4361732Z [161770] Checking whether to label PR as stale. 2025-09-07T07:34:11.4362071Z [161770] Skipping because PR was updated recently 2025-09-07T07:34:11.4362526Z ##[endgroup] 2025-09-07T07:34:11.4362887Z ##[group]Processing PR #161771 2025-09-07T07:34:11.4363230Z [161771] URL: https://github.com/pytorch/pytorch/pull/161771 2025-09-07T07:34:11.4363611Z [161771] Checking whether to label PR as stale. 2025-09-07T07:34:11.4363968Z [161771] Skipping because PR was updated recently 2025-09-07T07:34:11.4364411Z ##[endgroup] 2025-09-07T07:34:11.4364774Z ##[group]Processing PR #161775 2025-09-07T07:34:11.4365117Z [161775] URL: https://github.com/pytorch/pytorch/pull/161775 2025-09-07T07:34:11.4365502Z [161775] Checking whether to label PR as stale. 2025-09-07T07:34:11.4365858Z [161775] Skipping because PR was updated recently 2025-09-07T07:34:11.4366314Z ##[endgroup] 2025-09-07T07:34:11.4366681Z ##[group]Processing PR #161782 2025-09-07T07:34:11.4367013Z [161782] URL: https://github.com/pytorch/pytorch/pull/161782 2025-09-07T07:34:11.4367413Z [161782] Checking whether to label PR as stale. 2025-09-07T07:34:11.4367754Z [161782] Skipping because PR was updated recently 2025-09-07T07:34:11.4368214Z ##[endgroup] 2025-09-07T07:34:11.4368578Z ##[group]Processing PR #161786 2025-09-07T07:34:11.4368908Z [161786] URL: https://github.com/pytorch/pytorch/pull/161786 2025-09-07T07:34:11.4369379Z [161786] Checking whether to label PR as stale. 2025-09-07T07:34:11.4369736Z [161786] Skipping because PR was updated recently 2025-09-07T07:34:11.4370182Z ##[endgroup] 2025-09-07T07:34:11.4370549Z ##[group]Processing PR #161787 2025-09-07T07:34:11.4370898Z [161787] URL: https://github.com/pytorch/pytorch/pull/161787 2025-09-07T07:34:11.4371280Z [161787] Checking whether to label PR as stale. 2025-09-07T07:34:11.4371632Z [161787] Skipping because PR was updated recently 2025-09-07T07:34:11.4372092Z ##[endgroup] 2025-09-07T07:34:11.4372452Z ##[group]Processing PR #161788 2025-09-07T07:34:11.4372784Z [161788] URL: https://github.com/pytorch/pytorch/pull/161788 2025-09-07T07:34:11.4373179Z [161788] Checking whether to label PR as stale. 2025-09-07T07:34:11.4373522Z [161788] Skipping because PR was updated recently 2025-09-07T07:34:11.4373980Z ##[endgroup] 2025-09-07T07:34:11.4374338Z ##[group]Processing PR #161797 2025-09-07T07:34:11.4374667Z [161797] URL: https://github.com/pytorch/pytorch/pull/161797 2025-09-07T07:34:11.4375062Z [161797] Checking whether to label PR as stale. 2025-09-07T07:34:11.4375399Z [161797] Skipping because PR was updated recently 2025-09-07T07:34:11.4375854Z ##[endgroup] 2025-09-07T07:34:11.4376215Z ##[group]Processing PR #161806 2025-09-07T07:34:11.4376555Z [161806] URL: https://github.com/pytorch/pytorch/pull/161806 2025-09-07T07:34:11.4377004Z [161806] Checking whether to label PR as stale. 2025-09-07T07:34:11.4377359Z [161806] Skipping because PR was updated recently 2025-09-07T07:34:11.4377820Z ##[endgroup] 2025-09-07T07:34:11.4378171Z ##[group]Processing PR #161808 2025-09-07T07:34:11.4378518Z [161808] URL: https://github.com/pytorch/pytorch/pull/161808 2025-09-07T07:34:11.4378914Z [161808] Checking whether to label PR as stale. 2025-09-07T07:34:11.4379254Z [161808] Skipping because PR was updated recently 2025-09-07T07:34:11.4379710Z ##[endgroup] 2025-09-07T07:34:11.4380073Z ##[group]Processing PR #161809 2025-09-07T07:34:11.4380403Z [161809] URL: https://github.com/pytorch/pytorch/pull/161809 2025-09-07T07:34:11.4380801Z [161809] Checking whether to label PR as stale. 2025-09-07T07:34:11.4381140Z [161809] Skipping because PR was updated recently 2025-09-07T07:34:11.4381596Z ##[endgroup] 2025-09-07T07:34:11.4381959Z ##[group]Processing PR #161810 2025-09-07T07:34:11.4382303Z [161810] URL: https://github.com/pytorch/pytorch/pull/161810 2025-09-07T07:34:11.4382691Z [161810] Checking whether to label PR as stale. 2025-09-07T07:34:11.4383045Z [161810] Skipping because PR was updated recently 2025-09-07T07:34:11.4383503Z ##[endgroup] 2025-09-07T07:34:11.4383852Z ##[group]Processing PR #161819 2025-09-07T07:34:11.4384198Z [161819] URL: https://github.com/pytorch/pytorch/pull/161819 2025-09-07T07:34:11.4384581Z [161819] Checking whether to label PR as stale. 2025-09-07T07:34:11.4384934Z [161819] Skipping because PR was updated recently 2025-09-07T07:34:11.4385391Z ##[endgroup] 2025-09-07T07:34:11.4385753Z ##[group]Processing PR #161821 2025-09-07T07:34:11.4386084Z [161821] URL: https://github.com/pytorch/pytorch/pull/161821 2025-09-07T07:34:11.4386480Z [161821] Checking whether to label PR as stale. 2025-09-07T07:34:11.4386915Z [161821] Skipping because PR was updated recently 2025-09-07T07:34:11.4387379Z ##[endgroup] 2025-09-07T07:34:12.2973108Z ##[group]Processing PR #161823 2025-09-07T07:34:12.2973821Z [161823] URL: https://github.com/pytorch/pytorch/pull/161823 2025-09-07T07:34:12.2974618Z [161823] Checking whether to label PR as stale. 2025-09-07T07:34:12.2975299Z [161823] Skipping because PR was updated recently 2025-09-07T07:34:12.2976199Z ##[endgroup] 2025-09-07T07:34:12.2976865Z ##[group]Processing PR #161825 2025-09-07T07:34:12.2977792Z [161825] URL: https://github.com/pytorch/pytorch/pull/161825 2025-09-07T07:34:12.2978638Z [161825] Checking whether to label PR as stale. 2025-09-07T07:34:12.2979363Z [161825] Skipping because PR was updated recently 2025-09-07T07:34:12.2980326Z ##[endgroup] 2025-09-07T07:34:12.2981070Z ##[group]Processing PR #161828 2025-09-07T07:34:12.2981806Z [161828] URL: https://github.com/pytorch/pytorch/pull/161828 2025-09-07T07:34:12.2983066Z [161828] Checking whether to label PR as stale. 2025-09-07T07:34:12.2983810Z [161828] Skipping because PR was updated recently 2025-09-07T07:34:12.2984755Z ##[endgroup] 2025-09-07T07:34:12.2985502Z ##[group]Processing PR #161838 2025-09-07T07:34:12.2986204Z [161838] URL: https://github.com/pytorch/pytorch/pull/161838 2025-09-07T07:34:12.2987111Z [161838] Checking whether to label PR as stale. 2025-09-07T07:34:12.2987827Z [161838] Skipping because PR was updated recently 2025-09-07T07:34:12.2988772Z ##[endgroup] 2025-09-07T07:34:12.2989512Z ##[group]Processing PR #161839 2025-09-07T07:34:12.2990229Z [161839] URL: https://github.com/pytorch/pytorch/pull/161839 2025-09-07T07:34:12.2991033Z [161839] Checking whether to label PR as stale. 2025-09-07T07:34:12.2991768Z [161839] Skipping because PR was updated recently 2025-09-07T07:34:12.2992692Z ##[endgroup] 2025-09-07T07:34:12.2993434Z ##[group]Processing PR #161840 2025-09-07T07:34:12.2994174Z [161840] URL: https://github.com/pytorch/pytorch/pull/161840 2025-09-07T07:34:12.2994998Z [161840] Checking whether to label PR as stale. 2025-09-07T07:34:12.2995720Z [161840] Skipping because PR was updated recently 2025-09-07T07:34:12.2996626Z ##[endgroup] 2025-09-07T07:34:12.2997356Z ##[group]Processing PR #161848 2025-09-07T07:34:12.2998322Z [161848] URL: https://github.com/pytorch/pytorch/pull/161848 2025-09-07T07:34:12.2999161Z [161848] Checking whether to label PR as stale. 2025-09-07T07:34:12.2999877Z [161848] Skipping because PR was updated recently 2025-09-07T07:34:12.3001065Z ##[endgroup] 2025-09-07T07:34:12.3001802Z ##[group]Processing PR #161849 2025-09-07T07:34:12.3002448Z [161849] URL: https://github.com/pytorch/pytorch/pull/161849 2025-09-07T07:34:12.3003237Z [161849] Checking whether to label PR as stale. 2025-09-07T07:34:12.3003878Z [161849] Skipping because PR was updated recently 2025-09-07T07:34:12.3004723Z ##[endgroup] 2025-09-07T07:34:12.3005420Z ##[group]Processing PR #161855 2025-09-07T07:34:12.3006119Z [161855] URL: https://github.com/pytorch/pytorch/pull/161855 2025-09-07T07:34:12.3006870Z [161855] Checking whether to label PR as stale. 2025-09-07T07:34:12.3007516Z [161855] Skipping because PR was updated recently 2025-09-07T07:34:12.3008402Z ##[endgroup] 2025-09-07T07:34:12.3009108Z ##[group]Processing PR #161856 2025-09-07T07:34:12.3009796Z [161856] URL: https://github.com/pytorch/pytorch/pull/161856 2025-09-07T07:34:12.3010525Z [161856] Checking whether to label PR as stale. 2025-09-07T07:34:12.3011215Z [161856] Skipping because PR was updated recently 2025-09-07T07:34:12.3012080Z ##[endgroup] 2025-09-07T07:34:12.3012767Z ##[group]Processing PR #161857 2025-09-07T07:34:12.3013459Z [161857] URL: https://github.com/pytorch/pytorch/pull/161857 2025-09-07T07:34:12.3014206Z [161857] Checking whether to label PR as stale. 2025-09-07T07:34:12.3014858Z [161857] Skipping because PR was updated recently 2025-09-07T07:34:12.3015696Z ##[endgroup] 2025-09-07T07:34:12.3016454Z ##[group]Processing PR #161866 2025-09-07T07:34:12.3017132Z [161866] URL: https://github.com/pytorch/pytorch/pull/161866 2025-09-07T07:34:12.3017756Z [161866] Checking whether to label PR as stale. 2025-09-07T07:34:12.3018298Z [161866] Skipping because PR was updated recently 2025-09-07T07:34:12.3018958Z ##[endgroup] 2025-09-07T07:34:12.3019496Z ##[group]Processing PR #161870 2025-09-07T07:34:12.3020008Z [161870] URL: https://github.com/pytorch/pytorch/pull/161870 2025-09-07T07:34:12.3020555Z [161870] Checking whether to label PR as stale. 2025-09-07T07:34:12.3021060Z [161870] Skipping because PR was updated recently 2025-09-07T07:34:12.3021696Z ##[endgroup] 2025-09-07T07:34:12.3022243Z ##[group]Processing PR #161876 2025-09-07T07:34:12.3022739Z [161876] URL: https://github.com/pytorch/pytorch/pull/161876 2025-09-07T07:34:12.3023286Z [161876] Checking whether to label PR as stale. 2025-09-07T07:34:12.3023813Z [161876] Skipping because PR was updated recently 2025-09-07T07:34:12.3024441Z ##[endgroup] 2025-09-07T07:34:12.3025117Z ##[group]Processing PR #161879 2025-09-07T07:34:12.3025750Z [161879] URL: https://github.com/pytorch/pytorch/pull/161879 2025-09-07T07:34:12.3026287Z [161879] Checking whether to label PR as stale. 2025-09-07T07:34:12.3026868Z [161879] Skipping because PR was updated recently 2025-09-07T07:34:12.3027536Z ##[endgroup] 2025-09-07T07:34:12.3028074Z ##[group]Processing PR #161880 2025-09-07T07:34:12.3028581Z [161880] URL: https://github.com/pytorch/pytorch/pull/161880 2025-09-07T07:34:12.3029129Z [161880] Checking whether to label PR as stale. 2025-09-07T07:34:12.3029654Z [161880] Skipping because PR was updated recently 2025-09-07T07:34:12.3030272Z ##[endgroup] 2025-09-07T07:34:12.3030806Z ##[group]Processing PR #161881 2025-09-07T07:34:12.3031319Z [161881] URL: https://github.com/pytorch/pytorch/pull/161881 2025-09-07T07:34:12.3031868Z [161881] Checking whether to label PR as stale. 2025-09-07T07:34:12.3032370Z [161881] Skipping because PR was updated recently 2025-09-07T07:34:12.3033004Z ##[endgroup] 2025-09-07T07:34:12.3033542Z ##[group]Processing PR #161885 2025-09-07T07:34:12.3034247Z [161885] URL: https://github.com/pytorch/pytorch/pull/161885 2025-09-07T07:34:12.3034909Z [161885] Checking whether to label PR as stale. 2025-09-07T07:34:12.3035448Z [161885] Skipping because PR was updated recently 2025-09-07T07:34:12.3036091Z ##[endgroup] 2025-09-07T07:34:12.3036615Z ##[group]Processing PR #161890 2025-09-07T07:34:12.3037285Z [161890] URL: https://github.com/pytorch/pytorch/pull/161890 2025-09-07T07:34:12.3037853Z [161890] Checking whether to label PR as stale. 2025-09-07T07:34:12.3038363Z [161890] Skipping because PR was updated recently 2025-09-07T07:34:12.3039004Z ##[endgroup] 2025-09-07T07:34:12.3039536Z ##[group]Processing PR #161891 2025-09-07T07:34:12.3040045Z [161891] URL: https://github.com/pytorch/pytorch/pull/161891 2025-09-07T07:34:12.3040575Z [161891] Checking whether to label PR as stale. 2025-09-07T07:34:12.3041097Z [161891] Skipping because PR was updated recently 2025-09-07T07:34:12.3041742Z ##[endgroup] 2025-09-07T07:34:12.3042272Z ##[group]Processing PR #161892 2025-09-07T07:34:12.3042769Z [161892] URL: https://github.com/pytorch/pytorch/pull/161892 2025-09-07T07:34:12.3043307Z [161892] Checking whether to label PR as stale. 2025-09-07T07:34:12.3043829Z [161892] Skipping because PR was updated recently 2025-09-07T07:34:12.3044466Z ##[endgroup] 2025-09-07T07:34:12.3044999Z ##[group]Processing PR #161893 2025-09-07T07:34:12.3045505Z [161893] URL: https://github.com/pytorch/pytorch/pull/161893 2025-09-07T07:34:12.3046080Z [161893] Checking whether to label PR as stale. 2025-09-07T07:34:12.3046606Z [161893] Skipping because PR was updated recently 2025-09-07T07:34:12.3047247Z ##[endgroup] 2025-09-07T07:34:12.3047782Z ##[group]Processing PR #161894 2025-09-07T07:34:12.3048283Z [161894] URL: https://github.com/pytorch/pytorch/pull/161894 2025-09-07T07:34:12.3048829Z [161894] Checking whether to label PR as stale. 2025-09-07T07:34:12.3049342Z [161894] Skipping because PR was updated recently 2025-09-07T07:34:12.3049988Z ##[endgroup] 2025-09-07T07:34:12.3050519Z ##[group]Processing PR #161895 2025-09-07T07:34:12.3051030Z [161895] URL: https://github.com/pytorch/pytorch/pull/161895 2025-09-07T07:34:12.3051561Z [161895] Checking whether to label PR as stale. 2025-09-07T07:34:12.3052079Z [161895] Skipping because PR was updated recently 2025-09-07T07:34:12.3052723Z ##[endgroup] 2025-09-07T07:34:12.3053264Z ##[group]Processing PR #161896 2025-09-07T07:34:12.3053762Z [161896] URL: https://github.com/pytorch/pytorch/pull/161896 2025-09-07T07:34:12.3054306Z [161896] Checking whether to label PR as stale. 2025-09-07T07:34:12.3054835Z [161896] Skipping because PR was updated recently 2025-09-07T07:34:12.3055453Z ##[endgroup] 2025-09-07T07:34:12.3055984Z ##[group]Processing PR #161897 2025-09-07T07:34:12.3056497Z [161897] URL: https://github.com/pytorch/pytorch/pull/161897 2025-09-07T07:34:12.3057029Z [161897] Checking whether to label PR as stale. 2025-09-07T07:34:12.3057548Z [161897] Skipping because PR was updated recently 2025-09-07T07:34:12.3058325Z ##[endgroup] 2025-09-07T07:34:12.3058858Z ##[group]Processing PR #161898 2025-09-07T07:34:12.3059357Z [161898] URL: https://github.com/pytorch/pytorch/pull/161898 2025-09-07T07:34:12.3059901Z [161898] Checking whether to label PR as stale. 2025-09-07T07:34:12.3060424Z [161898] Skipping because PR was updated recently 2025-09-07T07:34:12.3061063Z ##[endgroup] 2025-09-07T07:34:12.3061591Z ##[group]Processing PR #161900 2025-09-07T07:34:12.3062105Z [161900] URL: https://github.com/pytorch/pytorch/pull/161900 2025-09-07T07:34:12.3062648Z [161900] Checking whether to label PR as stale. 2025-09-07T07:34:12.3063152Z [161900] Skipping because PR was updated recently 2025-09-07T07:34:12.3063785Z ##[endgroup] 2025-09-07T07:34:12.3064314Z ##[group]Processing PR #161901 2025-09-07T07:34:12.3064825Z [161901] URL: https://github.com/pytorch/pytorch/pull/161901 2025-09-07T07:34:12.3065360Z [161901] Checking whether to label PR as stale. 2025-09-07T07:34:12.3065883Z [161901] Skipping because PR was updated recently 2025-09-07T07:34:12.3066528Z ##[endgroup] 2025-09-07T07:34:12.3067136Z ##[group]Processing PR #161910 2025-09-07T07:34:12.3067651Z [161910] URL: https://github.com/pytorch/pytorch/pull/161910 2025-09-07T07:34:12.3068203Z [161910] Checking whether to label PR as stale. 2025-09-07T07:34:12.3068706Z [161910] Skipping because PR was updated recently 2025-09-07T07:34:12.3069492Z ##[endgroup] 2025-09-07T07:34:12.3070065Z ##[group]Processing PR #161911 2025-09-07T07:34:12.3070582Z [161911] URL: https://github.com/pytorch/pytorch/pull/161911 2025-09-07T07:34:12.3071121Z [161911] Checking whether to label PR as stale. 2025-09-07T07:34:12.3071645Z [161911] Skipping because PR was updated recently 2025-09-07T07:34:12.3072299Z ##[endgroup] 2025-09-07T07:34:12.3072841Z ##[group]Processing PR #161912 2025-09-07T07:34:12.3073353Z [161912] URL: https://github.com/pytorch/pytorch/pull/161912 2025-09-07T07:34:12.3073885Z [161912] Checking whether to label PR as stale. 2025-09-07T07:34:12.3074413Z [161912] Skipping because PR was updated recently 2025-09-07T07:34:12.3075054Z ##[endgroup] 2025-09-07T07:34:12.3075586Z ##[group]Processing PR #161913 2025-09-07T07:34:12.3076086Z [161913] URL: https://github.com/pytorch/pytorch/pull/161913 2025-09-07T07:34:12.3076695Z [161913] Checking whether to label PR as stale. 2025-09-07T07:34:12.3077224Z [161913] Skipping because PR was updated recently 2025-09-07T07:34:12.3077873Z ##[endgroup] 2025-09-07T07:34:12.3078406Z ##[group]Processing PR #161914 2025-09-07T07:34:12.3078921Z [161914] URL: https://github.com/pytorch/pytorch/pull/161914 2025-09-07T07:34:12.3079452Z [161914] Checking whether to label PR as stale. 2025-09-07T07:34:12.3079953Z [161914] Skipping because PR was updated recently 2025-09-07T07:34:12.3080704Z ##[endgroup] 2025-09-07T07:34:12.3081257Z ##[group]Processing PR #161917 2025-09-07T07:34:12.3081761Z [161917] URL: https://github.com/pytorch/pytorch/pull/161917 2025-09-07T07:34:12.3082312Z [161917] Checking whether to label PR as stale. 2025-09-07T07:34:12.3082827Z [161917] Skipping because PR was updated recently 2025-09-07T07:34:12.3083460Z ##[endgroup] 2025-09-07T07:34:12.3083989Z ##[group]Processing PR #161918 2025-09-07T07:34:12.3084495Z [161918] URL: https://github.com/pytorch/pytorch/pull/161918 2025-09-07T07:34:12.3085025Z [161918] Checking whether to label PR as stale. 2025-09-07T07:34:12.3085548Z [161918] Skipping because PR was updated recently 2025-09-07T07:34:12.3086184Z ##[endgroup] 2025-09-07T07:34:12.3086713Z ##[group]Processing PR #161924 2025-09-07T07:34:12.3087213Z [161924] URL: https://github.com/pytorch/pytorch/pull/161924 2025-09-07T07:34:12.3087756Z [161924] Checking whether to label PR as stale. 2025-09-07T07:34:12.3088281Z [161924] Skipping because PR was updated recently 2025-09-07T07:34:12.3088899Z ##[endgroup] 2025-09-07T07:34:12.3089433Z ##[group]Processing PR #161926 2025-09-07T07:34:12.3089947Z [161926] URL: https://github.com/pytorch/pytorch/pull/161926 2025-09-07T07:34:12.3090475Z [161926] Checking whether to label PR as stale. 2025-09-07T07:34:12.3091189Z [161926] Skipping because PR was updated recently 2025-09-07T07:34:12.3091918Z ##[endgroup] 2025-09-07T07:34:12.3092468Z ##[group]Processing PR #161930 2025-09-07T07:34:12.3092987Z [161930] URL: https://github.com/pytorch/pytorch/pull/161930 2025-09-07T07:34:12.3093536Z [161930] Checking whether to label PR as stale. 2025-09-07T07:34:12.3094096Z [161930] Skipping because PR was updated recently 2025-09-07T07:34:12.3094755Z ##[endgroup] 2025-09-07T07:34:12.3095297Z ##[group]Processing PR #161936 2025-09-07T07:34:12.3095823Z [161936] URL: https://github.com/pytorch/pytorch/pull/161936 2025-09-07T07:34:12.3096376Z [161936] Checking whether to label PR as stale. 2025-09-07T07:34:12.3096903Z [161936] Skipping because PR was updated recently 2025-09-07T07:34:12.3097584Z ##[endgroup] 2025-09-07T07:34:12.3098143Z ##[group]Processing PR #161938 2025-09-07T07:34:12.3098670Z [161938] URL: https://github.com/pytorch/pytorch/pull/161938 2025-09-07T07:34:12.3099203Z [161938] Checking whether to label PR as stale. 2025-09-07T07:34:12.3099756Z [161938] Skipping because PR was updated recently 2025-09-07T07:34:12.3100420Z ##[endgroup] 2025-09-07T07:34:12.3100967Z ##[group]Processing PR #161939 2025-09-07T07:34:12.3101493Z [161939] URL: https://github.com/pytorch/pytorch/pull/161939 2025-09-07T07:34:12.3102009Z [161939] Checking whether to label PR as stale. 2025-09-07T07:34:12.3102727Z [161939] Skipping because PR was updated recently 2025-09-07T07:34:12.3103385Z ##[endgroup] 2025-09-07T07:34:12.3103940Z ##[group]Processing PR #161940 2025-09-07T07:34:12.3104470Z [161940] URL: https://github.com/pytorch/pytorch/pull/161940 2025-09-07T07:34:12.3105003Z [161940] Checking whether to label PR as stale. 2025-09-07T07:34:12.3105550Z [161940] Skipping because PR was updated recently 2025-09-07T07:34:12.3106221Z ##[endgroup] 2025-09-07T07:34:12.3106855Z ##[group]Processing PR #161946 2025-09-07T07:34:12.3107381Z [161946] URL: https://github.com/pytorch/pytorch/pull/161946 2025-09-07T07:34:12.3107940Z [161946] Checking whether to label PR as stale. 2025-09-07T07:34:12.3108475Z [161946] Skipping because PR was updated recently 2025-09-07T07:34:12.3109141Z ##[endgroup] 2025-09-07T07:34:12.3109693Z ##[group]Processing PR #161952 2025-09-07T07:34:12.3110224Z [161952] URL: https://github.com/pytorch/pytorch/pull/161952 2025-09-07T07:34:12.3110759Z [161952] Checking whether to label PR as stale. 2025-09-07T07:34:12.3111314Z [161952] Skipping because PR was updated recently 2025-09-07T07:34:12.3111980Z ##[endgroup] 2025-09-07T07:34:12.3112532Z ##[group]Processing PR #161955 2025-09-07T07:34:12.3113052Z [161955] URL: https://github.com/pytorch/pytorch/pull/161955 2025-09-07T07:34:12.3113601Z [161955] Checking whether to label PR as stale. 2025-09-07T07:34:12.3114139Z [161955] Skipping because PR was updated recently 2025-09-07T07:34:12.3114807Z ##[endgroup] 2025-09-07T07:34:12.3115359Z ##[group]Processing PR #161957 2025-09-07T07:34:12.3115888Z [161957] URL: https://github.com/pytorch/pytorch/pull/161957 2025-09-07T07:34:12.3116430Z [161957] Checking whether to label PR as stale. 2025-09-07T07:34:12.3116981Z [161957] Skipping because PR was updated recently 2025-09-07T07:34:12.3117647Z ##[endgroup] 2025-09-07T07:34:12.3118201Z ##[group]Processing PR #161959 2025-09-07T07:34:12.3118719Z [161959] URL: https://github.com/pytorch/pytorch/pull/161959 2025-09-07T07:34:12.3119278Z [161959] Checking whether to label PR as stale. 2025-09-07T07:34:12.3119821Z [161959] Skipping because PR was updated recently 2025-09-07T07:34:12.3120484Z ##[endgroup] 2025-09-07T07:34:12.3121036Z ##[group]Processing PR #161965 2025-09-07T07:34:12.3121564Z [161965] URL: https://github.com/pytorch/pytorch/pull/161965 2025-09-07T07:34:12.3122120Z [161965] Checking whether to label PR as stale. 2025-09-07T07:34:12.3122650Z [161965] Skipping because PR was updated recently 2025-09-07T07:34:12.3123323Z ##[endgroup] 2025-09-07T07:34:12.3123873Z ##[group]Processing PR #161967 2025-09-07T07:34:12.3124387Z [161967] URL: https://github.com/pytorch/pytorch/pull/161967 2025-09-07T07:34:12.3125050Z [161967] Checking whether to label PR as stale. 2025-09-07T07:34:12.3125606Z [161967] Skipping because PR was updated recently 2025-09-07T07:34:12.3126275Z ##[endgroup] 2025-09-07T07:34:12.3126812Z ##[group]Processing PR #161971 2025-09-07T07:34:12.3127343Z [161971] URL: https://github.com/pytorch/pytorch/pull/161971 2025-09-07T07:34:12.3127900Z [161971] Checking whether to label PR as stale. 2025-09-07T07:34:12.3128417Z [161971] Skipping because PR was updated recently 2025-09-07T07:34:12.3129094Z ##[endgroup] 2025-09-07T07:34:12.3129644Z ##[group]Processing PR #161972 2025-09-07T07:34:12.3130174Z [161972] URL: https://github.com/pytorch/pytorch/pull/161972 2025-09-07T07:34:12.3130705Z [161972] Checking whether to label PR as stale. 2025-09-07T07:34:12.3131255Z [161972] Skipping because PR was updated recently 2025-09-07T07:34:12.3131925Z ##[endgroup] 2025-09-07T07:34:12.3132461Z ##[group]Processing PR #161975 2025-09-07T07:34:12.3132989Z [161975] URL: https://github.com/pytorch/pytorch/pull/161975 2025-09-07T07:34:12.3133540Z [161975] Checking whether to label PR as stale. 2025-09-07T07:34:12.3134249Z [161975] Skipping because PR was updated recently 2025-09-07T07:34:12.3134886Z ##[endgroup] 2025-09-07T07:34:12.3135415Z ##[group]Processing PR #161977 2025-09-07T07:34:12.3135921Z [161977] URL: https://github.com/pytorch/pytorch/pull/161977 2025-09-07T07:34:12.3136590Z [161977] Checking whether to label PR as stale. 2025-09-07T07:34:12.3137103Z [161977] Skipping because PR was updated recently 2025-09-07T07:34:12.3137743Z ##[endgroup] 2025-09-07T07:34:12.3138277Z ##[group]Processing PR #161978 2025-09-07T07:34:12.3138774Z [161978] URL: https://github.com/pytorch/pytorch/pull/161978 2025-09-07T07:34:12.3139316Z [161978] Checking whether to label PR as stale. 2025-09-07T07:34:12.3139849Z [161978] Skipping because PR was updated recently 2025-09-07T07:34:12.3140479Z ##[endgroup] 2025-09-07T07:34:12.3141007Z ##[group]Processing PR #161979 2025-09-07T07:34:12.3141531Z [161979] URL: https://github.com/pytorch/pytorch/pull/161979 2025-09-07T07:34:12.3142065Z [161979] Checking whether to label PR as stale. 2025-09-07T07:34:12.3142583Z [161979] Skipping because PR was updated recently 2025-09-07T07:34:12.3143217Z ##[endgroup] 2025-09-07T07:34:12.3143747Z ##[group]Processing PR #161980 2025-09-07T07:34:12.3144241Z [161980] URL: https://github.com/pytorch/pytorch/pull/161980 2025-09-07T07:34:12.3144790Z [161980] Checking whether to label PR as stale. 2025-09-07T07:34:12.3145291Z [161980] Skipping because PR was updated recently 2025-09-07T07:34:12.3145920Z ##[endgroup] 2025-09-07T07:34:12.3146448Z ##[group]Processing PR #161982 2025-09-07T07:34:12.3147030Z [161982] URL: https://github.com/pytorch/pytorch/pull/161982 2025-09-07T07:34:12.3147572Z [161982] Checking whether to label PR as stale. 2025-09-07T07:34:12.3148092Z [161982] Skipping because PR was updated recently 2025-09-07T07:34:12.3148726Z ##[endgroup] 2025-09-07T07:34:12.3149259Z ##[group]Processing PR #161987 2025-09-07T07:34:12.3149762Z [161987] URL: https://github.com/pytorch/pytorch/pull/161987 2025-09-07T07:34:12.3150303Z [161987] Checking whether to label PR as stale. 2025-09-07T07:34:12.3150826Z [161987] Skipping because PR was updated recently 2025-09-07T07:34:12.3151444Z ##[endgroup] 2025-09-07T07:34:12.3151972Z ##[group]Processing PR #161991 2025-09-07T07:34:12.3152484Z [161991] URL: https://github.com/pytorch/pytorch/pull/161991 2025-09-07T07:34:12.3153022Z [161991] Checking whether to label PR as stale. 2025-09-07T07:34:12.3153528Z [161991] Skipping because PR was updated recently 2025-09-07T07:34:12.3154153Z ##[endgroup] 2025-09-07T07:34:12.3154683Z ##[group]Processing PR #161994 2025-09-07T07:34:12.3155177Z [161994] URL: https://github.com/pytorch/pytorch/pull/161994 2025-09-07T07:34:12.3155720Z [161994] Checking whether to label PR as stale. 2025-09-07T07:34:12.3156240Z [161994] Skipping because PR was updated recently 2025-09-07T07:34:12.3156869Z ##[endgroup] 2025-09-07T07:34:12.3157387Z ##[group]Processing PR #162003 2025-09-07T07:34:12.3158037Z [162003] URL: https://github.com/pytorch/pytorch/pull/162003 2025-09-07T07:34:12.3158583Z [162003] Checking whether to label PR as stale. 2025-09-07T07:34:12.3159072Z [162003] Skipping because PR was updated recently 2025-09-07T07:34:12.3159757Z ##[endgroup] 2025-09-07T07:34:12.3160285Z ##[group]Processing PR #162007 2025-09-07T07:34:12.3160799Z [162007] URL: https://github.com/pytorch/pytorch/pull/162007 2025-09-07T07:34:12.3161334Z [162007] Checking whether to label PR as stale. 2025-09-07T07:34:12.3161853Z [162007] Skipping because PR was updated recently 2025-09-07T07:34:12.3162481Z ##[endgroup] 2025-09-07T07:34:12.3163013Z ##[group]Processing PR #162008 2025-09-07T07:34:12.3163516Z [162008] URL: https://github.com/pytorch/pytorch/pull/162008 2025-09-07T07:34:12.3164062Z [162008] Checking whether to label PR as stale. 2025-09-07T07:34:12.3164571Z [162008] Skipping because PR was updated recently 2025-09-07T07:34:12.3165204Z ##[endgroup] 2025-09-07T07:34:12.3165741Z ##[group]Processing PR #162010 2025-09-07T07:34:12.3166248Z [162010] URL: https://github.com/pytorch/pytorch/pull/162010 2025-09-07T07:34:12.3166779Z [162010] Checking whether to label PR as stale. 2025-09-07T07:34:12.3167302Z [162010] Skipping because PR was updated recently 2025-09-07T07:34:12.3167933Z ##[endgroup] 2025-09-07T07:34:12.3168466Z ##[group]Processing PR #162011 2025-09-07T07:34:12.3169041Z [162011] URL: https://github.com/pytorch/pytorch/pull/162011 2025-09-07T07:34:12.3169591Z [162011] Checking whether to label PR as stale. 2025-09-07T07:34:12.3170108Z [162011] Skipping because PR was updated recently 2025-09-07T07:34:12.3170733Z ##[endgroup] 2025-09-07T07:34:12.3171268Z ##[group]Processing PR #162013 2025-09-07T07:34:12.3171776Z [162013] URL: https://github.com/pytorch/pytorch/pull/162013 2025-09-07T07:34:12.3172303Z [162013] Checking whether to label PR as stale. 2025-09-07T07:34:12.3172827Z [162013] Skipping because PR was updated recently 2025-09-07T07:34:12.3173453Z ##[endgroup] 2025-09-07T07:34:12.3173982Z ##[group]Processing PR #162014 2025-09-07T07:34:12.3174472Z [162014] URL: https://github.com/pytorch/pytorch/pull/162014 2025-09-07T07:34:12.3175009Z [162014] Checking whether to label PR as stale. 2025-09-07T07:34:12.3175527Z [162014] Skipping because PR was updated recently 2025-09-07T07:34:12.3176143Z ##[endgroup] 2025-09-07T07:34:12.3176668Z ##[group]Processing PR #162016 2025-09-07T07:34:12.3177166Z [162016] URL: https://github.com/pytorch/pytorch/pull/162016 2025-09-07T07:34:12.3177804Z [162016] Checking whether to label PR as stale. 2025-09-07T07:34:12.3178325Z [162016] Skipping because PR was updated recently 2025-09-07T07:34:12.3178958Z ##[endgroup] 2025-09-07T07:34:12.3179486Z ##[group]Processing PR #162017 2025-09-07T07:34:12.3179982Z [162017] URL: https://github.com/pytorch/pytorch/pull/162017 2025-09-07T07:34:12.3180531Z [162017] Checking whether to label PR as stale. 2025-09-07T07:34:12.3181048Z [162017] Skipping because PR was updated recently 2025-09-07T07:34:12.3181673Z ##[endgroup] 2025-09-07T07:34:12.3182199Z ##[group]Processing PR #162018 2025-09-07T07:34:12.3182706Z [162018] URL: https://github.com/pytorch/pytorch/pull/162018 2025-09-07T07:34:12.3183248Z [162018] Checking whether to label PR as stale. 2025-09-07T07:34:12.3183748Z [162018] Skipping because PR was updated recently 2025-09-07T07:34:12.3184378Z ##[endgroup] 2025-09-07T07:34:12.3184910Z ##[group]Processing PR #162021 2025-09-07T07:34:12.3185419Z [162021] URL: https://github.com/pytorch/pytorch/pull/162021 2025-09-07T07:34:12.3185947Z [162021] Checking whether to label PR as stale. 2025-09-07T07:34:12.3186463Z [162021] Skipping because PR was updated recently 2025-09-07T07:34:12.3187196Z ##[endgroup] 2025-09-07T07:34:12.3187717Z ##[group]Processing PR #162022 2025-09-07T07:34:12.3188231Z [162022] URL: https://github.com/pytorch/pytorch/pull/162022 2025-09-07T07:34:12.3188783Z [162022] Checking whether to label PR as stale. 2025-09-07T07:34:12.3189287Z [162022] Skipping because PR was updated recently 2025-09-07T07:34:12.3190030Z ##[endgroup] 2025-09-07T07:34:12.3190566Z ##[group]Processing PR #162023 2025-09-07T07:34:12.3191070Z [162023] URL: https://github.com/pytorch/pytorch/pull/162023 2025-09-07T07:34:12.3191599Z [162023] Checking whether to label PR as stale. 2025-09-07T07:34:12.3192119Z [162023] Skipping because PR was updated recently 2025-09-07T07:34:12.3192751Z ##[endgroup] 2025-09-07T07:34:12.3193284Z ##[group]Processing PR #162025 2025-09-07T07:34:12.3193777Z [162025] URL: https://github.com/pytorch/pytorch/pull/162025 2025-09-07T07:34:12.3194325Z [162025] Checking whether to label PR as stale. 2025-09-07T07:34:12.3194827Z [162025] Skipping because PR was updated recently 2025-09-07T07:34:12.3195460Z ##[endgroup] 2025-09-07T07:34:12.3195993Z ##[group]Processing PR #162027 2025-09-07T07:34:12.3196499Z [162027] URL: https://github.com/pytorch/pytorch/pull/162027 2025-09-07T07:34:12.3197028Z [162027] Checking whether to label PR as stale. 2025-09-07T07:34:12.3197541Z [162027] Skipping because PR was updated recently 2025-09-07T07:34:12.3198173Z ##[endgroup] 2025-09-07T07:34:12.3198697Z ##[group]Processing PR #162029 2025-09-07T07:34:12.3199191Z [162029] URL: https://github.com/pytorch/pytorch/pull/162029 2025-09-07T07:34:12.3199735Z [162029] Checking whether to label PR as stale. 2025-09-07T07:34:12.3200244Z [162029] Skipping because PR was updated recently 2025-09-07T07:34:12.3200879Z ##[endgroup] 2025-09-07T07:34:12.3201484Z ##[group]Processing PR #162030 2025-09-07T07:34:12.3201996Z [162030] URL: https://github.com/pytorch/pytorch/pull/162030 2025-09-07T07:34:12.3202537Z [162030] Checking whether to label PR as stale. 2025-09-07T07:34:12.3203062Z [162030] Skipping because PR was updated recently 2025-09-07T07:34:12.3203688Z ##[endgroup] 2025-09-07T07:34:12.3204216Z ##[group]Processing PR #162031 2025-09-07T07:34:12.3204712Z [162031] URL: https://github.com/pytorch/pytorch/pull/162031 2025-09-07T07:34:12.3205252Z [162031] Checking whether to label PR as stale. 2025-09-07T07:34:12.3205775Z [162031] Skipping because PR was updated recently 2025-09-07T07:34:12.3206391Z ##[endgroup] 2025-09-07T07:34:12.3206921Z ##[group]Processing PR #162033 2025-09-07T07:34:12.3207432Z [162033] URL: https://github.com/pytorch/pytorch/pull/162033 2025-09-07T07:34:12.3207960Z [162033] Checking whether to label PR as stale. 2025-09-07T07:34:12.3208479Z [162033] Skipping because PR was updated recently 2025-09-07T07:34:12.3209117Z ##[endgroup] 2025-09-07T07:34:12.3209649Z ##[group]Processing PR #162038 2025-09-07T07:34:12.3210146Z [162038] URL: https://github.com/pytorch/pytorch/pull/162038 2025-09-07T07:34:12.3210698Z [162038] Checking whether to label PR as stale. 2025-09-07T07:34:12.3211222Z [162038] Skipping because PR was updated recently 2025-09-07T07:34:12.3211851Z ##[endgroup] 2025-09-07T07:34:12.3212366Z ##[group]Processing PR #162040 2025-09-07T07:34:12.3212872Z [162040] URL: https://github.com/pytorch/pytorch/pull/162040 2025-09-07T07:34:12.3213412Z [162040] Checking whether to label PR as stale. 2025-09-07T07:34:12.3213926Z [162040] Skipping because PR was updated recently 2025-09-07T07:34:12.3214563Z ##[endgroup] 2025-09-07T07:34:12.3215116Z ##[group]Processing PR #162041 2025-09-07T07:34:12.3215633Z [162041] URL: https://github.com/pytorch/pytorch/pull/162041 2025-09-07T07:34:12.3216169Z [162041] Checking whether to label PR as stale. 2025-09-07T07:34:12.3216684Z [162041] Skipping because PR was updated recently 2025-09-07T07:34:12.3217317Z ##[endgroup] 2025-09-07T07:34:12.3217833Z ##[group]Processing PR #162042 2025-09-07T07:34:12.3218335Z [162042] URL: https://github.com/pytorch/pytorch/pull/162042 2025-09-07T07:34:12.3218879Z [162042] Checking whether to label PR as stale. 2025-09-07T07:34:12.3219381Z [162042] Skipping because PR was updated recently 2025-09-07T07:34:12.3220012Z ##[endgroup] 2025-09-07T07:34:12.3220533Z ##[group]Processing PR #162045 2025-09-07T07:34:12.3221041Z [162045] URL: https://github.com/pytorch/pytorch/pull/162045 2025-09-07T07:34:12.3221574Z [162045] Checking whether to label PR as stale. 2025-09-07T07:34:12.3222204Z [162045] Skipping because PR was updated recently 2025-09-07T07:34:12.3222839Z ##[endgroup] 2025-09-07T07:34:12.3223368Z ##[group]Processing PR #162046 2025-09-07T07:34:12.3223862Z [162046] URL: https://github.com/pytorch/pytorch/pull/162046 2025-09-07T07:34:12.3224405Z [162046] Checking whether to label PR as stale. 2025-09-07T07:34:12.3224911Z [162046] Skipping because PR was updated recently 2025-09-07T07:34:12.3225543Z ##[endgroup] 2025-09-07T07:34:12.3226074Z ##[group]Processing PR #162047 2025-09-07T07:34:12.3226583Z [162047] URL: https://github.com/pytorch/pytorch/pull/162047 2025-09-07T07:34:12.3227209Z [162047] Checking whether to label PR as stale. 2025-09-07T07:34:12.3227734Z [162047] Skipping because PR was updated recently 2025-09-07T07:34:12.3228362Z ##[endgroup] 2025-09-07T07:34:12.3228893Z ##[group]Processing PR #162050 2025-09-07T07:34:12.3229389Z [162050] URL: https://github.com/pytorch/pytorch/pull/162050 2025-09-07T07:34:12.3229932Z [162050] Checking whether to label PR as stale. 2025-09-07T07:34:12.3230440Z [162050] Skipping because PR was updated recently 2025-09-07T07:34:12.3231076Z ##[endgroup] 2025-09-07T07:34:12.3231608Z ##[group]Processing PR #162052 2025-09-07T07:34:12.3232119Z [162052] URL: https://github.com/pytorch/pytorch/pull/162052 2025-09-07T07:34:12.3232645Z [162052] Checking whether to label PR as stale. 2025-09-07T07:34:12.3233265Z [162052] Skipping because PR was updated recently 2025-09-07T07:34:12.3234064Z ##[endgroup] 2025-09-07T07:34:12.3234631Z ##[group]Processing PR #162053 2025-09-07T07:34:12.3235152Z [162053] URL: https://github.com/pytorch/pytorch/pull/162053 2025-09-07T07:34:12.3235703Z [162053] Checking whether to label PR as stale. 2025-09-07T07:34:12.3236253Z [162053] Skipping because PR was updated recently 2025-09-07T07:34:12.3236906Z ##[endgroup] 2025-09-07T07:34:12.3237452Z ##[group]Processing PR #162056 2025-09-07T07:34:12.3237978Z [162056] URL: https://github.com/pytorch/pytorch/pull/162056 2025-09-07T07:34:12.3238532Z [162056] Checking whether to label PR as stale. 2025-09-07T07:34:12.3239058Z [162056] Skipping because PR was updated recently 2025-09-07T07:34:12.3239730Z ##[endgroup] 2025-09-07T07:34:12.3240283Z ##[group]Processing PR #162063 2025-09-07T07:34:12.3240795Z [162063] URL: https://github.com/pytorch/pytorch/pull/162063 2025-09-07T07:34:12.3241344Z [162063] Checking whether to label PR as stale. 2025-09-07T07:34:12.3241892Z [162063] Skipping because PR was updated recently 2025-09-07T07:34:12.3242554Z ##[endgroup] 2025-09-07T07:34:12.3243088Z ##[group]Processing PR #162066 2025-09-07T07:34:12.3243612Z [162066] URL: https://github.com/pytorch/pytorch/pull/162066 2025-09-07T07:34:12.3244160Z [162066] Checking whether to label PR as stale. 2025-09-07T07:34:12.3244688Z [162066] Skipping because PR was updated recently 2025-09-07T07:34:12.3245358Z ##[endgroup] 2025-09-07T07:34:12.3245902Z ##[group]Processing PR #162068 2025-09-07T07:34:12.3246428Z [162068] URL: https://github.com/pytorch/pytorch/pull/162068 2025-09-07T07:34:12.3246974Z [162068] Checking whether to label PR as stale. 2025-09-07T07:34:12.3247516Z [162068] Skipping because PR was updated recently 2025-09-07T07:34:12.3248185Z ##[endgroup] 2025-09-07T07:34:12.3248725Z ##[group]Processing PR #162072 2025-09-07T07:34:12.3249253Z [162072] URL: https://github.com/pytorch/pytorch/pull/162072 2025-09-07T07:34:12.3249808Z [162072] Checking whether to label PR as stale. 2025-09-07T07:34:12.3250342Z [162072] Skipping because PR was updated recently 2025-09-07T07:34:12.3251008Z ##[endgroup] 2025-09-07T07:34:12.3251743Z ##[group]Processing PR #162078 2025-09-07T07:34:12.3252315Z [162078] URL: https://github.com/pytorch/pytorch/pull/162078 2025-09-07T07:34:12.3252850Z [162078] Checking whether to label PR as stale. 2025-09-07T07:34:12.3253393Z [162078] Skipping because PR was updated recently 2025-09-07T07:34:12.3254050Z ##[endgroup] 2025-09-07T07:34:12.3254588Z ##[group]Processing PR #162079 2025-09-07T07:34:12.3255087Z [162079] URL: https://github.com/pytorch/pytorch/pull/162079 2025-09-07T07:34:12.3255795Z [162079] Checking whether to label PR as stale. 2025-09-07T07:34:12.3256313Z [162079] Skipping because PR was updated recently 2025-09-07T07:34:12.3256952Z ##[endgroup] 2025-09-07T07:34:12.3257485Z ##[group]Processing PR #162080 2025-09-07T07:34:12.3257992Z [162080] URL: https://github.com/pytorch/pytorch/pull/162080 2025-09-07T07:34:12.3258534Z [162080] Checking whether to label PR as stale. 2025-09-07T07:34:12.3259053Z [162080] Skipping because PR was updated recently 2025-09-07T07:34:12.3259692Z ##[endgroup] 2025-09-07T07:34:12.3260221Z ##[group]Processing PR #162081 2025-09-07T07:34:12.3260714Z [162081] URL: https://github.com/pytorch/pytorch/pull/162081 2025-09-07T07:34:12.3261258Z [162081] Checking whether to label PR as stale. 2025-09-07T07:34:12.3261780Z [162081] Skipping because PR was updated recently 2025-09-07T07:34:12.3262405Z ##[endgroup] 2025-09-07T07:34:12.3262932Z ##[group]Processing PR #162083 2025-09-07T07:34:12.3263443Z [162083] URL: https://github.com/pytorch/pytorch/pull/162083 2025-09-07T07:34:12.3263978Z [162083] Checking whether to label PR as stale. 2025-09-07T07:34:12.3264500Z [162083] Skipping because PR was updated recently 2025-09-07T07:34:12.3265051Z ##[endgroup] 2025-09-07T07:34:13.1162231Z ##[group]Processing PR #162088 2025-09-07T07:34:13.1162933Z [162088] URL: https://github.com/pytorch/pytorch/pull/162088 2025-09-07T07:34:13.1164031Z [162088] Checking whether to label PR as stale. 2025-09-07T07:34:13.1164678Z [162088] Skipping because PR was updated recently 2025-09-07T07:34:13.1165551Z ##[endgroup] 2025-09-07T07:34:13.1166213Z ##[group]Processing PR #162089 2025-09-07T07:34:13.1166836Z [162089] URL: https://github.com/pytorch/pytorch/pull/162089 2025-09-07T07:34:13.1167512Z [162089] Checking whether to label PR as stale. 2025-09-07T07:34:13.1168148Z [162089] Skipping because PR was updated recently 2025-09-07T07:34:13.1168978Z ##[endgroup] 2025-09-07T07:34:13.1169546Z ##[group]Processing PR #162091 2025-09-07T07:34:13.1170169Z [162091] URL: https://github.com/pytorch/pytorch/pull/162091 2025-09-07T07:34:13.1170931Z [162091] Checking whether to label PR as stale. 2025-09-07T07:34:13.1171583Z [162091] Skipping because PR was updated recently 2025-09-07T07:34:13.1172423Z ##[endgroup] 2025-09-07T07:34:13.1173226Z ##[group]Processing PR #162094 2025-09-07T07:34:13.1173871Z [162094] URL: https://github.com/pytorch/pytorch/pull/162094 2025-09-07T07:34:13.1174614Z [162094] Checking whether to label PR as stale. 2025-09-07T07:34:13.1175272Z [162094] Skipping because PR was updated recently 2025-09-07T07:34:13.1176126Z ##[endgroup] 2025-09-07T07:34:13.1176774Z ##[group]Processing PR #162095 2025-09-07T07:34:13.1177405Z [162095] URL: https://github.com/pytorch/pytorch/pull/162095 2025-09-07T07:34:13.1178140Z [162095] Checking whether to label PR as stale. 2025-09-07T07:34:13.1178780Z [162095] Skipping because PR was updated recently 2025-09-07T07:34:13.1179626Z ##[endgroup] 2025-09-07T07:34:13.1180291Z ##[group]Processing PR #162096 2025-09-07T07:34:13.1180921Z [162096] URL: https://github.com/pytorch/pytorch/pull/162096 2025-09-07T07:34:13.1181655Z [162096] Checking whether to label PR as stale. 2025-09-07T07:34:13.1182305Z [162096] Skipping because PR was updated recently 2025-09-07T07:34:13.1183152Z ##[endgroup] 2025-09-07T07:34:13.1183818Z ##[group]Processing PR #162098 2025-09-07T07:34:13.1184457Z [162098] URL: https://github.com/pytorch/pytorch/pull/162098 2025-09-07T07:34:13.1185197Z [162098] Checking whether to label PR as stale. 2025-09-07T07:34:13.1185851Z [162098] Skipping because PR was updated recently 2025-09-07T07:34:13.1186784Z ##[endgroup] 2025-09-07T07:34:13.1187446Z ##[group]Processing PR #162099 2025-09-07T07:34:13.1188050Z [162099] URL: https://github.com/pytorch/pytorch/pull/162099 2025-09-07T07:34:13.1188780Z [162099] Checking whether to label PR as stale. 2025-09-07T07:34:13.1189412Z [162099] Skipping because PR was updated recently 2025-09-07T07:34:13.1190241Z ##[endgroup] 2025-09-07T07:34:13.1190913Z ##[group]Processing PR #162101 2025-09-07T07:34:13.1191777Z [162101] URL: https://github.com/pytorch/pytorch/pull/162101 2025-09-07T07:34:13.1192493Z [162101] Checking whether to label PR as stale. 2025-09-07T07:34:13.1193111Z [162101] Skipping because PR was updated recently 2025-09-07T07:34:13.1204557Z ##[endgroup] 2025-09-07T07:34:13.1205300Z ##[group]Processing PR #162102 2025-09-07T07:34:13.1205956Z [162102] URL: https://github.com/pytorch/pytorch/pull/162102 2025-09-07T07:34:13.1206679Z [162102] Checking whether to label PR as stale. 2025-09-07T07:34:13.1207331Z [162102] Skipping because PR was updated recently 2025-09-07T07:34:13.1208145Z ##[endgroup] 2025-09-07T07:34:13.1208812Z ##[group]Processing PR #162104 2025-09-07T07:34:13.1209449Z [162104] URL: https://github.com/pytorch/pytorch/pull/162104 2025-09-07T07:34:13.1210171Z [162104] Checking whether to label PR as stale. 2025-09-07T07:34:13.1210823Z [162104] Skipping because PR was updated recently 2025-09-07T07:34:13.1211659Z ##[endgroup] 2025-09-07T07:34:13.1212312Z ##[group]Processing PR #162107 2025-09-07T07:34:13.1212971Z [162107] URL: https://github.com/pytorch/pytorch/pull/162107 2025-09-07T07:34:13.1213704Z [162107] Checking whether to label PR as stale. 2025-09-07T07:34:13.1214373Z [162107] Skipping because PR was updated recently 2025-09-07T07:34:13.1215241Z ##[endgroup] 2025-09-07T07:34:13.1215914Z ##[group]Processing PR #162108 2025-09-07T07:34:13.1216731Z [162108] URL: https://github.com/pytorch/pytorch/pull/162108 2025-09-07T07:34:13.1217471Z [162108] Checking whether to label PR as stale. 2025-09-07T07:34:13.1218108Z [162108] Skipping because PR was updated recently 2025-09-07T07:34:13.1218972Z ##[endgroup] 2025-09-07T07:34:13.1219617Z ##[group]Processing PR #162109 2025-09-07T07:34:13.1220199Z [162109] URL: https://github.com/pytorch/pytorch/pull/162109 2025-09-07T07:34:13.1220924Z [162109] Checking whether to label PR as stale. 2025-09-07T07:34:13.1221520Z [162109] Skipping because PR was updated recently 2025-09-07T07:34:13.1222015Z ##[endgroup] 2025-09-07T07:34:13.1222401Z ##[group]Processing PR #162112 2025-09-07T07:34:13.1222752Z [162112] URL: https://github.com/pytorch/pytorch/pull/162112 2025-09-07T07:34:13.1223145Z [162112] Checking whether to label PR as stale. 2025-09-07T07:34:13.1223505Z [162112] Skipping because PR was updated recently 2025-09-07T07:34:13.1223974Z ##[endgroup] 2025-09-07T07:34:13.1224334Z ##[group]Processing PR #162119 2025-09-07T07:34:13.1224688Z [162119] URL: https://github.com/pytorch/pytorch/pull/162119 2025-09-07T07:34:13.1225094Z [162119] Checking whether to label PR as stale. 2025-09-07T07:34:13.1225441Z [162119] Skipping because PR was updated recently 2025-09-07T07:34:13.1225905Z ##[endgroup] 2025-09-07T07:34:13.1226274Z ##[group]Processing PR #162126 2025-09-07T07:34:13.1226704Z [162126] URL: https://github.com/pytorch/pytorch/pull/162126 2025-09-07T07:34:13.1227110Z [162126] Checking whether to label PR as stale. 2025-09-07T07:34:13.1227454Z [162126] Skipping because PR was updated recently 2025-09-07T07:34:13.1227919Z ##[endgroup] 2025-09-07T07:34:13.1228301Z ##[group]Processing PR #162130 2025-09-07T07:34:13.1228649Z [162130] URL: https://github.com/pytorch/pytorch/pull/162130 2025-09-07T07:34:13.1229036Z [162130] Checking whether to label PR as stale. 2025-09-07T07:34:13.1229389Z [162130] Skipping because PR was updated recently 2025-09-07T07:34:13.1229853Z ##[endgroup] 2025-09-07T07:34:13.1230209Z ##[group]Processing PR #162134 2025-09-07T07:34:13.1230560Z [162134] URL: https://github.com/pytorch/pytorch/pull/162134 2025-09-07T07:34:13.1230947Z [162134] Checking whether to label PR as stale. 2025-09-07T07:34:13.1231304Z [162134] Skipping because PR was updated recently 2025-09-07T07:34:13.1231766Z ##[endgroup] 2025-09-07T07:34:13.1232139Z ##[group]Processing PR #162136 2025-09-07T07:34:13.1232471Z [162136] URL: https://github.com/pytorch/pytorch/pull/162136 2025-09-07T07:34:13.1232872Z [162136] Checking whether to label PR as stale. 2025-09-07T07:34:13.1233214Z [162136] Skipping because PR was updated recently 2025-09-07T07:34:13.1233677Z ##[endgroup] 2025-09-07T07:34:13.1234428Z ##[group]Processing PR #162142 2025-09-07T07:34:13.1234780Z [162142] URL: https://github.com/pytorch/pytorch/pull/162142 2025-09-07T07:34:13.1235167Z [162142] Checking whether to label PR as stale. 2025-09-07T07:34:13.1235524Z [162142] Skipping because PR was updated recently 2025-09-07T07:34:13.1235976Z ##[endgroup] 2025-09-07T07:34:13.1236350Z ##[group]Processing PR #162144 2025-09-07T07:34:13.1236692Z [162144] URL: https://github.com/pytorch/pytorch/pull/162144 2025-09-07T07:34:13.1237074Z [162144] Checking whether to label PR as stale. 2025-09-07T07:34:13.1237430Z [162144] Skipping because PR was updated recently 2025-09-07T07:34:13.1237887Z ##[endgroup] 2025-09-07T07:34:13.1238253Z ##[group]Processing PR #162149 2025-09-07T07:34:13.1238585Z [162149] URL: https://github.com/pytorch/pytorch/pull/162149 2025-09-07T07:34:13.1238980Z [162149] Checking whether to label PR as stale. 2025-09-07T07:34:13.1239319Z [162149] Skipping because PR was updated recently 2025-09-07T07:34:13.1239785Z ##[endgroup] 2025-09-07T07:34:13.1240151Z ##[group]Processing PR #162150 2025-09-07T07:34:13.1240482Z [162150] URL: https://github.com/pytorch/pytorch/pull/162150 2025-09-07T07:34:13.1240879Z [162150] Checking whether to label PR as stale. 2025-09-07T07:34:13.1241230Z [162150] Skipping because PR was updated recently 2025-09-07T07:34:13.1241682Z ##[endgroup] 2025-09-07T07:34:13.1242177Z ##[group]Processing PR #162153 2025-09-07T07:34:13.1242530Z [162153] URL: https://github.com/pytorch/pytorch/pull/162153 2025-09-07T07:34:13.1242916Z [162153] Checking whether to label PR as stale. 2025-09-07T07:34:13.1243266Z [162153] Skipping because PR was updated recently 2025-09-07T07:34:13.1243727Z ##[endgroup] 2025-09-07T07:34:13.1244094Z ##[group]Processing PR #162155 2025-09-07T07:34:13.1244426Z [162155] URL: https://github.com/pytorch/pytorch/pull/162155 2025-09-07T07:34:13.1244822Z [162155] Checking whether to label PR as stale. 2025-09-07T07:34:13.1245160Z [162155] Skipping because PR was updated recently 2025-09-07T07:34:13.1245621Z ##[endgroup] 2025-09-07T07:34:13.1245984Z ##[group]Processing PR #162159 2025-09-07T07:34:13.1246317Z [162159] URL: https://github.com/pytorch/pytorch/pull/162159 2025-09-07T07:34:13.1246713Z [162159] Checking whether to label PR as stale. 2025-09-07T07:34:13.1247067Z [162159] Skipping because PR was updated recently 2025-09-07T07:34:13.1247510Z ##[endgroup] 2025-09-07T07:34:13.1247869Z ##[group]Processing PR #162165 2025-09-07T07:34:13.1248210Z [162165] URL: https://github.com/pytorch/pytorch/pull/162165 2025-09-07T07:34:13.1248591Z [162165] Checking whether to label PR as stale. 2025-09-07T07:34:13.1248943Z [162165] Skipping because PR was updated recently 2025-09-07T07:34:13.1249396Z ##[endgroup] 2025-09-07T07:34:13.1249754Z ##[group]Processing PR #162166 2025-09-07T07:34:13.1250083Z [162166] URL: https://github.com/pytorch/pytorch/pull/162166 2025-09-07T07:34:13.1250476Z [162166] Checking whether to label PR as stale. 2025-09-07T07:34:13.1250817Z [162166] Skipping because PR was updated recently 2025-09-07T07:34:13.1251280Z ##[endgroup] 2025-09-07T07:34:13.1251642Z ##[group]Processing PR #162168 2025-09-07T07:34:13.1251974Z [162168] URL: https://github.com/pytorch/pytorch/pull/162168 2025-09-07T07:34:13.1252370Z [162168] Checking whether to label PR as stale. 2025-09-07T07:34:13.1252710Z [162168] Skipping because PR was updated recently 2025-09-07T07:34:13.1253169Z ##[endgroup] 2025-09-07T07:34:13.1253530Z ##[group]Processing PR #162169 2025-09-07T07:34:13.1253872Z [162169] URL: https://github.com/pytorch/pytorch/pull/162169 2025-09-07T07:34:13.1254254Z [162169] Checking whether to label PR as stale. 2025-09-07T07:34:13.1254605Z [162169] Skipping because PR was updated recently 2025-09-07T07:34:13.1255065Z ##[endgroup] 2025-09-07T07:34:13.1255416Z ##[group]Processing PR #162170 2025-09-07T07:34:13.1255761Z [162170] URL: https://github.com/pytorch/pytorch/pull/162170 2025-09-07T07:34:13.1256156Z [162170] Checking whether to label PR as stale. 2025-09-07T07:34:13.1256497Z [162170] Skipping because PR was updated recently 2025-09-07T07:34:13.1257057Z ##[endgroup] 2025-09-07T07:34:13.1257426Z ##[group]Processing PR #162171 2025-09-07T07:34:13.1257761Z [162171] URL: https://github.com/pytorch/pytorch/pull/162171 2025-09-07T07:34:13.1258162Z [162171] Checking whether to label PR as stale. 2025-09-07T07:34:13.1258504Z [162171] Skipping because PR was updated recently 2025-09-07T07:34:13.1258961Z ##[endgroup] 2025-09-07T07:34:13.1259322Z ##[group]Processing PR #162176 2025-09-07T07:34:13.1259662Z [162176] URL: https://github.com/pytorch/pytorch/pull/162176 2025-09-07T07:34:13.1260044Z [162176] Checking whether to label PR as stale. 2025-09-07T07:34:13.1260394Z [162176] Skipping because PR was updated recently 2025-09-07T07:34:13.1260853Z ##[endgroup] 2025-09-07T07:34:13.1261203Z ##[group]Processing PR #162177 2025-09-07T07:34:13.1261546Z [162177] URL: https://github.com/pytorch/pytorch/pull/162177 2025-09-07T07:34:13.1261929Z [162177] Checking whether to label PR as stale. 2025-09-07T07:34:13.1262287Z [162177] Skipping because PR was updated recently 2025-09-07T07:34:13.1262743Z ##[endgroup] 2025-09-07T07:34:13.1263104Z ##[group]Processing PR #162183 2025-09-07T07:34:13.1263432Z [162183] URL: https://github.com/pytorch/pytorch/pull/162183 2025-09-07T07:34:13.1263829Z [162183] Checking whether to label PR as stale. 2025-09-07T07:34:13.1264167Z [162183] Skipping because PR was updated recently 2025-09-07T07:34:13.1264682Z ##[endgroup] 2025-09-07T07:34:13.1265049Z ##[group]Processing PR #162184 2025-09-07T07:34:13.1265397Z [162184] URL: https://github.com/pytorch/pytorch/pull/162184 2025-09-07T07:34:13.1265779Z [162184] Checking whether to label PR as stale. 2025-09-07T07:34:13.1266132Z [162184] Skipping because PR was updated recently 2025-09-07T07:34:13.1266581Z ##[endgroup] 2025-09-07T07:34:13.1267059Z ##[group]Processing PR #162186 2025-09-07T07:34:13.1267407Z [162186] URL: https://github.com/pytorch/pytorch/pull/162186 2025-09-07T07:34:13.1267790Z [162186] Checking whether to label PR as stale. 2025-09-07T07:34:13.1268150Z [162186] Skipping because PR was updated recently 2025-09-07T07:34:13.1268609Z ##[endgroup] 2025-09-07T07:34:13.1268972Z ##[group]Processing PR #162189 2025-09-07T07:34:13.1269305Z [162189] URL: https://github.com/pytorch/pytorch/pull/162189 2025-09-07T07:34:13.1269699Z [162189] Checking whether to label PR as stale. 2025-09-07T07:34:13.1270044Z [162189] Skipping because PR was updated recently 2025-09-07T07:34:13.1270676Z ##[endgroup] 2025-09-07T07:34:13.1271046Z ##[group]Processing PR #162190 2025-09-07T07:34:13.1271383Z [162190] URL: https://github.com/pytorch/pytorch/pull/162190 2025-09-07T07:34:13.1271785Z [162190] Checking whether to label PR as stale. 2025-09-07T07:34:13.1272145Z [162190] Skipping because PR was updated recently 2025-09-07T07:34:13.1272592Z ##[endgroup] 2025-09-07T07:34:13.1272956Z ##[group]Processing PR #162191 2025-09-07T07:34:13.1273299Z [162191] URL: https://github.com/pytorch/pytorch/pull/162191 2025-09-07T07:34:13.1273682Z [162191] Checking whether to label PR as stale. 2025-09-07T07:34:13.1274038Z [162191] Skipping because PR was updated recently 2025-09-07T07:34:13.1274495Z ##[endgroup] 2025-09-07T07:34:13.1274859Z ##[group]Processing PR #162194 2025-09-07T07:34:13.1275187Z [162194] URL: https://github.com/pytorch/pytorch/pull/162194 2025-09-07T07:34:13.1275578Z [162194] Checking whether to label PR as stale. 2025-09-07T07:34:13.1275921Z [162194] Skipping because PR was updated recently 2025-09-07T07:34:13.1276590Z ##[endgroup] 2025-09-07T07:34:13.1277112Z ##[group]Processing PR #162195 2025-09-07T07:34:13.1277656Z [162195] URL: https://github.com/pytorch/pytorch/pull/162195 2025-09-07T07:34:13.1278182Z [162195] Checking whether to label PR as stale. 2025-09-07T07:34:13.1278685Z [162195] Skipping because PR was updated recently 2025-09-07T07:34:13.1279450Z ##[endgroup] 2025-09-07T07:34:13.1280079Z ##[group]Processing PR #162200 2025-09-07T07:34:13.1280681Z [162200] URL: https://github.com/pytorch/pytorch/pull/162200 2025-09-07T07:34:13.1281624Z [162200] Checking whether to label PR as stale. 2025-09-07T07:34:13.1282138Z [162200] Skipping because PR was updated recently 2025-09-07T07:34:13.1282992Z ##[endgroup] 2025-09-07T07:34:13.1283672Z ##[group]Processing PR #162203 2025-09-07T07:34:13.1284298Z [162203] URL: https://github.com/pytorch/pytorch/pull/162203 2025-09-07T07:34:13.1284845Z [162203] Checking whether to label PR as stale. 2025-09-07T07:34:13.1285198Z [162203] Skipping because PR was updated recently 2025-09-07T07:34:13.1285665Z ##[endgroup] 2025-09-07T07:34:13.1286031Z ##[group]Processing PR #162205 2025-09-07T07:34:13.1286381Z [162205] URL: https://github.com/pytorch/pytorch/pull/162205 2025-09-07T07:34:13.1286766Z [162205] Checking whether to label PR as stale. 2025-09-07T07:34:13.1287120Z [162205] Skipping because PR was updated recently 2025-09-07T07:34:13.1287570Z ##[endgroup] 2025-09-07T07:34:13.1287934Z ##[group]Processing PR #162206 2025-09-07T07:34:13.1288275Z [162206] URL: https://github.com/pytorch/pytorch/pull/162206 2025-09-07T07:34:13.1288754Z [162206] Checking whether to label PR as stale. 2025-09-07T07:34:13.1289118Z [162206] Skipping because PR was updated recently 2025-09-07T07:34:13.1289672Z ##[endgroup] 2025-09-07T07:34:13.1290043Z ##[group]Processing PR #162208 2025-09-07T07:34:13.1290377Z [162208] URL: https://github.com/pytorch/pytorch/pull/162208 2025-09-07T07:34:13.1290967Z [162208] Checking whether to label PR as stale. 2025-09-07T07:34:13.1291314Z [162208] Skipping because PR was updated recently 2025-09-07T07:34:13.1291782Z ##[endgroup] 2025-09-07T07:34:13.1292153Z ##[group]Processing PR #162211 2025-09-07T07:34:13.1292485Z [162211] URL: https://github.com/pytorch/pytorch/pull/162211 2025-09-07T07:34:13.1292881Z [162211] Checking whether to label PR as stale. 2025-09-07T07:34:13.1293232Z [162211] Skipping because PR was updated recently 2025-09-07T07:34:13.1293675Z ##[endgroup] 2025-09-07T07:34:13.1294035Z ##[group]Processing PR #162212 2025-09-07T07:34:13.1294376Z [162212] URL: https://github.com/pytorch/pytorch/pull/162212 2025-09-07T07:34:13.1294763Z [162212] Checking whether to label PR as stale. 2025-09-07T07:34:13.1295114Z [162212] Skipping because PR was updated recently 2025-09-07T07:34:13.1295575Z ##[endgroup] 2025-09-07T07:34:13.1295945Z ##[group]Processing PR #162213 2025-09-07T07:34:13.1296278Z [162213] URL: https://github.com/pytorch/pytorch/pull/162213 2025-09-07T07:34:13.1296679Z [162213] Checking whether to label PR as stale. 2025-09-07T07:34:13.1297022Z [162213] Skipping because PR was updated recently 2025-09-07T07:34:13.1297483Z ##[endgroup] 2025-09-07T07:34:13.1297847Z ##[group]Processing PR #162216 2025-09-07T07:34:13.1298178Z [162216] URL: https://github.com/pytorch/pytorch/pull/162216 2025-09-07T07:34:13.1298620Z [162216] Checking whether to label PR as stale. 2025-09-07T07:34:13.1298975Z [162216] Skipping because PR was updated recently 2025-09-07T07:34:13.1299422Z ##[endgroup] 2025-09-07T07:34:13.1299784Z ##[group]Processing PR #162218 2025-09-07T07:34:13.1300125Z [162218] URL: https://github.com/pytorch/pytorch/pull/162218 2025-09-07T07:34:13.1300517Z [162218] Checking whether to label PR as stale. 2025-09-07T07:34:13.1300872Z [162218] Skipping because PR was updated recently 2025-09-07T07:34:13.1301330Z ##[endgroup] 2025-09-07T07:34:13.1301683Z ##[group]Processing PR #162219 2025-09-07T07:34:13.1302026Z [162219] URL: https://github.com/pytorch/pytorch/pull/162219 2025-09-07T07:34:13.1302429Z [162219] Checking whether to label PR as stale. 2025-09-07T07:34:13.1302770Z [162219] Skipping because PR was updated recently 2025-09-07T07:34:13.1303225Z ##[endgroup] 2025-09-07T07:34:13.1303586Z ##[group]Processing PR #162220 2025-09-07T07:34:13.1303916Z [162220] URL: https://github.com/pytorch/pytorch/pull/162220 2025-09-07T07:34:13.1304307Z [162220] Checking whether to label PR as stale. 2025-09-07T07:34:13.1304646Z [162220] Skipping because PR was updated recently 2025-09-07T07:34:13.1305100Z ##[endgroup] 2025-09-07T07:34:13.1305462Z ##[group]Processing PR #162222 2025-09-07T07:34:13.1305802Z [162222] URL: https://github.com/pytorch/pytorch/pull/162222 2025-09-07T07:34:13.1306270Z [162222] Checking whether to label PR as stale. 2025-09-07T07:34:13.1306726Z [162222] Skipping because PR was updated recently 2025-09-07T07:34:13.1307190Z ##[endgroup] 2025-09-07T07:34:13.1307557Z ##[group]Processing PR #162227 2025-09-07T07:34:13.1307886Z [162227] URL: https://github.com/pytorch/pytorch/pull/162227 2025-09-07T07:34:13.1308291Z [162227] Checking whether to label PR as stale. 2025-09-07T07:34:13.1308631Z [162227] Skipping because PR was updated recently 2025-09-07T07:34:13.1309092Z ##[endgroup] 2025-09-07T07:34:13.1309464Z ##[group]Processing PR #162236 2025-09-07T07:34:13.1309795Z [162236] URL: https://github.com/pytorch/pytorch/pull/162236 2025-09-07T07:34:13.1310192Z [162236] Checking whether to label PR as stale. 2025-09-07T07:34:13.1310546Z [162236] Skipping because PR was updated recently 2025-09-07T07:34:13.1310993Z ##[endgroup] 2025-09-07T07:34:13.1311358Z ##[group]Processing PR #162238 2025-09-07T07:34:13.1311709Z [162238] URL: https://github.com/pytorch/pytorch/pull/162238 2025-09-07T07:34:13.1312094Z [162238] Checking whether to label PR as stale. 2025-09-07T07:34:13.1312448Z [162238] Skipping because PR was updated recently 2025-09-07T07:34:13.1312907Z ##[endgroup] 2025-09-07T07:34:13.1313274Z ##[group]Processing PR #162239 2025-09-07T07:34:13.1313678Z [162239] URL: https://github.com/pytorch/pytorch/pull/162239 2025-09-07T07:34:13.1314081Z [162239] Checking whether to label PR as stale. 2025-09-07T07:34:13.1314423Z [162239] Skipping because PR was updated recently 2025-09-07T07:34:13.1314886Z ##[endgroup] 2025-09-07T07:34:13.1315255Z ##[group]Processing PR #162240 2025-09-07T07:34:13.1315588Z [162240] URL: https://github.com/pytorch/pytorch/pull/162240 2025-09-07T07:34:13.1315987Z [162240] Checking whether to label PR as stale. 2025-09-07T07:34:13.1316339Z [162240] Skipping because PR was updated recently 2025-09-07T07:34:13.1316780Z ##[endgroup] 2025-09-07T07:34:13.1317138Z ##[group]Processing PR #162243 2025-09-07T07:34:13.1317481Z [162243] URL: https://github.com/pytorch/pytorch/pull/162243 2025-09-07T07:34:13.1317862Z [162243] Checking whether to label PR as stale. 2025-09-07T07:34:13.1318214Z [162243] Skipping because PR was updated recently 2025-09-07T07:34:13.1318671Z ##[endgroup] 2025-09-07T07:34:13.1319020Z ##[group]Processing PR #162244 2025-09-07T07:34:13.1319367Z [162244] URL: https://github.com/pytorch/pytorch/pull/162244 2025-09-07T07:34:13.1319762Z [162244] Checking whether to label PR as stale. 2025-09-07T07:34:13.1320103Z [162244] Skipping because PR was updated recently 2025-09-07T07:34:13.1320554Z ##[endgroup] 2025-09-07T07:34:13.1320916Z ##[group]Processing PR #162245 2025-09-07T07:34:13.1321247Z [162245] URL: https://github.com/pytorch/pytorch/pull/162245 2025-09-07T07:34:13.1321642Z [162245] Checking whether to label PR as stale. 2025-09-07T07:34:13.1321981Z [162245] Skipping because PR was updated recently 2025-09-07T07:34:13.1322435Z ##[endgroup] 2025-09-07T07:34:13.1322795Z ##[group]Processing PR #162252 2025-09-07T07:34:13.1323141Z [162252] URL: https://github.com/pytorch/pytorch/pull/162252 2025-09-07T07:34:13.1323526Z [162252] Checking whether to label PR as stale. 2025-09-07T07:34:13.1323878Z [162252] Skipping because PR was updated recently 2025-09-07T07:34:13.1324343Z ##[endgroup] 2025-09-07T07:34:13.1324695Z ##[group]Processing PR #162253 2025-09-07T07:34:13.1325042Z [162253] URL: https://github.com/pytorch/pytorch/pull/162253 2025-09-07T07:34:13.1325428Z [162253] Checking whether to label PR as stale. 2025-09-07T07:34:13.1325783Z [162253] Skipping because PR was updated recently 2025-09-07T07:34:13.1326240Z ##[endgroup] 2025-09-07T07:34:13.1326598Z ##[group]Processing PR #162254 2025-09-07T07:34:13.1326933Z [162254] URL: https://github.com/pytorch/pytorch/pull/162254 2025-09-07T07:34:13.1327330Z [162254] Checking whether to label PR as stale. 2025-09-07T07:34:13.1327673Z [162254] Skipping because PR was updated recently 2025-09-07T07:34:13.1328131Z ##[endgroup] 2025-09-07T07:34:13.1328577Z ##[group]Processing PR #162260 2025-09-07T07:34:13.1328928Z [162260] URL: https://github.com/pytorch/pytorch/pull/162260 2025-09-07T07:34:13.1329316Z [162260] Checking whether to label PR as stale. 2025-09-07T07:34:13.1329677Z [162260] Skipping because PR was updated recently 2025-09-07T07:34:13.1330129Z ##[endgroup] 2025-09-07T07:34:13.1330502Z ##[group]Processing PR #162262 2025-09-07T07:34:13.1330847Z [162262] URL: https://github.com/pytorch/pytorch/pull/162262 2025-09-07T07:34:13.1331228Z [162262] Checking whether to label PR as stale. 2025-09-07T07:34:13.1331580Z [162262] Skipping because PR was updated recently 2025-09-07T07:34:13.1332033Z ##[endgroup] 2025-09-07T07:34:13.1332393Z ##[group]Processing PR #162267 2025-09-07T07:34:13.1332726Z [162267] URL: https://github.com/pytorch/pytorch/pull/162267 2025-09-07T07:34:13.1333118Z [162267] Checking whether to label PR as stale. 2025-09-07T07:34:13.1333457Z [162267] Skipping because PR was updated recently 2025-09-07T07:34:13.1334118Z ##[endgroup] 2025-09-07T07:34:13.1334493Z ##[group]Processing PR #162269 2025-09-07T07:34:13.1334826Z [162269] URL: https://github.com/pytorch/pytorch/pull/162269 2025-09-07T07:34:13.1335223Z [162269] Checking whether to label PR as stale. 2025-09-07T07:34:13.1335579Z [162269] Skipping because PR was updated recently 2025-09-07T07:34:13.1336024Z ##[endgroup] 2025-09-07T07:34:13.1336383Z ##[group]Processing PR #162272 2025-09-07T07:34:13.1336840Z [162272] URL: https://github.com/pytorch/pytorch/pull/162272 2025-09-07T07:34:13.1337225Z [162272] Checking whether to label PR as stale. 2025-09-07T07:34:13.1337577Z [162272] Skipping because PR was updated recently 2025-09-07T07:34:13.1338035Z ##[endgroup] 2025-09-07T07:34:13.1338397Z ##[group]Processing PR #162273 2025-09-07T07:34:13.1338726Z [162273] URL: https://github.com/pytorch/pytorch/pull/162273 2025-09-07T07:34:13.1339121Z [162273] Checking whether to label PR as stale. 2025-09-07T07:34:13.1339461Z [162273] Skipping because PR was updated recently 2025-09-07T07:34:13.1339923Z ##[endgroup] 2025-09-07T07:34:13.1340285Z ##[group]Processing PR #162275 2025-09-07T07:34:13.1340619Z [162275] URL: https://github.com/pytorch/pytorch/pull/162275 2025-09-07T07:34:13.1341021Z [162275] Checking whether to label PR as stale. 2025-09-07T07:34:13.1341376Z [162275] Skipping because PR was updated recently 2025-09-07T07:34:13.1341825Z ##[endgroup] 2025-09-07T07:34:13.1342193Z ##[group]Processing PR #162278 2025-09-07T07:34:13.1342546Z [162278] URL: https://github.com/pytorch/pytorch/pull/162278 2025-09-07T07:34:13.1342944Z [162278] Checking whether to label PR as stale. 2025-09-07T07:34:13.1343284Z [162278] Skipping because PR was updated recently 2025-09-07T07:34:13.1343745Z ##[endgroup] 2025-09-07T07:34:13.1344110Z ##[group]Processing PR #162281 2025-09-07T07:34:13.1344550Z [162281] URL: https://github.com/pytorch/pytorch/pull/162281 2025-09-07T07:34:13.1344995Z [162281] Checking whether to label PR as stale. 2025-09-07T07:34:13.1345354Z [162281] Skipping because PR was updated recently 2025-09-07T07:34:13.1345811Z ##[endgroup] 2025-09-07T07:34:13.1346178Z ##[group]Processing PR #162284 2025-09-07T07:34:13.1346518Z [162284] URL: https://github.com/pytorch/pytorch/pull/162284 2025-09-07T07:34:13.1346975Z [162284] Checking whether to label PR as stale. 2025-09-07T07:34:13.1347333Z [162284] Skipping because PR was updated recently 2025-09-07T07:34:13.1347796Z ##[endgroup] 2025-09-07T07:34:13.1348166Z ##[group]Processing PR #162286 2025-09-07T07:34:13.1348496Z [162286] URL: https://github.com/pytorch/pytorch/pull/162286 2025-09-07T07:34:13.1348894Z [162286] Checking whether to label PR as stale. 2025-09-07T07:34:13.1349232Z [162286] Skipping because PR was updated recently 2025-09-07T07:34:13.1349686Z ##[endgroup] 2025-09-07T07:34:13.1350048Z ##[group]Processing PR #162288 2025-09-07T07:34:13.1350376Z [162288] URL: https://github.com/pytorch/pytorch/pull/162288 2025-09-07T07:34:13.1350769Z [162288] Checking whether to label PR as stale. 2025-09-07T07:34:13.1351109Z [162288] Skipping because PR was updated recently 2025-09-07T07:34:13.1351680Z ##[endgroup] 2025-09-07T07:34:13.1352044Z ##[group]Processing PR #162291 2025-09-07T07:34:13.1352387Z [162291] URL: https://github.com/pytorch/pytorch/pull/162291 2025-09-07T07:34:13.1352768Z [162291] Checking whether to label PR as stale. 2025-09-07T07:34:13.1353120Z [162291] Skipping because PR was updated recently 2025-09-07T07:34:13.1353574Z ##[endgroup] 2025-09-07T07:34:13.1353925Z ##[group]Processing PR #162292 2025-09-07T07:34:13.1354264Z [162292] URL: https://github.com/pytorch/pytorch/pull/162292 2025-09-07T07:34:13.1354638Z [162292] Checking whether to label PR as stale. 2025-09-07T07:34:13.1354967Z [162292] Skipping because PR was updated recently 2025-09-07T07:34:13.1355398Z ##[endgroup] 2025-09-07T07:34:13.1355740Z ##[group]Processing PR #162293 2025-09-07T07:34:13.1356060Z [162293] URL: https://github.com/pytorch/pytorch/pull/162293 2025-09-07T07:34:13.1356444Z [162293] Checking whether to label PR as stale. 2025-09-07T07:34:13.1356771Z [162293] Skipping because PR was updated recently 2025-09-07T07:34:13.1357212Z ##[endgroup] 2025-09-07T07:34:13.1357560Z ##[group]Processing PR #162294 2025-09-07T07:34:13.1357890Z [162294] URL: https://github.com/pytorch/pytorch/pull/162294 2025-09-07T07:34:13.1358267Z [162294] Checking whether to label PR as stale. 2025-09-07T07:34:13.1358609Z [162294] Skipping because PR was updated recently 2025-09-07T07:34:13.1359104Z ##[endgroup] 2025-09-07T07:34:13.1359445Z ##[group]Processing PR #162295 2025-09-07T07:34:13.1359779Z [162295] URL: https://github.com/pytorch/pytorch/pull/162295 2025-09-07T07:34:13.1360154Z [162295] Checking whether to label PR as stale. 2025-09-07T07:34:13.1360502Z [162295] Skipping because PR was updated recently 2025-09-07T07:34:13.1360945Z ##[endgroup] 2025-09-07T07:34:13.1361292Z ##[group]Processing PR #162296 2025-09-07T07:34:13.1361614Z [162296] URL: https://github.com/pytorch/pytorch/pull/162296 2025-09-07T07:34:13.1361992Z [162296] Checking whether to label PR as stale. 2025-09-07T07:34:13.1362331Z [162296] Skipping because PR was updated recently 2025-09-07T07:34:13.1362770Z ##[endgroup] 2025-09-07T07:34:13.1363118Z ##[group]Processing PR #162298 2025-09-07T07:34:13.1363447Z [162298] URL: https://github.com/pytorch/pytorch/pull/162298 2025-09-07T07:34:13.1363822Z [162298] Checking whether to label PR as stale. 2025-09-07T07:34:13.1364165Z [162298] Skipping because PR was updated recently 2025-09-07T07:34:13.1364601Z ##[endgroup] 2025-09-07T07:34:13.1364953Z ##[group]Processing PR #162305 2025-09-07T07:34:13.1365287Z [162305] URL: https://github.com/pytorch/pytorch/pull/162305 2025-09-07T07:34:13.1365663Z [162305] Checking whether to label PR as stale. 2025-09-07T07:34:13.1366003Z [162305] Skipping because PR was updated recently 2025-09-07T07:34:13.1366448Z ##[endgroup] 2025-09-07T07:34:13.1366794Z ##[group]Processing PR #162307 2025-09-07T07:34:13.1367119Z [162307] URL: https://github.com/pytorch/pytorch/pull/162307 2025-09-07T07:34:13.1367503Z [162307] Checking whether to label PR as stale. 2025-09-07T07:34:13.1367845Z [162307] Skipping because PR was updated recently 2025-09-07T07:34:13.1368288Z ##[endgroup] 2025-09-07T07:34:13.1368629Z ##[group]Processing PR #162308 2025-09-07T07:34:13.1368950Z [162308] URL: https://github.com/pytorch/pytorch/pull/162308 2025-09-07T07:34:13.1369333Z [162308] Checking whether to label PR as stale. 2025-09-07T07:34:13.1369676Z [162308] Skipping because PR was updated recently 2025-09-07T07:34:13.1370109Z ##[endgroup] 2025-09-07T07:34:13.1370456Z ##[group]Processing PR #162309 2025-09-07T07:34:13.1370879Z [162309] URL: https://github.com/pytorch/pytorch/pull/162309 2025-09-07T07:34:13.1371255Z [162309] Checking whether to label PR as stale. 2025-09-07T07:34:13.1371593Z [162309] Skipping because PR was updated recently 2025-09-07T07:34:13.1372040Z ##[endgroup] 2025-09-07T07:34:13.1372404Z ##[group]Processing PR #162310 2025-09-07T07:34:13.1372736Z [162310] URL: https://github.com/pytorch/pytorch/pull/162310 2025-09-07T07:34:13.1373129Z [162310] Checking whether to label PR as stale. 2025-09-07T07:34:13.1373568Z [162310] Skipping because PR was updated recently 2025-09-07T07:34:13.1374034Z ##[endgroup] 2025-09-07T07:34:13.1374407Z ##[group]Processing PR #162311 2025-09-07T07:34:13.1374740Z [162311] URL: https://github.com/pytorch/pytorch/pull/162311 2025-09-07T07:34:13.1375137Z [162311] Checking whether to label PR as stale. 2025-09-07T07:34:13.1375481Z [162311] Skipping because PR was updated recently 2025-09-07T07:34:13.1375943Z ##[endgroup] 2025-09-07T07:34:13.1376312Z ##[group]Processing PR #162312 2025-09-07T07:34:13.1376658Z [162312] URL: https://github.com/pytorch/pytorch/pull/162312 2025-09-07T07:34:13.1377043Z [162312] Checking whether to label PR as stale. 2025-09-07T07:34:13.1377398Z [162312] Skipping because PR was updated recently 2025-09-07T07:34:13.1377856Z ##[endgroup] 2025-09-07T07:34:13.1378215Z ##[group]Processing PR #162315 2025-09-07T07:34:13.1378559Z [162315] URL: https://github.com/pytorch/pytorch/pull/162315 2025-09-07T07:34:13.1379017Z [162315] Checking whether to label PR as stale. 2025-09-07T07:34:13.1379361Z [162315] Skipping because PR was updated recently 2025-09-07T07:34:13.1379819Z ##[endgroup] 2025-09-07T07:34:13.1380184Z ##[group]Processing PR #162316 2025-09-07T07:34:13.1380517Z [162316] URL: https://github.com/pytorch/pytorch/pull/162316 2025-09-07T07:34:13.1380912Z [162316] Checking whether to label PR as stale. 2025-09-07T07:34:13.1381380Z [162316] Skipping because PR was updated recently 2025-09-07T07:34:13.1381906Z ##[endgroup] 2025-09-07T07:34:13.1382274Z ##[group]Processing PR #162318 2025-09-07T07:34:13.1382622Z [162318] URL: https://github.com/pytorch/pytorch/pull/162318 2025-09-07T07:34:13.1383002Z [162318] Checking whether to label PR as stale. 2025-09-07T07:34:13.1383351Z [162318] Skipping because PR was updated recently 2025-09-07T07:34:13.1383809Z ##[endgroup] 2025-09-07T07:34:13.1384156Z ##[group]Processing PR #162320 2025-09-07T07:34:13.1384497Z [162320] URL: https://github.com/pytorch/pytorch/pull/162320 2025-09-07T07:34:13.1384887Z [162320] Checking whether to label PR as stale. 2025-09-07T07:34:13.1385237Z [162320] Skipping because PR was updated recently 2025-09-07T07:34:13.1385698Z ##[endgroup] 2025-09-07T07:34:13.1386062Z ##[group]Processing PR #162321 2025-09-07T07:34:13.1386395Z [162321] URL: https://github.com/pytorch/pytorch/pull/162321 2025-09-07T07:34:13.1386872Z [162321] Checking whether to label PR as stale. 2025-09-07T07:34:13.1387217Z [162321] Skipping because PR was updated recently 2025-09-07T07:34:13.1387676Z ##[endgroup] 2025-09-07T07:34:13.1388038Z ##[group]Processing PR #162323 2025-09-07T07:34:13.1388384Z [162323] URL: https://github.com/pytorch/pytorch/pull/162323 2025-09-07T07:34:13.1388769Z [162323] Checking whether to label PR as stale. 2025-09-07T07:34:13.1389121Z [162323] Skipping because PR was updated recently 2025-09-07T07:34:13.1389565Z ##[endgroup] 2025-09-07T07:34:13.1389925Z ##[group]Processing PR #162324 2025-09-07T07:34:13.1390269Z [162324] URL: https://github.com/pytorch/pytorch/pull/162324 2025-09-07T07:34:13.1390658Z [162324] Checking whether to label PR as stale. 2025-09-07T07:34:13.1391012Z [162324] Skipping because PR was updated recently 2025-09-07T07:34:13.1391474Z ##[endgroup] 2025-09-07T07:34:13.4117272Z ##[group]Processing PR #162325 2025-09-07T07:34:13.4118284Z [162325] URL: https://github.com/pytorch/pytorch/pull/162325 2025-09-07T07:34:13.4119294Z [162325] Checking whether to label PR as stale. 2025-09-07T07:34:13.4119973Z [162325] Skipping because PR was updated recently 2025-09-07T07:34:13.4120907Z ##[endgroup] 2025-09-07T07:34:13.4121815Z ##[group]Processing PR #162326 2025-09-07T07:34:13.4122560Z [162326] URL: https://github.com/pytorch/pytorch/pull/162326 2025-09-07T07:34:13.4123456Z [162326] Checking whether to label PR as stale. 2025-09-07T07:34:13.4124228Z [162326] Skipping because PR was updated recently 2025-09-07T07:34:13.4125171Z ##[endgroup] 2025-09-07T07:34:13.4126030Z ##[group]Processing PR #162328 2025-09-07T07:34:13.4126692Z [162328] URL: https://github.com/pytorch/pytorch/pull/162328 2025-09-07T07:34:13.4127747Z [162328] Checking whether to label PR as stale. 2025-09-07T07:34:13.4128388Z [162328] Skipping because PR was updated recently 2025-09-07T07:34:13.4129253Z ##[endgroup] 2025-09-07T07:34:13.4129658Z ##[group]Processing PR #162329 2025-09-07T07:34:13.4130014Z [162329] URL: https://github.com/pytorch/pytorch/pull/162329 2025-09-07T07:34:13.4130428Z [162329] Checking whether to label PR as stale. 2025-09-07T07:34:13.4130778Z [162329] Skipping because PR was updated recently 2025-09-07T07:34:13.4131243Z ##[endgroup] 2025-09-07T07:34:13.4131613Z ##[group]Processing PR #162330 2025-09-07T07:34:13.4131948Z [162330] URL: https://github.com/pytorch/pytorch/pull/162330 2025-09-07T07:34:13.4132345Z [162330] Checking whether to label PR as stale. 2025-09-07T07:34:13.4132688Z [162330] Skipping because PR was updated recently 2025-09-07T07:34:13.4133162Z ##[endgroup] 2025-09-07T07:34:13.4133529Z ##[group]Processing PR #162332 2025-09-07T07:34:13.4134268Z [162332] URL: https://github.com/pytorch/pytorch/pull/162332 2025-09-07T07:34:13.4134917Z [162332] Checking whether to label PR as stale. 2025-09-07T07:34:13.4135468Z [162332] Skipping because PR was updated recently 2025-09-07T07:34:13.4136225Z ##[endgroup] 2025-09-07T07:34:13.4136843Z ##[group]Processing PR #162334 2025-09-07T07:34:13.4137396Z [162334] URL: https://github.com/pytorch/pytorch/pull/162334 2025-09-07T07:34:13.4138317Z [162334] Checking whether to label PR as stale. 2025-09-07T07:34:13.4138921Z [162334] Skipping because PR was updated recently 2025-09-07T07:34:13.4139709Z ##[endgroup] 2025-09-07T07:34:13.4140327Z ##[group]Processing PR #162336 2025-09-07T07:34:13.4140865Z [162336] URL: https://github.com/pytorch/pytorch/pull/162336 2025-09-07T07:34:13.4141564Z [162336] Checking whether to label PR as stale. 2025-09-07T07:34:13.4142145Z [162336] Skipping because PR was updated recently 2025-09-07T07:34:13.4142971Z ##[endgroup] 2025-09-07T07:34:13.4143652Z ##[group]Processing PR #162337 2025-09-07T07:34:13.4144259Z [162337] URL: https://github.com/pytorch/pytorch/pull/162337 2025-09-07T07:34:13.4144933Z [162337] Checking whether to label PR as stale. 2025-09-07T07:34:13.4148275Z [162337] Skipping because PR was updated recently 2025-09-07T07:34:13.4149204Z ##[endgroup] 2025-09-07T07:34:13.4149867Z ##[group]Processing PR #162339 2025-09-07T07:34:13.4150447Z [162339] URL: https://github.com/pytorch/pytorch/pull/162339 2025-09-07T07:34:13.4151186Z [162339] Checking whether to label PR as stale. 2025-09-07T07:34:13.4151841Z [162339] Skipping because PR was updated recently 2025-09-07T07:34:13.4152636Z ##[endgroup] 2025-09-07T07:34:13.4153231Z ##[group]Processing PR #162340 2025-09-07T07:34:13.4153772Z [162340] URL: https://github.com/pytorch/pytorch/pull/162340 2025-09-07T07:34:13.4154407Z [162340] Checking whether to label PR as stale. 2025-09-07T07:34:13.4154982Z [162340] Skipping because PR was updated recently 2025-09-07T07:34:13.4155741Z ##[endgroup] 2025-09-07T07:34:13.4156337Z ##[group]Processing PR #162341 2025-09-07T07:34:13.4156928Z [162341] URL: https://github.com/pytorch/pytorch/pull/162341 2025-09-07T07:34:13.4157594Z [162341] Checking whether to label PR as stale. 2025-09-07T07:34:13.4158200Z [162341] Skipping because PR was updated recently 2025-09-07T07:34:13.4158994Z ##[endgroup] 2025-09-07T07:34:13.4159578Z ##[group]Processing PR #162342 2025-09-07T07:34:13.4160166Z [162342] URL: https://github.com/pytorch/pytorch/pull/162342 2025-09-07T07:34:13.4160874Z [162342] Checking whether to label PR as stale. 2025-09-07T07:34:13.4161448Z [162342] Skipping because PR was updated recently 2025-09-07T07:34:13.4162218Z ##[endgroup] 2025-09-07T07:34:13.4162828Z ##[group]Processing PR #162344 2025-09-07T07:34:13.4163415Z [162344] URL: https://github.com/pytorch/pytorch/pull/162344 2025-09-07T07:34:13.4164094Z [162344] Checking whether to label PR as stale. 2025-09-07T07:34:13.4164694Z [162344] Skipping because PR was updated recently 2025-09-07T07:34:13.4165501Z ##[endgroup] 2025-09-07T07:34:13.4166144Z ##[group]Processing PR #162345 2025-09-07T07:34:13.4166974Z [162345] URL: https://github.com/pytorch/pytorch/pull/162345 2025-09-07T07:34:13.4167652Z [162345] Checking whether to label PR as stale. 2025-09-07T07:34:13.4168229Z [162345] Skipping because PR was updated recently 2025-09-07T07:34:13.4168999Z ##[endgroup] 2025-09-07T07:34:13.4169328Z Processed 1415 PRs total. 2025-09-07T07:34:13.4375342Z A job completed hook has been configured by the self-hosted runner administrator 2025-09-07T07:34:13.4395803Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-09-07T07:34:13.4401646Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T07:34:13.4402030Z ##[endgroup] 2025-09-07T07:34:13.4579773Z [!ALERT!] Swap in detected! [!ALERT!] 2025-09-07T07:34:24.4261834Z [!ALERT!] Swap out detected [!ALERT!] 2025-09-07T07:34:42.1533757Z Cleaning up orphan processes