2025-08-26T19:34:04.8012325Z Current runner version: '2.328.0'
2025-08-26T19:34:04.8022135Z Runner name: 'i-0c78afd95575e4499'
2025-08-26T19:34:04.8023650Z Runner group name: 'default'
2025-08-26T19:34:04.8025115Z Machine name: 'ip-10-0-5-137'
2025-08-26T19:34:04.8029951Z ##[group]GITHUB_TOKEN Permissions
2025-08-26T19:34:04.8033090Z Contents: read
2025-08-26T19:34:04.8034074Z Metadata: read
2025-08-26T19:34:04.8034969Z PullRequests: write
2025-08-26T19:34:04.8240462Z ##[endgroup]
2025-08-26T19:34:04.8243658Z Secret source: Actions
2025-08-26T19:34:04.8244780Z Prepare workflow directory
2025-08-26T19:34:04.9251456Z Prepare all required actions
2025-08-26T19:34:04.9313726Z Getting action download info
2025-08-26T19:34:05.1517303Z Download action repository 'actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea' (SHA:60a0d83039c74a4aee543508d2ffcb1c3799cdea)
2025-08-26T19:34:05.4950562Z Complete job name: stale
2025-08-26T19:34:05.5372574Z A job started hook has been configured by the self-hosted runner administrator
2025-08-26T19:34:05.5490786Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh'
2025-08-26T19:34:05.5501652Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-08-26T19:34:05.5502800Z ##[endgroup]
2025-08-26T19:34:06.8960112Z Runner Type: linux.large
2025-08-26T19:34:06.8961928Z Instance Type: c5.large
2025-08-26T19:34:06.8963444Z AMI Name: unknown
2025-08-26T19:34:06.9010260Z AMI ID: ami-05ffe3c48a9991133
2025-08-26T19:34:12.5045106Z ##[group]Run actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
2025-08-26T19:34:12.5045766Z with:
2025-08-26T19:34:12.5059371Z 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-08-26T19:34:12.5073480Z github-token: ***
2025-08-26T19:34:12.5073849Z debug: false
2025-08-26T19:34:12.5074202Z user-agent: actions/github-script
2025-08-26T19:34:12.5074662Z result-encoding: json
2025-08-26T19:34:12.5075044Z retries: 0
2025-08-26T19:34:12.5075412Z retry-exempt-status-codes: 400,401,403,404,422
2025-08-26T19:34:12.5075891Z ##[endgroup]
2025-08-26T19:34:14.3800130Z ##[group]Processing PR #57772
2025-08-26T19:34:14.3807459Z [57772] URL: https://github.com/pytorch/pytorch/pull/57772
2025-08-26T19:34:14.3811519Z [57772] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3816803Z ##[endgroup]
2025-08-26T19:34:14.3820728Z ##[group]Processing PR #70978
2025-08-26T19:34:14.3823999Z [70978] URL: https://github.com/pytorch/pytorch/pull/70978
2025-08-26T19:34:14.3827338Z [70978] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3831100Z ##[endgroup]
2025-08-26T19:34:14.3836064Z ##[group]Processing PR #70979
2025-08-26T19:34:14.3839322Z [70979] URL: https://github.com/pytorch/pytorch/pull/70979
2025-08-26T19:34:14.3841688Z [70979] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3844478Z ##[endgroup]
2025-08-26T19:34:14.3847305Z ##[group]Processing PR #70989
2025-08-26T19:34:14.3849544Z [70989] URL: https://github.com/pytorch/pytorch/pull/70989
2025-08-26T19:34:14.3851878Z [70989] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3854613Z ##[endgroup]
2025-08-26T19:34:14.3857407Z ##[group]Processing PR #82997
2025-08-26T19:34:14.3859809Z [82997] URL: https://github.com/pytorch/pytorch/pull/82997
2025-08-26T19:34:14.3862389Z [82997] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3865462Z ##[endgroup]
2025-08-26T19:34:14.3868313Z ##[group]Processing PR #84545
2025-08-26T19:34:14.3870521Z [84545] URL: https://github.com/pytorch/pytorch/pull/84545
2025-08-26T19:34:14.3872824Z [84545] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3875469Z ##[endgroup]
2025-08-26T19:34:14.3878295Z ##[group]Processing PR #84843
2025-08-26T19:34:14.3880448Z [84843] URL: https://github.com/pytorch/pytorch/pull/84843
2025-08-26T19:34:14.3882803Z [84843] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3885518Z ##[endgroup]
2025-08-26T19:34:14.3889172Z ##[group]Processing PR #85699
2025-08-26T19:34:14.3891434Z [85699] URL: https://github.com/pytorch/pytorch/pull/85699
2025-08-26T19:34:14.3904201Z [85699] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3905357Z ##[endgroup]
2025-08-26T19:34:14.3906607Z ##[group]Processing PR #88106
2025-08-26T19:34:14.3907363Z [88106] URL: https://github.com/pytorch/pytorch/pull/88106
2025-08-26T19:34:14.3908219Z [88106] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3909286Z ##[endgroup]
2025-08-26T19:34:14.3910139Z ##[group]Processing PR #88196
2025-08-26T19:34:14.3910869Z [88196] URL: https://github.com/pytorch/pytorch/pull/88196
2025-08-26T19:34:14.3911752Z [88196] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3912822Z ##[endgroup]
2025-08-26T19:34:14.3913691Z ##[group]Processing PR #88221
2025-08-26T19:34:14.3914447Z [88221] URL: https://github.com/pytorch/pytorch/pull/88221
2025-08-26T19:34:14.3915300Z [88221] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3916355Z ##[endgroup]
2025-08-26T19:34:14.3917214Z ##[group]Processing PR #88998
2025-08-26T19:34:14.3917987Z [88998] URL: https://github.com/pytorch/pytorch/pull/88998
2025-08-26T19:34:14.3918774Z [88998] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3919877Z ##[endgroup]
2025-08-26T19:34:14.3920726Z ##[group]Processing PR #97825
2025-08-26T19:34:14.3921479Z [97825] URL: https://github.com/pytorch/pytorch/pull/97825
2025-08-26T19:34:14.3922349Z [97825] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3923441Z ##[endgroup]
2025-08-26T19:34:14.3924289Z ##[group]Processing PR #102148
2025-08-26T19:34:14.3925366Z [102148] URL: https://github.com/pytorch/pytorch/pull/102148
2025-08-26T19:34:14.3926303Z [102148] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3927405Z ##[endgroup]
2025-08-26T19:34:14.3928294Z ##[group]Processing PR #102613
2025-08-26T19:34:14.3929055Z [102613] URL: https://github.com/pytorch/pytorch/pull/102613
2025-08-26T19:34:14.3929969Z [102613] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3931013Z ##[endgroup]
2025-08-26T19:34:14.3931876Z ##[group]Processing PR #106149
2025-08-26T19:34:14.3932636Z [106149] URL: https://github.com/pytorch/pytorch/pull/106149
2025-08-26T19:34:14.3933541Z [106149] Checking whether to label PR as stale.
2025-08-26T19:34:14.3934341Z [106149] Skipping because PR was updated recently
2025-08-26T19:34:14.3935392Z ##[endgroup]
2025-08-26T19:34:14.3936472Z ##[group]Processing PR #108303
2025-08-26T19:34:14.3937215Z [108303] URL: https://github.com/pytorch/pytorch/pull/108303
2025-08-26T19:34:14.3938163Z [108303] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3939209Z ##[endgroup]
2025-08-26T19:34:14.3940043Z ##[group]Processing PR #110155
2025-08-26T19:34:14.3940816Z [110155] URL: https://github.com/pytorch/pytorch/pull/110155
2025-08-26T19:34:14.3941704Z [110155] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3942758Z ##[endgroup]
2025-08-26T19:34:14.3943677Z ##[group]Processing PR #111673
2025-08-26T19:34:14.3944461Z [111673] URL: https://github.com/pytorch/pytorch/pull/111673
2025-08-26T19:34:14.3945343Z [111673] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3946379Z ##[endgroup]
2025-08-26T19:34:14.3947259Z ##[group]Processing PR #112441
2025-08-26T19:34:14.3948018Z [112441] URL: https://github.com/pytorch/pytorch/pull/112441
2025-08-26T19:34:14.3948907Z [112441] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3949954Z ##[endgroup]
2025-08-26T19:34:14.3950800Z ##[group]Processing PR #113258
2025-08-26T19:34:14.3951544Z [113258] URL: https://github.com/pytorch/pytorch/pull/113258
2025-08-26T19:34:14.3952442Z [113258] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3953503Z ##[endgroup]
2025-08-26T19:34:14.3954349Z ##[group]Processing PR #115316
2025-08-26T19:34:14.3955111Z [115316] URL: https://github.com/pytorch/pytorch/pull/115316
2025-08-26T19:34:14.3955968Z [115316] Checking whether to label PR as stale.
2025-08-26T19:34:14.3956741Z [115316] Skipping because PR was updated recently
2025-08-26T19:34:14.3957773Z ##[endgroup]
2025-08-26T19:34:14.3958646Z ##[group]Processing PR #116534
2025-08-26T19:34:14.3959407Z [116534] URL: https://github.com/pytorch/pytorch/pull/116534
2025-08-26T19:34:14.3960568Z [116534] Skipping because PR has an exempting label.
2025-08-26T19:34:14.3961656Z ##[endgroup]
2025-08-26T19:34:14.3962517Z ##[group]Processing PR #117905
2025-08-26T19:34:14.3963300Z [117905] URL: https://github.com/pytorch/pytorch/pull/117905
2025-08-26T19:34:14.4043910Z [117905] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4045369Z ##[endgroup]
2025-08-26T19:34:14.4046274Z ##[group]Processing PR #119496
2025-08-26T19:34:14.4047051Z [119496] URL: https://github.com/pytorch/pytorch/pull/119496
2025-08-26T19:34:14.4047928Z [119496] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4048946Z ##[endgroup]
2025-08-26T19:34:14.4049809Z ##[group]Processing PR #119977
2025-08-26T19:34:14.4050585Z [119977] URL: https://github.com/pytorch/pytorch/pull/119977
2025-08-26T19:34:14.4051457Z [119977] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4052505Z ##[endgroup]
2025-08-26T19:34:14.4053334Z ##[group]Processing PR #120076
2025-08-26T19:34:14.4054146Z [120076] URL: https://github.com/pytorch/pytorch/pull/120076
2025-08-26T19:34:14.4055445Z [120076] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4056522Z ##[endgroup]
2025-08-26T19:34:14.4057367Z ##[group]Processing PR #121445
2025-08-26T19:34:14.4058110Z [121445] URL: https://github.com/pytorch/pytorch/pull/121445
2025-08-26T19:34:14.4059267Z [121445] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4060367Z ##[endgroup]
2025-08-26T19:34:14.4061220Z ##[group]Processing PR #124490
2025-08-26T19:34:14.4061984Z [124490] URL: https://github.com/pytorch/pytorch/pull/124490
2025-08-26T19:34:14.4062863Z [124490] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4063970Z ##[endgroup]
2025-08-26T19:34:14.4064847Z ##[group]Processing PR #124624
2025-08-26T19:34:14.4065608Z [124624] URL: https://github.com/pytorch/pytorch/pull/124624
2025-08-26T19:34:14.4066480Z [124624] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4067535Z ##[endgroup]
2025-08-26T19:34:14.4068410Z ##[group]Processing PR #125270
2025-08-26T19:34:14.4069215Z [125270] URL: https://github.com/pytorch/pytorch/pull/125270
2025-08-26T19:34:14.4070084Z [125270] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4071121Z ##[endgroup]
2025-08-26T19:34:14.4071991Z ##[group]Processing PR #125326
2025-08-26T19:34:14.4072772Z [125326] URL: https://github.com/pytorch/pytorch/pull/125326
2025-08-26T19:34:14.4073670Z [125326] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4074719Z ##[endgroup]
2025-08-26T19:34:14.4075576Z ##[group]Processing PR #125428
2025-08-26T19:34:14.4076350Z [125428] URL: https://github.com/pytorch/pytorch/pull/125428
2025-08-26T19:34:14.4077260Z [125428] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4078280Z ##[endgroup]
2025-08-26T19:34:14.4079121Z ##[group]Processing PR #125995
2025-08-26T19:34:14.4079912Z [125995] URL: https://github.com/pytorch/pytorch/pull/125995
2025-08-26T19:34:14.4080814Z [125995] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4081875Z ##[endgroup]
2025-08-26T19:34:14.4082723Z ##[group]Processing PR #126199
2025-08-26T19:34:14.4083496Z [126199] URL: https://github.com/pytorch/pytorch/pull/126199
2025-08-26T19:34:14.4084393Z [126199] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4085431Z ##[endgroup]
2025-08-26T19:34:14.4086263Z ##[group]Processing PR #126348
2025-08-26T19:34:14.4087071Z [126348] URL: https://github.com/pytorch/pytorch/pull/126348
2025-08-26T19:34:14.4087944Z [126348] Checking whether to label PR as stale.
2025-08-26T19:34:14.4088723Z [126348] Skipping because PR was updated recently
2025-08-26T19:34:14.4089753Z ##[endgroup]
2025-08-26T19:34:14.4090588Z ##[group]Processing PR #130462
2025-08-26T19:34:14.4091368Z [130462] URL: https://github.com/pytorch/pytorch/pull/130462
2025-08-26T19:34:14.4092250Z [130462] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4093274Z ##[endgroup]
2025-08-26T19:34:14.4094125Z ##[group]Processing PR #130556
2025-08-26T19:34:14.4095164Z [130556] URL: https://github.com/pytorch/pytorch/pull/130556
2025-08-26T19:34:14.4096070Z [130556] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4097134Z ##[endgroup]
2025-08-26T19:34:14.4097965Z ##[group]Processing PR #130752
2025-08-26T19:34:14.4098726Z [130752] URL: https://github.com/pytorch/pytorch/pull/130752
2025-08-26T19:34:14.4099637Z [130752] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4100682Z ##[endgroup]
2025-08-26T19:34:14.4101506Z ##[group]Processing PR #130856
2025-08-26T19:34:14.4102294Z [130856] URL: https://github.com/pytorch/pytorch/pull/130856
2025-08-26T19:34:14.4103142Z [130856] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4104272Z ##[endgroup]
2025-08-26T19:34:14.4105124Z ##[group]Processing PR #130887
2025-08-26T19:34:14.4105892Z [130887] URL: https://github.com/pytorch/pytorch/pull/130887
2025-08-26T19:34:14.4106785Z [130887] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4107876Z ##[endgroup]
2025-08-26T19:34:14.4108709Z ##[group]Processing PR #131296
2025-08-26T19:34:14.4109477Z [131296] URL: https://github.com/pytorch/pytorch/pull/131296
2025-08-26T19:34:14.4110466Z [131296] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4111377Z [131296] Skipping because PR was updated recently
2025-08-26T19:34:14.4112384Z ##[endgroup]
2025-08-26T19:34:14.4113406Z ##[group]Processing PR #132135
2025-08-26T19:34:14.4114218Z [132135] URL: https://github.com/pytorch/pytorch/pull/132135
2025-08-26T19:34:14.4115069Z [132135] Checking whether to label PR as stale.
2025-08-26T19:34:14.4115862Z [132135] Skipping because PR was updated recently
2025-08-26T19:34:14.4116900Z ##[endgroup]
2025-08-26T19:34:14.4117728Z ##[group]Processing PR #132414
2025-08-26T19:34:14.4118521Z [132414] URL: https://github.com/pytorch/pytorch/pull/132414
2025-08-26T19:34:14.4119439Z [132414] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4120482Z ##[endgroup]
2025-08-26T19:34:14.4121328Z ##[group]Processing PR #132814
2025-08-26T19:34:14.4122117Z [132814] URL: https://github.com/pytorch/pytorch/pull/132814
2025-08-26T19:34:14.4122997Z [132814] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4124039Z ##[endgroup]
2025-08-26T19:34:14.4124876Z ##[group]Processing PR #133289
2025-08-26T19:34:14.4125669Z [133289] URL: https://github.com/pytorch/pytorch/pull/133289
2025-08-26T19:34:14.4126572Z [133289] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4127626Z ##[endgroup]
2025-08-26T19:34:14.4128456Z ##[group]Processing PR #133296
2025-08-26T19:34:14.4129214Z [133296] URL: https://github.com/pytorch/pytorch/pull/133296
2025-08-26T19:34:14.4130105Z [133296] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4131137Z ##[endgroup]
2025-08-26T19:34:14.4131962Z ##[group]Processing PR #133297
2025-08-26T19:34:14.4132760Z [133297] URL: https://github.com/pytorch/pytorch/pull/133297
2025-08-26T19:34:14.4133659Z [133297] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4134701Z ##[endgroup]
2025-08-26T19:34:14.4135718Z ##[group]Processing PR #133315
2025-08-26T19:34:14.4136518Z [133315] URL: https://github.com/pytorch/pytorch/pull/133315
2025-08-26T19:34:14.4137422Z [133315] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4138485Z ##[endgroup]
2025-08-26T19:34:14.4139346Z ##[group]Processing PR #133392
2025-08-26T19:34:14.4140149Z [133392] URL: https://github.com/pytorch/pytorch/pull/133392
2025-08-26T19:34:14.4141040Z [133392] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4142089Z ##[endgroup]
2025-08-26T19:34:14.4142934Z ##[group]Processing PR #133419
2025-08-26T19:34:14.4143816Z [133419] URL: https://github.com/pytorch/pytorch/pull/133419
2025-08-26T19:34:14.4144735Z [133419] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4145776Z ##[endgroup]
2025-08-26T19:34:14.4146618Z ##[group]Processing PR #133423
2025-08-26T19:34:14.4147404Z [133423] URL: https://github.com/pytorch/pytorch/pull/133423
2025-08-26T19:34:14.4148549Z [133423] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4149589Z ##[endgroup]
2025-08-26T19:34:14.4150772Z ##[group]Processing PR #133667
2025-08-26T19:34:14.4151697Z [133667] URL: https://github.com/pytorch/pytorch/pull/133667
2025-08-26T19:34:14.4152791Z [133667] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4154053Z ##[endgroup]
2025-08-26T19:34:14.4155026Z ##[group]Processing PR #133753
2025-08-26T19:34:14.4156027Z [133753] URL: https://github.com/pytorch/pytorch/pull/133753
2025-08-26T19:34:14.4157079Z [133753] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4158277Z ##[endgroup]
2025-08-26T19:34:14.4159318Z ##[group]Processing PR #134881
2025-08-26T19:34:14.4160218Z [134881] URL: https://github.com/pytorch/pytorch/pull/134881
2025-08-26T19:34:14.4161252Z [134881] Checking whether to label PR as stale.
2025-08-26T19:34:14.4162234Z [134881] Skipping because PR was updated recently
2025-08-26T19:34:14.4163496Z ##[endgroup]
2025-08-26T19:34:14.4164584Z ##[group]Processing PR #134942
2025-08-26T19:34:14.4165473Z [134942] URL: https://github.com/pytorch/pytorch/pull/134942
2025-08-26T19:34:14.4166564Z [134942] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4167778Z ##[endgroup]
2025-08-26T19:34:14.4168876Z ##[group]Processing PR #135631
2025-08-26T19:34:14.4169940Z [135631] URL: https://github.com/pytorch/pytorch/pull/135631
2025-08-26T19:34:14.4170989Z [135631] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4172361Z ##[endgroup]
2025-08-26T19:34:14.4173411Z ##[group]Processing PR #135792
2025-08-26T19:34:14.4174311Z [135792] URL: https://github.com/pytorch/pytorch/pull/135792
2025-08-26T19:34:14.4175383Z [135792] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4176590Z ##[endgroup]
2025-08-26T19:34:14.4177711Z ##[group]Processing PR #136355
2025-08-26T19:34:14.4178587Z [136355] URL: https://github.com/pytorch/pytorch/pull/136355
2025-08-26T19:34:14.4179677Z [136355] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4180866Z ##[endgroup]
2025-08-26T19:34:14.4181867Z ##[group]Processing PR #136702
2025-08-26T19:34:14.4182888Z [136702] URL: https://github.com/pytorch/pytorch/pull/136702
2025-08-26T19:34:14.4183899Z [136702] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4185125Z ##[endgroup]
2025-08-26T19:34:14.4186108Z ##[group]Processing PR #136835
2025-08-26T19:34:14.4186944Z [136835] URL: https://github.com/pytorch/pytorch/pull/136835
2025-08-26T19:34:14.4187931Z [136835] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4189068Z ##[endgroup]
2025-08-26T19:34:14.4190115Z ##[group]Processing PR #137059
2025-08-26T19:34:14.4190971Z [137059] URL: https://github.com/pytorch/pytorch/pull/137059
2025-08-26T19:34:14.4192083Z [137059] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4193211Z [137059] Skipping because PR was updated recently
2025-08-26T19:34:14.4194359Z ##[endgroup]
2025-08-26T19:34:14.4195379Z ##[group]Processing PR #137400
2025-08-26T19:34:14.4196221Z [137400] URL: https://github.com/pytorch/pytorch/pull/137400
2025-08-26T19:34:14.4196923Z [137400] Checking whether to label PR as stale.
2025-08-26T19:34:14.4197754Z [137400] Skipping because PR was updated recently
2025-08-26T19:34:14.4199010Z ##[endgroup]
2025-08-26T19:34:14.4200015Z ##[group]Processing PR #137568
2025-08-26T19:34:14.4200806Z [137568] URL: https://github.com/pytorch/pytorch/pull/137568
2025-08-26T19:34:14.4201767Z [137568] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4203040Z ##[endgroup]
2025-08-26T19:34:14.4203926Z ##[group]Processing PR #137583
2025-08-26T19:34:14.4204798Z [137583] URL: https://github.com/pytorch/pytorch/pull/137583
2025-08-26T19:34:14.4205904Z [137583] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4206958Z ##[endgroup]
2025-08-26T19:34:14.4208090Z ##[group]Processing PR #138068
2025-08-26T19:34:14.4208983Z [138068] URL: https://github.com/pytorch/pytorch/pull/138068
2025-08-26T19:34:14.4210106Z [138068] Checking whether to label PR as stale.
2025-08-26T19:34:14.4210977Z [138068] Skipping because PR was updated recently
2025-08-26T19:34:14.4212125Z ##[endgroup]
2025-08-26T19:34:14.4213097Z ##[group]Processing PR #138214
2025-08-26T19:34:14.4213779Z [138214] URL: https://github.com/pytorch/pytorch/pull/138214
2025-08-26T19:34:14.4214933Z [138214] Checking whether to label PR as stale.
2025-08-26T19:34:14.4215734Z [138214] Skipping because PR was updated recently
2025-08-26T19:34:14.4216871Z ##[endgroup]
2025-08-26T19:34:14.4217900Z ##[group]Processing PR #138388
2025-08-26T19:34:14.4218805Z [138388] URL: https://github.com/pytorch/pytorch/pull/138388
2025-08-26T19:34:14.4219743Z [138388] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4221022Z ##[endgroup]
2025-08-26T19:34:14.4222023Z ##[group]Processing PR #138436
2025-08-26T19:34:14.4222880Z [138436] URL: https://github.com/pytorch/pytorch/pull/138436
2025-08-26T19:34:14.4224009Z [138436] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4225256Z ##[endgroup]
2025-08-26T19:34:14.4226321Z ##[group]Processing PR #138471
2025-08-26T19:34:14.4227169Z [138471] URL: https://github.com/pytorch/pytorch/pull/138471
2025-08-26T19:34:14.4228170Z [138471] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4229455Z ##[endgroup]
2025-08-26T19:34:14.4230390Z ##[group]Processing PR #138513
2025-08-26T19:34:14.4231481Z [138513] URL: https://github.com/pytorch/pytorch/pull/138513
2025-08-26T19:34:14.4232516Z [138513] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4233671Z ##[endgroup]
2025-08-26T19:34:14.4234751Z ##[group]Processing PR #138519
2025-08-26T19:34:14.4235929Z [138519] URL: https://github.com/pytorch/pytorch/pull/138519
2025-08-26T19:34:14.4236973Z [138519] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4238211Z ##[endgroup]
2025-08-26T19:34:14.4239163Z ##[group]Processing PR #138626
2025-08-26T19:34:14.4239920Z [138626] URL: https://github.com/pytorch/pytorch/pull/138626
2025-08-26T19:34:14.4240845Z [138626] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4241880Z ##[endgroup]
2025-08-26T19:34:14.4242723Z ##[group]Processing PR #138996
2025-08-26T19:34:14.4243502Z [138996] URL: https://github.com/pytorch/pytorch/pull/138996
2025-08-26T19:34:14.4244376Z [138996] Checking whether to label PR as stale.
2025-08-26T19:34:14.4245182Z [138996] Skipping because PR was updated recently
2025-08-26T19:34:14.4246205Z ##[endgroup]
2025-08-26T19:34:14.4247027Z ##[group]Processing PR #139171
2025-08-26T19:34:14.4247781Z [139171] URL: https://github.com/pytorch/pytorch/pull/139171
2025-08-26T19:34:14.4248660Z [139171] Checking whether to label PR as stale.
2025-08-26T19:34:14.4249438Z [139171] Skipping because PR was updated recently
2025-08-26T19:34:14.4250455Z ##[endgroup]
2025-08-26T19:34:14.4251265Z ##[group]Processing PR #139524
2025-08-26T19:34:14.4252020Z [139524] URL: https://github.com/pytorch/pytorch/pull/139524
2025-08-26T19:34:14.4252923Z [139524] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4253966Z ##[endgroup]
2025-08-26T19:34:14.4254787Z ##[group]Processing PR #139886
2025-08-26T19:34:14.4255542Z [139886] URL: https://github.com/pytorch/pytorch/pull/139886
2025-08-26T19:34:14.4256446Z [139886] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4257486Z ##[endgroup]
2025-08-26T19:34:14.4258302Z ##[group]Processing PR #139939
2025-08-26T19:34:14.4259076Z [139939] URL: https://github.com/pytorch/pytorch/pull/139939
2025-08-26T19:34:14.4260054Z [139939] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4260950Z [139939] Skipping because PR was updated recently
2025-08-26T19:34:14.4261974Z ##[endgroup]
2025-08-26T19:34:14.4262773Z ##[group]Processing PR #139971
2025-08-26T19:34:14.4263521Z [139971] URL: https://github.com/pytorch/pytorch/pull/139971
2025-08-26T19:34:14.4264568Z [139971] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4265484Z [139971] Skipping because PR was updated recently
2025-08-26T19:34:14.4266760Z ##[endgroup]
2025-08-26T19:34:14.4267601Z ##[group]Processing PR #140117
2025-08-26T19:34:14.4268373Z [140117] URL: https://github.com/pytorch/pytorch/pull/140117
2025-08-26T19:34:14.4269334Z [140117] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4270232Z [140117] Skipping because PR was updated recently
2025-08-26T19:34:14.4271248Z ##[endgroup]
2025-08-26T19:34:14.4272049Z ##[group]Processing PR #140321
2025-08-26T19:34:14.4272812Z [140321] URL: https://github.com/pytorch/pytorch/pull/140321
2025-08-26T19:34:14.4273708Z [140321] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4274737Z ##[endgroup]
2025-08-26T19:34:14.4275557Z ##[group]Processing PR #140372
2025-08-26T19:34:14.4276320Z [140372] URL: https://github.com/pytorch/pytorch/pull/140372
2025-08-26T19:34:14.4277204Z [140372] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4278233Z ##[endgroup]
2025-08-26T19:34:14.4279050Z ##[group]Processing PR #140613
2025-08-26T19:34:14.4279818Z [140613] URL: https://github.com/pytorch/pytorch/pull/140613
2025-08-26T19:34:14.4280708Z [140613] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4281735Z ##[endgroup]
2025-08-26T19:34:14.4282559Z ##[group]Processing PR #140972
2025-08-26T19:34:14.4283317Z [140972] URL: https://github.com/pytorch/pytorch/pull/140972
2025-08-26T19:34:14.4284346Z [140972] Checking whether to label PR as stale.
2025-08-26T19:34:14.4285129Z [140972] Skipping because PR was updated recently
2025-08-26T19:34:14.4286130Z ##[endgroup]
2025-08-26T19:34:14.4286952Z ##[group]Processing PR #141842
2025-08-26T19:34:14.4287704Z [141842] URL: https://github.com/pytorch/pytorch/pull/141842
2025-08-26T19:34:14.4288598Z [141842] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4289622Z ##[endgroup]
2025-08-26T19:34:14.4290447Z ##[group]Processing PR #141849
2025-08-26T19:34:14.4291198Z [141849] URL: https://github.com/pytorch/pytorch/pull/141849
2025-08-26T19:34:14.4292183Z [141849] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4293076Z [141849] Skipping because PR was updated recently
2025-08-26T19:34:14.4294083Z ##[endgroup]
2025-08-26T19:34:14.4294902Z ##[group]Processing PR #141912
2025-08-26T19:34:14.4295669Z [141912] URL: https://github.com/pytorch/pytorch/pull/141912
2025-08-26T19:34:14.4296556Z [141912] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4297573Z ##[endgroup]
2025-08-26T19:34:14.4298396Z ##[group]Processing PR #141961
2025-08-26T19:34:14.4299153Z [141961] URL: https://github.com/pytorch/pytorch/pull/141961
2025-08-26T19:34:14.4300124Z [141961] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4301010Z [141961] Skipping because PR was updated recently
2025-08-26T19:34:14.4302016Z ##[endgroup]
2025-08-26T19:34:14.4302843Z ##[group]Processing PR #142114
2025-08-26T19:34:14.4303674Z [142114] URL: https://github.com/pytorch/pytorch/pull/142114
2025-08-26T19:34:14.4304569Z [142114] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4305602Z ##[endgroup]
2025-08-26T19:34:14.4306421Z ##[group]Processing PR #142160
2025-08-26T19:34:14.4307184Z [142160] URL: https://github.com/pytorch/pytorch/pull/142160
2025-08-26T19:34:14.4308082Z [142160] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4309031Z ##[endgroup]
2025-08-26T19:34:14.4309785Z ##[group]Processing PR #142295
2025-08-26T19:34:14.4310509Z [142295] URL: https://github.com/pytorch/pytorch/pull/142295
2025-08-26T19:34:14.4311356Z [142295] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4312361Z ##[endgroup]
2025-08-26T19:34:14.4313158Z ##[group]Processing PR #143553
2025-08-26T19:34:14.4313897Z [143553] URL: https://github.com/pytorch/pytorch/pull/143553
2025-08-26T19:34:14.4314568Z [143553] Checking whether to label PR as stale.
2025-08-26T19:34:14.4315289Z [143553] Skipping because PR was updated recently
2025-08-26T19:34:14.4316155Z ##[endgroup]
2025-08-26T19:34:14.4316852Z ##[group]Processing PR #143812
2025-08-26T19:34:14.4317611Z [143812] URL: https://github.com/pytorch/pytorch/pull/143812
2025-08-26T19:34:14.4318372Z [143812] Skipping because PR has an exempting label.
2025-08-26T19:34:14.4319394Z ##[endgroup]
2025-08-26T19:34:14.4320192Z ##[group]Processing PR #143896
2025-08-26T19:34:14.4320888Z [143896] URL: https://github.com/pytorch/pytorch/pull/143896
2025-08-26T19:34:14.4321837Z [143896] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4322716Z [143896] Skipping because PR was updated recently
2025-08-26T19:34:14.4323737Z ##[endgroup]
2025-08-26T19:34:14.4324517Z ##[group]Processing PR #143959
2025-08-26T19:34:14.4325204Z [143959] URL: https://github.com/pytorch/pytorch/pull/143959
2025-08-26T19:34:14.4325992Z [143959] Checking whether to label PR as stale.
2025-08-26T19:34:14.4326686Z [143959] Skipping because PR was updated recently
2025-08-26T19:34:14.4327671Z ##[endgroup]
2025-08-26T19:34:14.4328463Z ##[group]Processing PR #144219
2025-08-26T19:34:14.4329233Z [144219] URL: https://github.com/pytorch/pytorch/pull/144219
2025-08-26T19:34:14.4330157Z [144219] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4331030Z [144219] Skipping because PR was updated recently
2025-08-26T19:34:14.4332006Z ##[endgroup]
2025-08-26T19:34:14.4332794Z ##[group]Processing PR #144465
2025-08-26T19:34:14.4333699Z [144465] URL: https://github.com/pytorch/pytorch/pull/144465
2025-08-26T19:34:14.4334454Z [144465] Checking whether to label PR as stale.
2025-08-26T19:34:14.4335205Z [144465] Skipping because PR was updated recently
2025-08-26T19:34:14.4336487Z ##[endgroup]
2025-08-26T19:34:14.4337343Z ##[group]Processing PR #144944
2025-08-26T19:34:14.4338118Z [144944] URL: https://github.com/pytorch/pytorch/pull/144944
2025-08-26T19:34:14.4339113Z [144944] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:14.4340016Z [144944] Skipping because PR was updated recently
2025-08-26T19:34:14.4341006Z ##[endgroup]
2025-08-26T19:34:14.4341836Z ##[group]Processing PR #145260
2025-08-26T19:34:14.4342599Z [145260] URL: https://github.com/pytorch/pytorch/pull/145260
2025-08-26T19:34:14.4343451Z [145260] Checking whether to label PR as stale.
2025-08-26T19:34:14.4344320Z [145260] Skipping because PR was updated recently
2025-08-26T19:34:14.4345342Z ##[endgroup]
2025-08-26T19:34:14.4346170Z ##[group]Processing PR #145873
2025-08-26T19:34:14.4346957Z [145873] URL: https://github.com/pytorch/pytorch/pull/145873
2025-08-26T19:34:14.4347774Z [145873] Checking whether to label PR as stale.
2025-08-26T19:34:14.4348496Z [145873] Skipping because PR was updated recently
2025-08-26T19:34:14.4349455Z ##[endgroup]
2025-08-26T19:34:15.3617076Z ##[group]Processing PR #145922
2025-08-26T19:34:15.3618387Z [145922] URL: https://github.com/pytorch/pytorch/pull/145922
2025-08-26T19:34:15.3619358Z [145922] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3620453Z ##[endgroup]
2025-08-26T19:34:15.3621397Z ##[group]Processing PR #146101
2025-08-26T19:34:15.3622214Z [146101] URL: https://github.com/pytorch/pytorch/pull/146101
2025-08-26T19:34:15.3625692Z [146101] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3627067Z ##[endgroup]
2025-08-26T19:34:15.3629288Z ##[group]Processing PR #146172
2025-08-26T19:34:15.3630138Z [146172] URL: https://github.com/pytorch/pytorch/pull/146172
2025-08-26T19:34:15.3634213Z [146172] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3635382Z ##[endgroup]
2025-08-26T19:34:15.3636469Z ##[group]Processing PR #146318
2025-08-26T19:34:15.3637270Z [146318] URL: https://github.com/pytorch/pytorch/pull/146318
2025-08-26T19:34:15.3638279Z [146318] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3664450Z ##[endgroup]
2025-08-26T19:34:15.3666339Z ##[group]Processing PR #146506
2025-08-26T19:34:15.3667127Z [146506] URL: https://github.com/pytorch/pytorch/pull/146506
2025-08-26T19:34:15.3668067Z [146506] Checking whether to label PR as stale.
2025-08-26T19:34:15.3668827Z [146506] Skipping because PR was updated recently
2025-08-26T19:34:15.3670238Z ##[endgroup]
2025-08-26T19:34:15.3674120Z ##[group]Processing PR #146593
2025-08-26T19:34:15.3674753Z [146593] URL: https://github.com/pytorch/pytorch/pull/146593
2025-08-26T19:34:15.3675873Z [146593] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3676694Z ##[endgroup]
2025-08-26T19:34:15.3677273Z ##[group]Processing PR #146777
2025-08-26T19:34:15.3677880Z [146777] URL: https://github.com/pytorch/pytorch/pull/146777
2025-08-26T19:34:15.3678666Z [146777] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3679355Z [146777] Skipping because PR was updated recently
2025-08-26T19:34:15.3680284Z ##[endgroup]
2025-08-26T19:34:15.3680996Z ##[group]Processing PR #146983
2025-08-26T19:34:15.3681592Z [146983] URL: https://github.com/pytorch/pytorch/pull/146983
2025-08-26T19:34:15.3682304Z [146983] Checking whether to label PR as stale.
2025-08-26T19:34:15.3682938Z [146983] Skipping because PR was updated recently
2025-08-26T19:34:15.3683813Z ##[endgroup]
2025-08-26T19:34:15.3684645Z ##[group]Processing PR #147253
2025-08-26T19:34:15.3685422Z [147253] URL: https://github.com/pytorch/pytorch/pull/147253
2025-08-26T19:34:15.3686151Z [147253] Checking whether to label PR as stale.
2025-08-26T19:34:15.3686803Z [147253] Skipping because PR was updated recently
2025-08-26T19:34:15.3687669Z ##[endgroup]
2025-08-26T19:34:15.3688603Z ##[group]Processing PR #147360
2025-08-26T19:34:15.3689251Z [147360] URL: https://github.com/pytorch/pytorch/pull/147360
2025-08-26T19:34:15.3689984Z [147360] Checking whether to label PR as stale.
2025-08-26T19:34:15.3690629Z [147360] Skipping because PR was updated recently
2025-08-26T19:34:15.3691471Z ##[endgroup]
2025-08-26T19:34:15.3692145Z ##[group]Processing PR #147365
2025-08-26T19:34:15.3692747Z [147365] URL: https://github.com/pytorch/pytorch/pull/147365
2025-08-26T19:34:15.3693468Z [147365] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3694230Z ##[endgroup]
2025-08-26T19:34:15.3694843Z ##[group]Processing PR #147469
2025-08-26T19:34:15.3695442Z [147469] URL: https://github.com/pytorch/pytorch/pull/147469
2025-08-26T19:34:15.3696229Z [147469] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3696983Z [147469] Skipping because PR was updated recently
2025-08-26T19:34:15.3697833Z ##[endgroup]
2025-08-26T19:34:15.3698490Z ##[group]Processing PR #147470
2025-08-26T19:34:15.3699128Z [147470] URL: https://github.com/pytorch/pytorch/pull/147470
2025-08-26T19:34:15.3699837Z [147470] Checking whether to label PR as stale.
2025-08-26T19:34:15.3700469Z [147470] Skipping because PR was updated recently
2025-08-26T19:34:15.3701300Z ##[endgroup]
2025-08-26T19:34:15.3701898Z ##[group]Processing PR #147522
2025-08-26T19:34:15.3702522Z [147522] URL: https://github.com/pytorch/pytorch/pull/147522
2025-08-26T19:34:15.3703149Z [147522] Checking whether to label PR as stale.
2025-08-26T19:34:15.3703827Z [147522] Skipping because PR was updated recently
2025-08-26T19:34:15.3704704Z ##[endgroup]
2025-08-26T19:34:15.3705341Z ##[group]Processing PR #147653
2025-08-26T19:34:15.3705954Z [147653] URL: https://github.com/pytorch/pytorch/pull/147653
2025-08-26T19:34:15.3706681Z [147653] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3707707Z ##[endgroup]
2025-08-26T19:34:15.3708326Z ##[group]Processing PR #147706
2025-08-26T19:34:15.3708990Z [147706] URL: https://github.com/pytorch/pytorch/pull/147706
2025-08-26T19:34:15.3709694Z [147706] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3710508Z [147706] Skipping because PR was updated recently
2025-08-26T19:34:15.3711375Z ##[endgroup]
2025-08-26T19:34:15.3712030Z ##[group]Processing PR #147855
2025-08-26T19:34:15.3712662Z [147855] URL: https://github.com/pytorch/pytorch/pull/147855
2025-08-26T19:34:15.3713388Z [147855] Checking whether to label PR as stale.
2025-08-26T19:34:15.3714014Z [147855] Skipping because PR was updated recently
2025-08-26T19:34:15.3714873Z ##[endgroup]
2025-08-26T19:34:15.3715943Z ##[group]Processing PR #147927
2025-08-26T19:34:15.3716503Z [147927] URL: https://github.com/pytorch/pytorch/pull/147927
2025-08-26T19:34:15.3717213Z [147927] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3718074Z ##[endgroup]
2025-08-26T19:34:15.3718737Z ##[group]Processing PR #147990
2025-08-26T19:34:15.3719338Z [147990] URL: https://github.com/pytorch/pytorch/pull/147990
2025-08-26T19:34:15.3720008Z [147990] Checking whether to label PR as stale.
2025-08-26T19:34:15.3720587Z [147990] Skipping because PR was updated recently
2025-08-26T19:34:15.3721752Z ##[endgroup]
2025-08-26T19:34:15.3722390Z ##[group]Processing PR #148023
2025-08-26T19:34:15.3722989Z [148023] URL: https://github.com/pytorch/pytorch/pull/148023
2025-08-26T19:34:15.3723704Z [148023] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3724564Z ##[endgroup]
2025-08-26T19:34:15.3725222Z ##[group]Processing PR #148037
2025-08-26T19:34:15.3725837Z [148037] URL: https://github.com/pytorch/pytorch/pull/148037
2025-08-26T19:34:15.3726664Z [148037] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3727415Z [148037] Skipping because PR was updated recently
2025-08-26T19:34:15.3728287Z ##[endgroup]
2025-08-26T19:34:15.3728956Z ##[group]Processing PR #148180
2025-08-26T19:34:15.3729568Z [148180] URL: https://github.com/pytorch/pytorch/pull/148180
2025-08-26T19:34:15.3730465Z [148180] Checking whether to label PR as stale.
2025-08-26T19:34:15.3731129Z [148180] Skipping because PR was updated recently
2025-08-26T19:34:15.3731972Z ##[endgroup]
2025-08-26T19:34:15.3732626Z ##[group]Processing PR #148328
2025-08-26T19:34:15.3733246Z [148328] URL: https://github.com/pytorch/pytorch/pull/148328
2025-08-26T19:34:15.3733878Z [148328] Checking whether to label PR as stale.
2025-08-26T19:34:15.3734499Z [148328] Skipping because PR was updated recently
2025-08-26T19:34:15.3735347Z ##[endgroup]
2025-08-26T19:34:15.3736617Z ##[group]Processing PR #148355
2025-08-26T19:34:15.3737231Z [148355] URL: https://github.com/pytorch/pytorch/pull/148355
2025-08-26T19:34:15.3738250Z [148355] Checking whether to label PR as stale.
2025-08-26T19:34:15.3738907Z [148355] Skipping because PR was updated recently
2025-08-26T19:34:15.3739790Z ##[endgroup]
2025-08-26T19:34:15.3740448Z ##[group]Processing PR #148408
2025-08-26T19:34:15.3741065Z [148408] URL: https://github.com/pytorch/pytorch/pull/148408
2025-08-26T19:34:15.3741815Z [148408] Checking whether to label PR as stale.
2025-08-26T19:34:15.3742440Z [148408] Skipping because PR was updated recently
2025-08-26T19:34:15.3743235Z ##[endgroup]
2025-08-26T19:34:15.3743969Z ##[group]Processing PR #148474
2025-08-26T19:34:15.3744594Z [148474] URL: https://github.com/pytorch/pytorch/pull/148474
2025-08-26T19:34:15.3745306Z [148474] Checking whether to label PR as stale.
2025-08-26T19:34:15.3745943Z [148474] Skipping because PR was updated recently
2025-08-26T19:34:15.3746810Z ##[endgroup]
2025-08-26T19:34:15.3747455Z ##[group]Processing PR #148484
2025-08-26T19:34:15.3748100Z [148484] URL: https://github.com/pytorch/pytorch/pull/148484
2025-08-26T19:34:15.3748832Z [148484] Checking whether to label PR as stale.
2025-08-26T19:34:15.3749454Z [148484] Skipping because PR was updated recently
2025-08-26T19:34:15.3750315Z ##[endgroup]
2025-08-26T19:34:15.3750971Z ##[group]Processing PR #148492
2025-08-26T19:34:15.3751507Z [148492] URL: https://github.com/pytorch/pytorch/pull/148492
2025-08-26T19:34:15.3752198Z [148492] Checking whether to label PR as stale.
2025-08-26T19:34:15.3752811Z [148492] Skipping because PR was updated recently
2025-08-26T19:34:15.3753653Z ##[endgroup]
2025-08-26T19:34:15.3754282Z ##[group]Processing PR #148569
2025-08-26T19:34:15.3755002Z [148569] URL: https://github.com/pytorch/pytorch/pull/148569
2025-08-26T19:34:15.3755698Z [148569] Checking whether to label PR as stale.
2025-08-26T19:34:15.3756324Z [148569] Skipping because PR was updated recently
2025-08-26T19:34:15.3757124Z ##[endgroup]
2025-08-26T19:34:15.3757758Z ##[group]Processing PR #148673
2025-08-26T19:34:15.3758630Z [148673] URL: https://github.com/pytorch/pytorch/pull/148673
2025-08-26T19:34:15.3759243Z [148673] Checking whether to label PR as stale.
2025-08-26T19:34:15.3759857Z [148673] Skipping because PR was updated recently
2025-08-26T19:34:15.3760647Z ##[endgroup]
2025-08-26T19:34:15.3761257Z ##[group]Processing PR #148674
2025-08-26T19:34:15.3761858Z [148674] URL: https://github.com/pytorch/pytorch/pull/148674
2025-08-26T19:34:15.3762564Z [148674] Checking whether to label PR as stale.
2025-08-26T19:34:15.3763116Z [148674] Skipping because PR was updated recently
2025-08-26T19:34:15.3763936Z ##[endgroup]
2025-08-26T19:34:15.3764581Z ##[group]Processing PR #148820
2025-08-26T19:34:15.3765212Z [148820] URL: https://github.com/pytorch/pytorch/pull/148820
2025-08-26T19:34:15.3765968Z [148820] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3766848Z ##[endgroup]
2025-08-26T19:34:15.3767531Z ##[group]Processing PR #148900
2025-08-26T19:34:15.3768151Z [148900] URL: https://github.com/pytorch/pytorch/pull/148900
2025-08-26T19:34:15.3768933Z [148900] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3769766Z ##[endgroup]
2025-08-26T19:34:15.3770369Z ##[group]Processing PR #148956
2025-08-26T19:34:15.3770961Z [148956] URL: https://github.com/pytorch/pytorch/pull/148956
2025-08-26T19:34:15.3771754Z [148956] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3772698Z [148956] Skipping because PR was updated recently
2025-08-26T19:34:15.3773603Z ##[endgroup]
2025-08-26T19:34:15.3774282Z ##[group]Processing PR #149003
2025-08-26T19:34:15.3774879Z [149003] URL: https://github.com/pytorch/pytorch/pull/149003
2025-08-26T19:34:15.3775620Z [149003] Checking whether to label PR as stale.
2025-08-26T19:34:15.3776256Z [149003] Skipping because PR was updated recently
2025-08-26T19:34:15.3777122Z ##[endgroup]
2025-08-26T19:34:15.3777802Z ##[group]Processing PR #149108
2025-08-26T19:34:15.3778433Z [149108] URL: https://github.com/pytorch/pytorch/pull/149108
2025-08-26T19:34:15.3779238Z [149108] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3779998Z [149108] Skipping because PR was updated recently
2025-08-26T19:34:15.3780870Z ##[endgroup]
2025-08-26T19:34:15.3781522Z ##[group]Processing PR #149122
2025-08-26T19:34:15.3782146Z [149122] URL: https://github.com/pytorch/pytorch/pull/149122
2025-08-26T19:34:15.3782893Z [149122] Checking whether to label PR as stale.
2025-08-26T19:34:15.3783542Z [149122] Skipping because PR was updated recently
2025-08-26T19:34:15.3784496Z ##[endgroup]
2025-08-26T19:34:15.3785132Z ##[group]Processing PR #149271
2025-08-26T19:34:15.3785755Z [149271] URL: https://github.com/pytorch/pytorch/pull/149271
2025-08-26T19:34:15.3786499Z [149271] Checking whether to label PR as stale.
2025-08-26T19:34:15.3787136Z [149271] Skipping because PR was updated recently
2025-08-26T19:34:15.3787996Z ##[endgroup]
2025-08-26T19:34:15.3788671Z ##[group]Processing PR #149362
2025-08-26T19:34:15.3789325Z [149362] URL: https://github.com/pytorch/pytorch/pull/149362
2025-08-26T19:34:15.3790157Z [149362] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3790916Z [149362] Skipping because PR was updated recently
2025-08-26T19:34:15.3791766Z ##[endgroup]
2025-08-26T19:34:15.3792424Z ##[group]Processing PR #149392
2025-08-26T19:34:15.3793062Z [149392] URL: https://github.com/pytorch/pytorch/pull/149392
2025-08-26T19:34:15.3793771Z [149392] Checking whether to label PR as stale.
2025-08-26T19:34:15.3794363Z [149392] Skipping because PR was updated recently
2025-08-26T19:34:15.3795181Z ##[endgroup]
2025-08-26T19:34:15.3795821Z ##[group]Processing PR #149536
2025-08-26T19:34:15.3796385Z [149536] URL: https://github.com/pytorch/pytorch/pull/149536
2025-08-26T19:34:15.3797078Z [149536] Checking whether to label PR as stale.
2025-08-26T19:34:15.3797687Z [149536] Skipping because PR was updated recently
2025-08-26T19:34:15.3798541Z ##[endgroup]
2025-08-26T19:34:15.3799178Z ##[group]Processing PR #149939
2025-08-26T19:34:15.3799962Z [149939] URL: https://github.com/pytorch/pytorch/pull/149939
2025-08-26T19:34:15.3800648Z [149939] Checking whether to label PR as stale.
2025-08-26T19:34:15.3801270Z [149939] Skipping because PR was updated recently
2025-08-26T19:34:15.3802111Z ##[endgroup]
2025-08-26T19:34:15.3802781Z ##[group]Processing PR #149961
2025-08-26T19:34:15.3803421Z [149961] URL: https://github.com/pytorch/pytorch/pull/149961
2025-08-26T19:34:15.3804126Z [149961] Checking whether to label PR as stale.
2025-08-26T19:34:15.3804764Z [149961] Skipping because PR was updated recently
2025-08-26T19:34:15.3805570Z ##[endgroup]
2025-08-26T19:34:15.3806177Z ##[group]Processing PR #150116
2025-08-26T19:34:15.3806772Z [150116] URL: https://github.com/pytorch/pytorch/pull/150116
2025-08-26T19:34:15.3807571Z [150116] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3808308Z [150116] Skipping because PR was updated recently
2025-08-26T19:34:15.3809179Z ##[endgroup]
2025-08-26T19:34:15.3809831Z ##[group]Processing PR #150182
2025-08-26T19:34:15.3810478Z [150182] URL: https://github.com/pytorch/pytorch/pull/150182
2025-08-26T19:34:15.3811301Z [150182] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3812060Z [150182] Skipping because PR was updated recently
2025-08-26T19:34:15.3812909Z ##[endgroup]
2025-08-26T19:34:15.3813575Z ##[group]Processing PR #150278
2025-08-26T19:34:15.3814399Z [150278] URL: https://github.com/pytorch/pytorch/pull/150278
2025-08-26T19:34:15.3815132Z [150278] Checking whether to label PR as stale.
2025-08-26T19:34:15.3815765Z [150278] Skipping because PR was updated recently
2025-08-26T19:34:15.3816634Z ##[endgroup]
2025-08-26T19:34:15.3817313Z ##[group]Processing PR #150282
2025-08-26T19:34:15.3817931Z [150282] URL: https://github.com/pytorch/pytorch/pull/150282
2025-08-26T19:34:15.3818671Z [150282] Checking whether to label PR as stale.
2025-08-26T19:34:15.3819323Z [150282] Skipping because PR was updated recently
2025-08-26T19:34:15.3820196Z ##[endgroup]
2025-08-26T19:34:15.3820880Z ##[group]Processing PR #150302
2025-08-26T19:34:15.3821488Z [150302] URL: https://github.com/pytorch/pytorch/pull/150302
2025-08-26T19:34:15.3822329Z [150302] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3823096Z [150302] Skipping because PR was updated recently
2025-08-26T19:34:15.3824038Z ##[endgroup]
2025-08-26T19:34:15.3824724Z ##[group]Processing PR #150552
2025-08-26T19:34:15.3825360Z [150552] URL: https://github.com/pytorch/pytorch/pull/150552
2025-08-26T19:34:15.3826169Z [150552] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3826949Z [150552] Skipping because PR was updated recently
2025-08-26T19:34:15.3827835Z ##[endgroup]
2025-08-26T19:34:15.3828508Z ##[group]Processing PR #150569
2025-08-26T19:34:15.3829141Z [150569] URL: https://github.com/pytorch/pytorch/pull/150569
2025-08-26T19:34:15.3829848Z [150569] Checking whether to label PR as stale.
2025-08-26T19:34:15.3830490Z [150569] Skipping because PR was updated recently
2025-08-26T19:34:15.3831383Z ##[endgroup]
2025-08-26T19:34:15.3832071Z ##[group]Processing PR #150583
2025-08-26T19:34:15.3832681Z [150583] URL: https://github.com/pytorch/pytorch/pull/150583
2025-08-26T19:34:15.3833484Z [150583] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3834261Z [150583] Skipping because PR was updated recently
2025-08-26T19:34:15.3835095Z ##[endgroup]
2025-08-26T19:34:15.3836066Z ##[group]Processing PR #150721
2025-08-26T19:34:15.3836714Z [150721] URL: https://github.com/pytorch/pytorch/pull/150721
2025-08-26T19:34:15.3837395Z [150721] Checking whether to label PR as stale.
2025-08-26T19:34:15.3837966Z [150721] Skipping because PR was updated recently
2025-08-26T19:34:15.3838793Z ##[endgroup]
2025-08-26T19:34:15.3839401Z ##[group]Processing PR #150793
2025-08-26T19:34:15.3839990Z [150793] URL: https://github.com/pytorch/pytorch/pull/150793
2025-08-26T19:34:15.3840794Z [150793] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3841771Z [150793] Skipping because PR was updated recently
2025-08-26T19:34:15.3842628Z ##[endgroup]
2025-08-26T19:34:15.3843269Z ##[group]Processing PR #150934
2025-08-26T19:34:15.3843882Z [150934] URL: https://github.com/pytorch/pytorch/pull/150934
2025-08-26T19:34:15.3844702Z [150934] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3845502Z [150934] Skipping because PR was updated recently
2025-08-26T19:34:15.3846386Z ##[endgroup]
2025-08-26T19:34:15.3847012Z ##[group]Processing PR #151146
2025-08-26T19:34:15.3847614Z [151146] URL: https://github.com/pytorch/pytorch/pull/151146
2025-08-26T19:34:15.3848412Z [151146] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3849135Z [151146] Skipping because PR was updated recently
2025-08-26T19:34:15.3850002Z ##[endgroup]
2025-08-26T19:34:15.3850639Z ##[group]Processing PR #151191
2025-08-26T19:34:15.3851256Z [151191] URL: https://github.com/pytorch/pytorch/pull/151191
2025-08-26T19:34:15.3852095Z [151191] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3929394Z [151191] Skipping because PR was updated recently
2025-08-26T19:34:15.3930286Z ##[endgroup]
2025-08-26T19:34:15.3931029Z ##[group]Processing PR #151218
2025-08-26T19:34:15.3931532Z [151218] URL: https://github.com/pytorch/pytorch/pull/151218
2025-08-26T19:34:15.3932415Z [151218] Checking whether to label PR as stale.
2025-08-26T19:34:15.3932886Z [151218] Skipping because PR was updated recently
2025-08-26T19:34:15.3933395Z ##[endgroup]
2025-08-26T19:34:15.3933761Z ##[group]Processing PR #151298
2025-08-26T19:34:15.3934109Z [151298] URL: https://github.com/pytorch/pytorch/pull/151298
2025-08-26T19:34:15.3934520Z [151298] Checking whether to label PR as stale.
2025-08-26T19:34:15.3934877Z [151298] Skipping because PR was updated recently
2025-08-26T19:34:15.3935354Z ##[endgroup]
2025-08-26T19:34:15.3935925Z ##[group]Processing PR #151305
2025-08-26T19:34:15.3936273Z [151305] URL: https://github.com/pytorch/pytorch/pull/151305
2025-08-26T19:34:15.3936713Z [151305] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3937191Z ##[endgroup]
2025-08-26T19:34:15.3937550Z ##[group]Processing PR #151314
2025-08-26T19:34:15.3937897Z [151314] URL: https://github.com/pytorch/pytorch/pull/151314
2025-08-26T19:34:15.3938303Z [151314] Checking whether to label PR as stale.
2025-08-26T19:34:15.3938659Z [151314] Skipping because PR was updated recently
2025-08-26T19:34:15.3939127Z ##[endgroup]
2025-08-26T19:34:15.3939494Z ##[group]Processing PR #151315
2025-08-26T19:34:15.3939830Z [151315] URL: https://github.com/pytorch/pytorch/pull/151315
2025-08-26T19:34:15.3940291Z [151315] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3940702Z [151315] Skipping because PR was updated recently
2025-08-26T19:34:15.3941174Z ##[endgroup]
2025-08-26T19:34:15.3941543Z ##[group]Processing PR #151439
2025-08-26T19:34:15.3941893Z [151439] URL: https://github.com/pytorch/pytorch/pull/151439
2025-08-26T19:34:15.3942344Z [151439] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3942768Z [151439] Skipping because PR was updated recently
2025-08-26T19:34:15.3943238Z ##[endgroup]
2025-08-26T19:34:15.3943682Z ##[group]Processing PR #151447
2025-08-26T19:34:15.3944040Z [151447] URL: https://github.com/pytorch/pytorch/pull/151447
2025-08-26T19:34:15.3944456Z [151447] Checking whether to label PR as stale.
2025-08-26T19:34:15.3944807Z [151447] Skipping because PR was updated recently
2025-08-26T19:34:15.3945278Z ##[endgroup]
2025-08-26T19:34:15.3945651Z ##[group]Processing PR #151465
2025-08-26T19:34:15.3945993Z [151465] URL: https://github.com/pytorch/pytorch/pull/151465
2025-08-26T19:34:15.3946403Z [151465] Checking whether to label PR as stale.
2025-08-26T19:34:15.3946750Z [151465] Skipping because PR was updated recently
2025-08-26T19:34:15.3947214Z ##[endgroup]
2025-08-26T19:34:15.3947584Z ##[group]Processing PR #151497
2025-08-26T19:34:15.3947936Z [151497] URL: https://github.com/pytorch/pytorch/pull/151497
2025-08-26T19:34:15.3948527Z [151497] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3948954Z [151497] Skipping because PR was updated recently
2025-08-26T19:34:15.3949426Z ##[endgroup]
2025-08-26T19:34:15.3949788Z ##[group]Processing PR #151531
2025-08-26T19:34:15.3950143Z [151531] URL: https://github.com/pytorch/pytorch/pull/151531
2025-08-26T19:34:15.3950595Z [151531] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3951020Z [151531] Skipping because PR was updated recently
2025-08-26T19:34:15.3951489Z ##[endgroup]
2025-08-26T19:34:15.3951859Z ##[group]Processing PR #151700
2025-08-26T19:34:15.3952201Z [151700] URL: https://github.com/pytorch/pytorch/pull/151700
2025-08-26T19:34:15.3952603Z [151700] Checking whether to label PR as stale.
2025-08-26T19:34:15.3952953Z [151700] Skipping because PR was updated recently
2025-08-26T19:34:15.3953422Z ##[endgroup]
2025-08-26T19:34:15.3953849Z ##[group]Processing PR #151758
2025-08-26T19:34:15.3954264Z [151758] URL: https://github.com/pytorch/pytorch/pull/151758
2025-08-26T19:34:15.3954712Z [151758] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3955139Z [151758] Skipping because PR was updated recently
2025-08-26T19:34:15.3955615Z ##[endgroup]
2025-08-26T19:34:15.3955972Z ##[group]Processing PR #151769
2025-08-26T19:34:15.3956437Z [151769] URL: https://github.com/pytorch/pytorch/pull/151769
2025-08-26T19:34:15.3956832Z [151769] Checking whether to label PR as stale.
2025-08-26T19:34:15.3957193Z [151769] Skipping because PR was updated recently
2025-08-26T19:34:15.3957661Z ##[endgroup]
2025-08-26T19:34:15.3958031Z ##[group]Processing PR #151778
2025-08-26T19:34:15.3958367Z [151778] URL: https://github.com/pytorch/pytorch/pull/151778
2025-08-26T19:34:15.3958828Z [151778] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3959234Z [151778] Skipping because PR was updated recently
2025-08-26T19:34:15.3959706Z ##[endgroup]
2025-08-26T19:34:15.3960083Z ##[group]Processing PR #151780
2025-08-26T19:34:15.3960440Z [151780] URL: https://github.com/pytorch/pytorch/pull/151780
2025-08-26T19:34:15.3960834Z [151780] Checking whether to label PR as stale.
2025-08-26T19:34:15.3961199Z [151780] Skipping because PR was updated recently
2025-08-26T19:34:15.3961657Z ##[endgroup]
2025-08-26T19:34:15.3962033Z ##[group]Processing PR #151845
2025-08-26T19:34:15.3962449Z [151845] URL: https://github.com/pytorch/pytorch/pull/151845
2025-08-26T19:34:15.3962854Z [151845] Checking whether to label PR as stale.
2025-08-26T19:34:15.3963215Z [151845] Skipping because PR was updated recently
2025-08-26T19:34:15.3963666Z ##[endgroup]
2025-08-26T19:34:15.3964034Z ##[group]Processing PR #151916
2025-08-26T19:34:15.3964379Z [151916] URL: https://github.com/pytorch/pytorch/pull/151916
2025-08-26T19:34:15.3964971Z [151916] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3965394Z [151916] Skipping because PR was updated recently
2025-08-26T19:34:15.3965874Z ##[endgroup]
2025-08-26T19:34:15.3966253Z ##[group]Processing PR #151919
2025-08-26T19:34:15.3966590Z [151919] URL: https://github.com/pytorch/pytorch/pull/151919
2025-08-26T19:34:15.3967051Z [151919] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3967458Z [151919] Skipping because PR was updated recently
2025-08-26T19:34:15.3967923Z ##[endgroup]
2025-08-26T19:34:15.3968293Z ##[group]Processing PR #151996
2025-08-26T19:34:15.3968626Z [151996] URL: https://github.com/pytorch/pytorch/pull/151996
2025-08-26T19:34:15.3969028Z [151996] Checking whether to label PR as stale.
2025-08-26T19:34:15.3969392Z [151996] Skipping because PR was updated recently
2025-08-26T19:34:15.3969929Z ##[endgroup]
2025-08-26T19:34:15.3970293Z ##[group]Processing PR #152026
2025-08-26T19:34:15.3970642Z [152026] URL: https://github.com/pytorch/pytorch/pull/152026
2025-08-26T19:34:15.3971082Z [152026] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3971500Z [152026] Skipping because PR was updated recently
2025-08-26T19:34:15.3972070Z ##[endgroup]
2025-08-26T19:34:15.3972440Z ##[group]Processing PR #152080
2025-08-26T19:34:15.3972778Z [152080] URL: https://github.com/pytorch/pytorch/pull/152080
2025-08-26T19:34:15.3973184Z [152080] Checking whether to label PR as stale.
2025-08-26T19:34:15.3973537Z [152080] Skipping because PR was updated recently
2025-08-26T19:34:15.3974002Z ##[endgroup]
2025-08-26T19:34:15.3974366Z ##[group]Processing PR #152094
2025-08-26T19:34:15.3974701Z [152094] URL: https://github.com/pytorch/pytorch/pull/152094
2025-08-26T19:34:15.3975160Z [152094] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3975580Z [152094] Skipping because PR was updated recently
2025-08-26T19:34:15.3976032Z ##[endgroup]
2025-08-26T19:34:15.3976399Z ##[group]Processing PR #152104
2025-08-26T19:34:15.3976751Z [152104] URL: https://github.com/pytorch/pytorch/pull/152104
2025-08-26T19:34:15.3977142Z [152104] Checking whether to label PR as stale.
2025-08-26T19:34:15.3977508Z [152104] Skipping because PR was updated recently
2025-08-26T19:34:15.3977970Z ##[endgroup]
2025-08-26T19:34:15.3978323Z ##[group]Processing PR #152158
2025-08-26T19:34:15.3978671Z [152158] URL: https://github.com/pytorch/pytorch/pull/152158
2025-08-26T19:34:15.3979091Z [152158] Skipping because PR has an exempting label.
2025-08-26T19:34:15.3979550Z ##[endgroup]
2025-08-26T19:34:15.3979967Z ##[group]Processing PR #152159
2025-08-26T19:34:15.3980314Z [152159] URL: https://github.com/pytorch/pytorch/pull/152159
2025-08-26T19:34:15.3980708Z [152159] Checking whether to label PR as stale.
2025-08-26T19:34:15.3981071Z [152159] Skipping because PR was updated recently
2025-08-26T19:34:15.3981537Z ##[endgroup]
2025-08-26T19:34:15.3981902Z ##[group]Processing PR #152215
2025-08-26T19:34:15.3982236Z [152215] URL: https://github.com/pytorch/pytorch/pull/152215
2025-08-26T19:34:15.3982690Z [152215] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3983093Z [152215] Skipping because PR was updated recently
2025-08-26T19:34:15.3983636Z ##[endgroup]
2025-08-26T19:34:15.3984012Z ##[group]Processing PR #152228
2025-08-26T19:34:15.3984345Z [152228] URL: https://github.com/pytorch/pytorch/pull/152228
2025-08-26T19:34:15.3984747Z [152228] Checking whether to label PR as stale.
2025-08-26T19:34:15.3985107Z [152228] Skipping because PR was updated recently
2025-08-26T19:34:15.3985562Z ##[endgroup]
2025-08-26T19:34:15.3985925Z ##[group]Processing PR #152289
2025-08-26T19:34:15.3986274Z [152289] URL: https://github.com/pytorch/pytorch/pull/152289
2025-08-26T19:34:15.3986718Z [152289] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3987136Z [152289] Skipping because PR was updated recently
2025-08-26T19:34:15.3987597Z ##[endgroup]
2025-08-26T19:34:15.3987951Z ##[group]Processing PR #152311
2025-08-26T19:34:15.3988302Z [152311] URL: https://github.com/pytorch/pytorch/pull/152311
2025-08-26T19:34:15.3988928Z [152311] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3989346Z [152311] Skipping because PR was updated recently
2025-08-26T19:34:15.3989820Z ##[endgroup]
2025-08-26T19:34:15.3990190Z ##[group]Processing PR #152348
2025-08-26T19:34:15.3990528Z [152348] URL: https://github.com/pytorch/pytorch/pull/152348
2025-08-26T19:34:15.3990984Z [152348] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3991393Z [152348] Skipping because PR was updated recently
2025-08-26T19:34:15.3991856Z ##[endgroup]
2025-08-26T19:34:15.3992225Z ##[group]Processing PR #152361
2025-08-26T19:34:15.3992574Z [152361] URL: https://github.com/pytorch/pytorch/pull/152361
2025-08-26T19:34:15.3992963Z [152361] Checking whether to label PR as stale.
2025-08-26T19:34:15.3993324Z [152361] Skipping because PR was updated recently
2025-08-26T19:34:15.3993788Z ##[endgroup]
2025-08-26T19:34:15.3994146Z ##[group]Processing PR #152424
2025-08-26T19:34:15.3994493Z [152424] URL: https://github.com/pytorch/pytorch/pull/152424
2025-08-26T19:34:15.3995046Z [152424] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3995454Z [152424] Skipping because PR was updated recently
2025-08-26T19:34:15.3995926Z ##[endgroup]
2025-08-26T19:34:15.3996298Z ##[group]Processing PR #152526
2025-08-26T19:34:15.3996636Z [152526] URL: https://github.com/pytorch/pytorch/pull/152526
2025-08-26T19:34:15.3997102Z [152526] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3997508Z [152526] Skipping because PR was updated recently
2025-08-26T19:34:15.3997971Z ##[endgroup]
2025-08-26T19:34:15.3998338Z ##[group]Processing PR #152603
2025-08-26T19:34:15.3998687Z [152603] URL: https://github.com/pytorch/pytorch/pull/152603
2025-08-26T19:34:15.3999129Z [152603] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.3999544Z [152603] Skipping because PR was updated recently
2025-08-26T19:34:15.4000004Z ##[endgroup]
2025-08-26T19:34:15.4000356Z ##[group]Processing PR #152624
2025-08-26T19:34:15.4000709Z [152624] URL: https://github.com/pytorch/pytorch/pull/152624
2025-08-26T19:34:15.4001115Z [152624] Checking whether to label PR as stale.
2025-08-26T19:34:15.4001462Z [152624] Skipping because PR was updated recently
2025-08-26T19:34:15.4001924Z ##[endgroup]
2025-08-26T19:34:15.4002288Z ##[group]Processing PR #152642
2025-08-26T19:34:15.4002623Z [152642] URL: https://github.com/pytorch/pytorch/pull/152642
2025-08-26T19:34:15.4003136Z [152642] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.4003543Z [152642] Skipping because PR was updated recently
2025-08-26T19:34:15.4004009Z ##[endgroup]
2025-08-26T19:34:15.4004373Z ##[group]Processing PR #152664
2025-08-26T19:34:15.4004720Z [152664] URL: https://github.com/pytorch/pytorch/pull/152664
2025-08-26T19:34:15.4005163Z [152664] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.4005583Z [152664] Skipping because PR was updated recently
2025-08-26T19:34:15.4006049Z ##[endgroup]
2025-08-26T19:34:15.4006402Z ##[group]Processing PR #152734
2025-08-26T19:34:15.4006755Z [152734] URL: https://github.com/pytorch/pytorch/pull/152734
2025-08-26T19:34:15.4007148Z [152734] Checking whether to label PR as stale.
2025-08-26T19:34:15.4007506Z [152734] Skipping because PR was updated recently
2025-08-26T19:34:15.4007966Z ##[endgroup]
2025-08-26T19:34:15.4008331Z ##[group]Processing PR #152739
2025-08-26T19:34:15.4008673Z [152739] URL: https://github.com/pytorch/pytorch/pull/152739
2025-08-26T19:34:15.4009126Z [152739] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.4009533Z [152739] Skipping because PR was updated recently
2025-08-26T19:34:15.4009999Z ##[endgroup]
2025-08-26T19:34:15.4010369Z ##[group]Processing PR #152771
2025-08-26T19:34:15.4010719Z [152771] URL: https://github.com/pytorch/pytorch/pull/152771
2025-08-26T19:34:15.4011110Z [152771] Checking whether to label PR as stale.
2025-08-26T19:34:15.4011469Z [152771] Skipping because PR was updated recently
2025-08-26T19:34:15.4011916Z ##[endgroup]
2025-08-26T19:34:15.4012291Z ##[group]Processing PR #152775
2025-08-26T19:34:15.4012636Z [152775] URL: https://github.com/pytorch/pytorch/pull/152775
2025-08-26T19:34:15.4013078Z [152775] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.4013496Z [152775] Skipping because PR was updated recently
2025-08-26T19:34:15.4013958Z ##[endgroup]
2025-08-26T19:34:15.4014326Z ##[group]Processing PR #152782
2025-08-26T19:34:15.4014663Z [152782] URL: https://github.com/pytorch/pytorch/pull/152782
2025-08-26T19:34:15.4015118Z [152782] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.4015523Z [152782] Skipping because PR was updated recently
2025-08-26T19:34:15.4015981Z ##[endgroup]
2025-08-26T19:34:15.4016343Z ##[group]Processing PR #152806
2025-08-26T19:34:15.4016678Z [152806] URL: https://github.com/pytorch/pytorch/pull/152806
2025-08-26T19:34:15.4017136Z [152806] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:15.4017555Z [152806] Skipping because PR was updated recently
2025-08-26T19:34:15.4018113Z ##[endgroup]
2025-08-26T19:34:15.4018482Z ##[group]Processing PR #152828
2025-08-26T19:34:15.4018832Z [152828] URL: https://github.com/pytorch/pytorch/pull/152828
2025-08-26T19:34:15.4019222Z [152828] Checking whether to label PR as stale.
2025-08-26T19:34:15.4019585Z [152828] Skipping because PR was updated recently
2025-08-26T19:34:15.4020050Z ##[endgroup]
2025-08-26T19:34:16.6674989Z ##[group]Processing PR #152920
2025-08-26T19:34:16.6676470Z [152920] URL: https://github.com/pytorch/pytorch/pull/152920
2025-08-26T19:34:16.6677473Z [152920] Checking whether to label PR as stale.
2025-08-26T19:34:16.6678353Z [152920] Skipping because PR was updated recently
2025-08-26T19:34:16.6679558Z ##[endgroup]
2025-08-26T19:34:16.6704471Z ##[group]Processing PR #152940
2025-08-26T19:34:16.6720185Z [152940] URL: https://github.com/pytorch/pytorch/pull/152940
2025-08-26T19:34:16.6720885Z [152940] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6721510Z [152940] Skipping because PR was updated recently
2025-08-26T19:34:16.6722408Z ##[endgroup]
2025-08-26T19:34:16.6723004Z ##[group]Processing PR #152949
2025-08-26T19:34:16.6723578Z [152949] URL: https://github.com/pytorch/pytorch/pull/152949
2025-08-26T19:34:16.6724259Z [152949] Checking whether to label PR as stale.
2025-08-26T19:34:16.6725271Z [152949] Skipping because PR was updated recently
2025-08-26T19:34:16.6726131Z ##[endgroup]
2025-08-26T19:34:16.6726734Z ##[group]Processing PR #153007
2025-08-26T19:34:16.6727343Z [153007] URL: https://github.com/pytorch/pytorch/pull/153007
2025-08-26T19:34:16.6728139Z [153007] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6728869Z [153007] Skipping because PR was updated recently
2025-08-26T19:34:16.6729706Z ##[endgroup]
2025-08-26T19:34:16.6730350Z ##[group]Processing PR #153037
2025-08-26T19:34:16.6730941Z [153037] URL: https://github.com/pytorch/pytorch/pull/153037
2025-08-26T19:34:16.6731600Z [153037] Checking whether to label PR as stale.
2025-08-26T19:34:16.6732234Z [153037] Skipping because PR was updated recently
2025-08-26T19:34:16.6733025Z ##[endgroup]
2025-08-26T19:34:16.6733687Z ##[group]Processing PR #153038
2025-08-26T19:34:16.6734331Z [153038] URL: https://github.com/pytorch/pytorch/pull/153038
2025-08-26T19:34:16.6735048Z [153038] Checking whether to label PR as stale.
2025-08-26T19:34:16.6735878Z [153038] Skipping because PR was updated recently
2025-08-26T19:34:16.6736722Z ##[endgroup]
2025-08-26T19:34:16.6737280Z ##[group]Processing PR #153048
2025-08-26T19:34:16.6737775Z [153048] URL: https://github.com/pytorch/pytorch/pull/153048
2025-08-26T19:34:16.6738417Z [153048] Checking whether to label PR as stale.
2025-08-26T19:34:16.6739014Z [153048] Skipping because PR was updated recently
2025-08-26T19:34:16.6739808Z ##[endgroup]
2025-08-26T19:34:16.6740537Z ##[group]Processing PR #153097
2025-08-26T19:34:16.6741177Z [153097] URL: https://github.com/pytorch/pytorch/pull/153097
2025-08-26T19:34:16.6741939Z [153097] Checking whether to label PR as stale.
2025-08-26T19:34:16.6742575Z [153097] Skipping because PR was updated recently
2025-08-26T19:34:16.6743460Z ##[endgroup]
2025-08-26T19:34:16.6744130Z ##[group]Processing PR #153173
2025-08-26T19:34:16.6744649Z [153173] URL: https://github.com/pytorch/pytorch/pull/153173
2025-08-26T19:34:16.6745312Z [153173] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6746488Z [153173] Skipping because PR was updated recently
2025-08-26T19:34:16.6747412Z ##[endgroup]
2025-08-26T19:34:16.6748098Z ##[group]Processing PR #153176
2025-08-26T19:34:16.6748654Z [153176] URL: https://github.com/pytorch/pytorch/pull/153176
2025-08-26T19:34:16.6749404Z [153176] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6750061Z [153176] Skipping because PR was updated recently
2025-08-26T19:34:16.6750881Z ##[endgroup]
2025-08-26T19:34:16.6751532Z ##[group]Processing PR #153213
2025-08-26T19:34:16.6752128Z [153213] URL: https://github.com/pytorch/pytorch/pull/153213
2025-08-26T19:34:16.6753122Z [153213] Checking whether to label PR as stale.
2025-08-26T19:34:16.6753742Z [153213] Skipping because PR was updated recently
2025-08-26T19:34:16.6754592Z ##[endgroup]
2025-08-26T19:34:16.6755194Z ##[group]Processing PR #153240
2025-08-26T19:34:16.6755744Z [153240] URL: https://github.com/pytorch/pytorch/pull/153240
2025-08-26T19:34:16.6756414Z [153240] Checking whether to label PR as stale.
2025-08-26T19:34:16.6757003Z [153240] Skipping because PR was updated recently
2025-08-26T19:34:16.6757789Z ##[endgroup]
2025-08-26T19:34:16.6758366Z ##[group]Processing PR #153268
2025-08-26T19:34:16.6758959Z [153268] URL: https://github.com/pytorch/pytorch/pull/153268
2025-08-26T19:34:16.6759596Z [153268] Checking whether to label PR as stale.
2025-08-26T19:34:16.6760227Z [153268] Skipping because PR was updated recently
2025-08-26T19:34:16.6761044Z ##[endgroup]
2025-08-26T19:34:16.6761702Z ##[group]Processing PR #153317
2025-08-26T19:34:16.6762306Z [153317] URL: https://github.com/pytorch/pytorch/pull/153317
2025-08-26T19:34:16.6763044Z [153317] Skipping because PR has an exempting label.
2025-08-26T19:34:16.6763891Z ##[endgroup]
2025-08-26T19:34:16.6764535Z ##[group]Processing PR #153339
2025-08-26T19:34:16.6765160Z [153339] URL: https://github.com/pytorch/pytorch/pull/153339
2025-08-26T19:34:16.6765858Z [153339] Checking whether to label PR as stale.
2025-08-26T19:34:16.6766686Z [153339] Skipping because PR was updated recently
2025-08-26T19:34:16.6767566Z ##[endgroup]
2025-08-26T19:34:16.6768201Z ##[group]Processing PR #153342
2025-08-26T19:34:16.6768785Z [153342] URL: https://github.com/pytorch/pytorch/pull/153342
2025-08-26T19:34:16.6769471Z [153342] Checking whether to label PR as stale.
2025-08-26T19:34:16.6770049Z [153342] Skipping because PR was updated recently
2025-08-26T19:34:16.6771111Z ##[endgroup]
2025-08-26T19:34:16.6771814Z ##[group]Processing PR #153351
2025-08-26T19:34:16.6772744Z [153351] URL: https://github.com/pytorch/pytorch/pull/153351
2025-08-26T19:34:16.6773450Z [153351] Checking whether to label PR as stale.
2025-08-26T19:34:16.6773979Z [153351] Skipping because PR was updated recently
2025-08-26T19:34:16.6774728Z ##[endgroup]
2025-08-26T19:34:16.6775310Z ##[group]Processing PR #153376
2025-08-26T19:34:16.6775838Z [153376] URL: https://github.com/pytorch/pytorch/pull/153376
2025-08-26T19:34:16.6776498Z [153376] Checking whether to label PR as stale.
2025-08-26T19:34:16.6777101Z [153376] Skipping because PR was updated recently
2025-08-26T19:34:16.6777857Z ##[endgroup]
2025-08-26T19:34:16.6778468Z ##[group]Processing PR #153391
2025-08-26T19:34:16.6779024Z [153391] URL: https://github.com/pytorch/pytorch/pull/153391
2025-08-26T19:34:16.6779799Z [153391] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6780489Z [153391] Skipping because PR was updated recently
2025-08-26T19:34:16.6781274Z ##[endgroup]
2025-08-26T19:34:16.6781887Z ##[group]Processing PR #153473
2025-08-26T19:34:16.6782646Z [153473] URL: https://github.com/pytorch/pytorch/pull/153473
2025-08-26T19:34:16.6783451Z [153473] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6784302Z [153473] Skipping because PR was updated recently
2025-08-26T19:34:16.6818539Z ##[endgroup]
2025-08-26T19:34:16.6819254Z ##[group]Processing PR #153493
2025-08-26T19:34:16.6819906Z [153493] URL: https://github.com/pytorch/pytorch/pull/153493
2025-08-26T19:34:16.6820678Z [153493] Checking whether to label PR as stale.
2025-08-26T19:34:16.6821316Z [153493] Skipping because PR was updated recently
2025-08-26T19:34:16.6822133Z ##[endgroup]
2025-08-26T19:34:16.6822797Z ##[group]Processing PR #153539
2025-08-26T19:34:16.6823399Z [153539] URL: https://github.com/pytorch/pytorch/pull/153539
2025-08-26T19:34:16.6824284Z [153539] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6825001Z [153539] Skipping because PR was updated recently
2025-08-26T19:34:16.6825852Z ##[endgroup]
2025-08-26T19:34:16.6826514Z ##[group]Processing PR #153557
2025-08-26T19:34:16.6827321Z [153557] URL: https://github.com/pytorch/pytorch/pull/153557
2025-08-26T19:34:16.6828073Z [153557] Skipping because PR has an exempting label.
2025-08-26T19:34:16.6828943Z ##[endgroup]
2025-08-26T19:34:16.6829613Z ##[group]Processing PR #153623
2025-08-26T19:34:16.6830231Z [153623] URL: https://github.com/pytorch/pytorch/pull/153623
2025-08-26T19:34:16.6831050Z [153623] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6831800Z [153623] Skipping because PR was updated recently
2025-08-26T19:34:16.6832645Z ##[endgroup]
2025-08-26T19:34:16.6833287Z ##[group]Processing PR #153662
2025-08-26T19:34:16.6833915Z [153662] URL: https://github.com/pytorch/pytorch/pull/153662
2025-08-26T19:34:16.6834630Z [153662] Checking whether to label PR as stale.
2025-08-26T19:34:16.6835241Z [153662] Skipping because PR was updated recently
2025-08-26T19:34:16.6836300Z ##[endgroup]
2025-08-26T19:34:16.6836961Z ##[group]Processing PR #153684
2025-08-26T19:34:16.6837610Z [153684] URL: https://github.com/pytorch/pytorch/pull/153684
2025-08-26T19:34:16.6838455Z [153684] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6839216Z [153684] Skipping because PR was updated recently
2025-08-26T19:34:16.6840037Z ##[endgroup]
2025-08-26T19:34:16.6840674Z ##[group]Processing PR #153703
2025-08-26T19:34:16.6841469Z [153703] URL: https://github.com/pytorch/pytorch/pull/153703
2025-08-26T19:34:16.6842291Z [153703] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6843055Z [153703] Skipping because PR was updated recently
2025-08-26T19:34:16.6843922Z ##[endgroup]
2025-08-26T19:34:16.6844588Z ##[group]Processing PR #153781
2025-08-26T19:34:16.6845215Z [153781] URL: https://github.com/pytorch/pytorch/pull/153781
2025-08-26T19:34:16.6845991Z [153781] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6846727Z [153781] Skipping because PR was updated recently
2025-08-26T19:34:16.6847584Z ##[endgroup]
2025-08-26T19:34:16.6848212Z ##[group]Processing PR #153784
2025-08-26T19:34:16.6848797Z [153784] URL: https://github.com/pytorch/pytorch/pull/153784
2025-08-26T19:34:16.6849622Z [153784] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6850356Z [153784] Skipping because PR was updated recently
2025-08-26T19:34:16.6851190Z ##[endgroup]
2025-08-26T19:34:16.6851934Z ##[group]Processing PR #153793
2025-08-26T19:34:16.6852502Z [153793] URL: https://github.com/pytorch/pytorch/pull/153793
2025-08-26T19:34:16.6853270Z [153793] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6853978Z [153793] Skipping because PR was updated recently
2025-08-26T19:34:16.6854823Z ##[endgroup]
2025-08-26T19:34:16.6855463Z ##[group]Processing PR #153796
2025-08-26T19:34:16.6856041Z [153796] URL: https://github.com/pytorch/pytorch/pull/153796
2025-08-26T19:34:16.6856835Z [153796] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6857531Z [153796] Skipping because PR was updated recently
2025-08-26T19:34:16.6858315Z ##[endgroup]
2025-08-26T19:34:16.6858938Z ##[group]Processing PR #153802
2025-08-26T19:34:16.6859520Z [153802] URL: https://github.com/pytorch/pytorch/pull/153802
2025-08-26T19:34:16.6860329Z [153802] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6861059Z [153802] Skipping because PR was updated recently
2025-08-26T19:34:16.6861908Z ##[endgroup]
2025-08-26T19:34:16.6862563Z ##[group]Processing PR #153806
2025-08-26T19:34:16.6863166Z [153806] URL: https://github.com/pytorch/pytorch/pull/153806
2025-08-26T19:34:16.6863994Z [153806] Checking whether to label PR as stale.
2025-08-26T19:34:16.6864642Z [153806] Skipping because PR was updated recently
2025-08-26T19:34:16.6865461Z ##[endgroup]
2025-08-26T19:34:16.6866108Z ##[group]Processing PR #153807
2025-08-26T19:34:16.6866744Z [153807] URL: https://github.com/pytorch/pytorch/pull/153807
2025-08-26T19:34:16.6867460Z [153807] Checking whether to label PR as stale.
2025-08-26T19:34:16.6868334Z [153807] Skipping because PR was updated recently
2025-08-26T19:34:16.6869182Z ##[endgroup]
2025-08-26T19:34:16.6869819Z ##[group]Processing PR #153821
2025-08-26T19:34:16.6870450Z [153821] URL: https://github.com/pytorch/pytorch/pull/153821
2025-08-26T19:34:16.6871280Z [153821] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6872042Z [153821] Skipping because PR was updated recently
2025-08-26T19:34:16.6872907Z ##[endgroup]
2025-08-26T19:34:16.6873544Z ##[group]Processing PR #153824
2025-08-26T19:34:16.6874158Z [153824] URL: https://github.com/pytorch/pytorch/pull/153824
2025-08-26T19:34:16.6874956Z [153824] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6875655Z [153824] Skipping because PR was updated recently
2025-08-26T19:34:16.6876408Z ##[endgroup]
2025-08-26T19:34:16.6876997Z ##[group]Processing PR #153855
2025-08-26T19:34:16.6877551Z [153855] URL: https://github.com/pytorch/pytorch/pull/153855
2025-08-26T19:34:16.6878239Z [153855] Checking whether to label PR as stale.
2025-08-26T19:34:16.6878845Z [153855] Skipping because PR was updated recently
2025-08-26T19:34:16.6879659Z ##[endgroup]
2025-08-26T19:34:16.6880255Z ##[group]Processing PR #153893
2025-08-26T19:34:16.6880846Z [153893] URL: https://github.com/pytorch/pytorch/pull/153893
2025-08-26T19:34:16.6881558Z [153893] Skipping because PR has an exempting label.
2025-08-26T19:34:16.6882527Z ##[endgroup]
2025-08-26T19:34:16.6883123Z ##[group]Processing PR #153920
2025-08-26T19:34:16.6883669Z [153920] URL: https://github.com/pytorch/pytorch/pull/153920
2025-08-26T19:34:16.6884429Z [153920] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6885158Z [153920] Skipping because PR was updated recently
2025-08-26T19:34:16.6885997Z ##[endgroup]
2025-08-26T19:34:16.6886646Z ##[group]Processing PR #153966
2025-08-26T19:34:16.6887257Z [153966] URL: https://github.com/pytorch/pytorch/pull/153966
2025-08-26T19:34:16.6887969Z [153966] Checking whether to label PR as stale.
2025-08-26T19:34:16.6888602Z [153966] Skipping because PR was updated recently
2025-08-26T19:34:16.6889346Z ##[endgroup]
2025-08-26T19:34:16.6889987Z ##[group]Processing PR #154000
2025-08-26T19:34:16.6890579Z [154000] URL: https://github.com/pytorch/pytorch/pull/154000
2025-08-26T19:34:16.6891419Z [154000] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6892196Z [154000] Skipping because PR was updated recently
2025-08-26T19:34:16.6893004Z ##[endgroup]
2025-08-26T19:34:16.6893634Z ##[group]Processing PR #154032
2025-08-26T19:34:16.6894258Z [154032] URL: https://github.com/pytorch/pytorch/pull/154032
2025-08-26T19:34:16.6894989Z [154032] Skipping because PR has an exempting label.
2025-08-26T19:34:16.6895837Z ##[endgroup]
2025-08-26T19:34:16.6896471Z ##[group]Processing PR #154044
2025-08-26T19:34:16.6897012Z [154044] URL: https://github.com/pytorch/pytorch/pull/154044
2025-08-26T19:34:16.6897662Z [154044] Checking whether to label PR as stale.
2025-08-26T19:34:16.6898278Z [154044] Skipping because PR was updated recently
2025-08-26T19:34:16.6899093Z ##[endgroup]
2025-08-26T19:34:16.6899731Z ##[group]Processing PR #154069
2025-08-26T19:34:16.6900323Z [154069] URL: https://github.com/pytorch/pytorch/pull/154069
2025-08-26T19:34:16.6901088Z [154069] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6901850Z [154069] Skipping because PR was updated recently
2025-08-26T19:34:16.6902702Z ##[endgroup]
2025-08-26T19:34:16.6903353Z ##[group]Processing PR #154089
2025-08-26T19:34:16.6904059Z [154089] URL: https://github.com/pytorch/pytorch/pull/154089
2025-08-26T19:34:16.6904886Z [154089] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6905635Z [154089] Skipping because PR was updated recently
2025-08-26T19:34:16.6906471Z ##[endgroup]
2025-08-26T19:34:16.6907138Z ##[group]Processing PR #154113
2025-08-26T19:34:16.6907756Z [154113] URL: https://github.com/pytorch/pytorch/pull/154113
2025-08-26T19:34:16.6908487Z [154113] Checking whether to label PR as stale.
2025-08-26T19:34:16.6909303Z [154113] Skipping because PR was updated recently
2025-08-26T19:34:16.6910141Z ##[endgroup]
2025-08-26T19:34:16.6910807Z ##[group]Processing PR #154115
2025-08-26T19:34:16.6911435Z [154115] URL: https://github.com/pytorch/pytorch/pull/154115
2025-08-26T19:34:16.6912161Z [154115] Checking whether to label PR as stale.
2025-08-26T19:34:16.6912813Z [154115] Skipping because PR was updated recently
2025-08-26T19:34:16.6913637Z ##[endgroup]
2025-08-26T19:34:16.6914263Z ##[group]Processing PR #154139
2025-08-26T19:34:16.6914812Z [154139] URL: https://github.com/pytorch/pytorch/pull/154139
2025-08-26T19:34:16.6915586Z [154139] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6916278Z [154139] Skipping because PR was updated recently
2025-08-26T19:34:16.6917067Z ##[endgroup]
2025-08-26T19:34:16.6917666Z ##[group]Processing PR #154145
2025-08-26T19:34:16.6918216Z [154145] URL: https://github.com/pytorch/pytorch/pull/154145
2025-08-26T19:34:16.6918985Z [154145] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6919665Z [154145] Skipping because PR was updated recently
2025-08-26T19:34:16.6920472Z ##[endgroup]
2025-08-26T19:34:16.6921100Z ##[group]Processing PR #154159
2025-08-26T19:34:16.6921672Z [154159] URL: https://github.com/pytorch/pytorch/pull/154159
2025-08-26T19:34:16.6922641Z [154159] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6923394Z [154159] Skipping because PR was updated recently
2025-08-26T19:34:16.6924222Z ##[endgroup]
2025-08-26T19:34:16.6924861Z ##[group]Processing PR #154170
2025-08-26T19:34:16.6925479Z [154170] URL: https://github.com/pytorch/pytorch/pull/154170
2025-08-26T19:34:16.6926199Z [154170] Checking whether to label PR as stale.
2025-08-26T19:34:16.6926825Z [154170] Skipping because PR was updated recently
2025-08-26T19:34:16.6927669Z ##[endgroup]
2025-08-26T19:34:16.6928272Z ##[group]Processing PR #154203
2025-08-26T19:34:16.6928804Z [154203] URL: https://github.com/pytorch/pytorch/pull/154203
2025-08-26T19:34:16.6929589Z [154203] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6930306Z [154203] Skipping because PR was updated recently
2025-08-26T19:34:16.6931140Z ##[endgroup]
2025-08-26T19:34:16.6931783Z ##[group]Processing PR #154279
2025-08-26T19:34:16.6932462Z [154279] URL: https://github.com/pytorch/pytorch/pull/154279
2025-08-26T19:34:16.6933269Z [154279] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6934025Z [154279] Skipping because PR was updated recently
2025-08-26T19:34:16.6934864Z ##[endgroup]
2025-08-26T19:34:16.6935477Z ##[group]Processing PR #154293
2025-08-26T19:34:16.6955323Z [154293] URL: https://github.com/pytorch/pytorch/pull/154293
2025-08-26T19:34:16.6956047Z [154293] Checking whether to label PR as stale.
2025-08-26T19:34:16.6956588Z [154293] Skipping because PR was updated recently
2025-08-26T19:34:16.6957386Z ##[endgroup]
2025-08-26T19:34:16.6958032Z ##[group]Processing PR #154315
2025-08-26T19:34:16.6958660Z [154315] URL: https://github.com/pytorch/pytorch/pull/154315
2025-08-26T19:34:16.6959499Z [154315] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6960225Z [154315] Skipping because PR was updated recently
2025-08-26T19:34:16.6961094Z ##[endgroup]
2025-08-26T19:34:16.6961756Z ##[group]Processing PR #154330
2025-08-26T19:34:16.6962363Z [154330] URL: https://github.com/pytorch/pytorch/pull/154330
2025-08-26T19:34:16.6963200Z [154330] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6963940Z [154330] Skipping because PR was updated recently
2025-08-26T19:34:16.6964789Z ##[endgroup]
2025-08-26T19:34:16.6965445Z ##[group]Processing PR #154333
2025-08-26T19:34:16.6966060Z [154333] URL: https://github.com/pytorch/pytorch/pull/154333
2025-08-26T19:34:16.6966689Z [154333] Checking whether to label PR as stale.
2025-08-26T19:34:16.6967371Z [154333] Skipping because PR was updated recently
2025-08-26T19:34:16.6968479Z ##[endgroup]
2025-08-26T19:34:16.6969147Z ##[group]Processing PR #154339
2025-08-26T19:34:16.6969772Z [154339] URL: https://github.com/pytorch/pytorch/pull/154339
2025-08-26T19:34:16.6970511Z [154339] Checking whether to label PR as stale.
2025-08-26T19:34:16.6971118Z [154339] Skipping because PR was updated recently
2025-08-26T19:34:16.6971964Z ##[endgroup]
2025-08-26T19:34:16.6972622Z ##[group]Processing PR #154350
2025-08-26T19:34:16.6973264Z [154350] URL: https://github.com/pytorch/pytorch/pull/154350
2025-08-26T19:34:16.6974085Z [154350] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6974851Z [154350] Skipping because PR was updated recently
2025-08-26T19:34:16.6975646Z ##[endgroup]
2025-08-26T19:34:16.6976988Z ##[group]Processing PR #154395
2025-08-26T19:34:16.6977547Z [154395] URL: https://github.com/pytorch/pytorch/pull/154395
2025-08-26T19:34:16.6978115Z [154395] Skipping because PR has an exempting label.
2025-08-26T19:34:16.6978824Z ##[endgroup]
2025-08-26T19:34:16.6979361Z ##[group]Processing PR #154438
2025-08-26T19:34:16.6979824Z [154438] URL: https://github.com/pytorch/pytorch/pull/154438
2025-08-26T19:34:16.6980459Z [154438] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6981151Z [154438] Skipping because PR was updated recently
2025-08-26T19:34:16.6981836Z ##[endgroup]
2025-08-26T19:34:16.6982690Z ##[group]Processing PR #154460
2025-08-26T19:34:16.6983300Z [154460] URL: https://github.com/pytorch/pytorch/pull/154460
2025-08-26T19:34:16.6984105Z [154460] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6984807Z [154460] Skipping because PR was updated recently
2025-08-26T19:34:16.6985777Z ##[endgroup]
2025-08-26T19:34:16.6986358Z ##[group]Processing PR #154468
2025-08-26T19:34:16.6987124Z [154468] URL: https://github.com/pytorch/pytorch/pull/154468
2025-08-26T19:34:16.6987955Z [154468] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6988722Z [154468] Skipping because PR was updated recently
2025-08-26T19:34:16.6989547Z ##[endgroup]
2025-08-26T19:34:16.6989989Z ##[group]Processing PR #154469
2025-08-26T19:34:16.6990338Z [154469] URL: https://github.com/pytorch/pytorch/pull/154469
2025-08-26T19:34:16.6990783Z [154469] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6991206Z [154469] Skipping because PR was updated recently
2025-08-26T19:34:16.6991684Z ##[endgroup]
2025-08-26T19:34:16.6992054Z ##[group]Processing PR #154475
2025-08-26T19:34:16.6992392Z [154475] URL: https://github.com/pytorch/pytorch/pull/154475
2025-08-26T19:34:16.6992792Z [154475] Checking whether to label PR as stale.
2025-08-26T19:34:16.6993145Z [154475] Skipping because PR was updated recently
2025-08-26T19:34:16.6993605Z ##[endgroup]
2025-08-26T19:34:16.6993968Z ##[group]Processing PR #154497
2025-08-26T19:34:16.6994314Z [154497] URL: https://github.com/pytorch/pytorch/pull/154497
2025-08-26T19:34:16.6994756Z [154497] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6995182Z [154497] Skipping because PR was updated recently
2025-08-26T19:34:16.6995693Z ##[endgroup]
2025-08-26T19:34:16.6996189Z ##[group]Processing PR #154505
2025-08-26T19:34:16.6996636Z [154505] URL: https://github.com/pytorch/pytorch/pull/154505
2025-08-26T19:34:16.6997079Z [154505] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6997503Z [154505] Skipping because PR was updated recently
2025-08-26T19:34:16.6998071Z ##[endgroup]
2025-08-26T19:34:16.6998501Z ##[group]Processing PR #154510
2025-08-26T19:34:16.6998837Z [154510] URL: https://github.com/pytorch/pytorch/pull/154510
2025-08-26T19:34:16.6999290Z [154510] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.6999885Z [154510] Skipping because PR was updated recently
2025-08-26T19:34:16.7000387Z ##[endgroup]
2025-08-26T19:34:16.7000762Z ##[group]Processing PR #154511
2025-08-26T19:34:16.7001112Z [154511] URL: https://github.com/pytorch/pytorch/pull/154511
2025-08-26T19:34:16.7001679Z [154511] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7002101Z [154511] Skipping because PR was updated recently
2025-08-26T19:34:16.7002553Z ##[endgroup]
2025-08-26T19:34:16.7002919Z ##[group]Processing PR #154523
2025-08-26T19:34:16.7003267Z [154523] URL: https://github.com/pytorch/pytorch/pull/154523
2025-08-26T19:34:16.7003717Z [154523] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7004134Z [154523] Skipping because PR was updated recently
2025-08-26T19:34:16.7004594Z ##[endgroup]
2025-08-26T19:34:16.7004960Z ##[group]Processing PR #154535
2025-08-26T19:34:16.7005297Z [154535] URL: https://github.com/pytorch/pytorch/pull/154535
2025-08-26T19:34:16.7005753Z [154535] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7006157Z [154535] Skipping because PR was updated recently
2025-08-26T19:34:16.7006619Z ##[endgroup]
2025-08-26T19:34:16.7006978Z ##[group]Processing PR #154543
2025-08-26T19:34:16.7007320Z [154543] URL: https://github.com/pytorch/pytorch/pull/154543
2025-08-26T19:34:16.7007772Z [154543] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7008190Z [154543] Skipping because PR was updated recently
2025-08-26T19:34:16.7008639Z ##[endgroup]
2025-08-26T19:34:16.7009003Z ##[group]Processing PR #154551
2025-08-26T19:34:16.7009482Z [154551] URL: https://github.com/pytorch/pytorch/pull/154551
2025-08-26T19:34:16.7009883Z [154551] Checking whether to label PR as stale.
2025-08-26T19:34:16.7010285Z [154551] Skipping because PR was updated recently
2025-08-26T19:34:16.7010753Z ##[endgroup]
2025-08-26T19:34:16.7011121Z ##[group]Processing PR #154561
2025-08-26T19:34:16.7011456Z [154561] URL: https://github.com/pytorch/pytorch/pull/154561
2025-08-26T19:34:16.7011859Z [154561] Checking whether to label PR as stale.
2025-08-26T19:34:16.7012204Z [154561] Skipping because PR was updated recently
2025-08-26T19:34:16.7012660Z ##[endgroup]
2025-08-26T19:34:16.7013024Z ##[group]Processing PR #154569
2025-08-26T19:34:16.7013364Z [154569] URL: https://github.com/pytorch/pytorch/pull/154569
2025-08-26T19:34:16.7013764Z [154569] Checking whether to label PR as stale.
2025-08-26T19:34:16.7014123Z [154569] Skipping because PR was updated recently
2025-08-26T19:34:16.7014570Z ##[endgroup]
2025-08-26T19:34:16.7014931Z ##[group]Processing PR #154570
2025-08-26T19:34:16.7015283Z [154570] URL: https://github.com/pytorch/pytorch/pull/154570
2025-08-26T19:34:16.7015723Z [154570] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7016145Z [154570] Skipping because PR was updated recently
2025-08-26T19:34:16.7016605Z ##[endgroup]
2025-08-26T19:34:16.7016967Z ##[group]Processing PR #154584
2025-08-26T19:34:16.7017299Z [154584] URL: https://github.com/pytorch/pytorch/pull/154584
2025-08-26T19:34:16.7017698Z [154584] Checking whether to label PR as stale.
2025-08-26T19:34:16.7018042Z [154584] Skipping because PR was updated recently
2025-08-26T19:34:16.7018501Z ##[endgroup]
2025-08-26T19:34:16.7018868Z ##[group]Processing PR #154594
2025-08-26T19:34:16.7019202Z [154594] URL: https://github.com/pytorch/pytorch/pull/154594
2025-08-26T19:34:16.7019655Z [154594] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7020070Z [154594] Skipping because PR was updated recently
2025-08-26T19:34:16.7020518Z ##[endgroup]
2025-08-26T19:34:16.7020880Z ##[group]Processing PR #154595
2025-08-26T19:34:16.7021225Z [154595] URL: https://github.com/pytorch/pytorch/pull/154595
2025-08-26T19:34:16.7021611Z [154595] Checking whether to label PR as stale.
2025-08-26T19:34:16.7021964Z [154595] Skipping because PR was updated recently
2025-08-26T19:34:16.7022419Z ##[endgroup]
2025-08-26T19:34:16.7022766Z ##[group]Processing PR #154601
2025-08-26T19:34:16.7023258Z [154601] URL: https://github.com/pytorch/pytorch/pull/154601
2025-08-26T19:34:16.7023778Z [154601] Checking whether to label PR as stale.
2025-08-26T19:34:16.7024124Z [154601] Skipping because PR was updated recently
2025-08-26T19:34:16.7024684Z ##[endgroup]
2025-08-26T19:34:16.7025045Z ##[group]Processing PR #154609
2025-08-26T19:34:16.7025383Z [154609] URL: https://github.com/pytorch/pytorch/pull/154609
2025-08-26T19:34:16.7025838Z [154609] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7026246Z [154609] Skipping because PR was updated recently
2025-08-26T19:34:16.7026713Z ##[endgroup]
2025-08-26T19:34:16.7027187Z ##[group]Processing PR #154640
2025-08-26T19:34:16.7027535Z [154640] URL: https://github.com/pytorch/pytorch/pull/154640
2025-08-26T19:34:16.7027979Z [154640] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7028395Z [154640] Skipping because PR was updated recently
2025-08-26T19:34:16.7028858Z ##[endgroup]
2025-08-26T19:34:16.7029208Z ##[group]Processing PR #154644
2025-08-26T19:34:16.7029557Z [154644] URL: https://github.com/pytorch/pytorch/pull/154644
2025-08-26T19:34:16.7030011Z [154644] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7030420Z [154644] Skipping because PR was updated recently
2025-08-26T19:34:16.7030883Z ##[endgroup]
2025-08-26T19:34:16.7031245Z ##[group]Processing PR #154658
2025-08-26T19:34:16.7031580Z [154658] URL: https://github.com/pytorch/pytorch/pull/154658
2025-08-26T19:34:16.7032035Z [154658] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7032507Z [154658] Skipping because PR was updated recently
2025-08-26T19:34:16.7032975Z ##[endgroup]
2025-08-26T19:34:16.7033347Z ##[group]Processing PR #154665
2025-08-26T19:34:16.7033706Z [154665] URL: https://github.com/pytorch/pytorch/pull/154665
2025-08-26T19:34:16.7034150Z [154665] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7034571Z [154665] Skipping because PR was updated recently
2025-08-26T19:34:16.7035031Z ##[endgroup]
2025-08-26T19:34:16.7035380Z ##[group]Processing PR #154676
2025-08-26T19:34:16.7035924Z [154676] URL: https://github.com/pytorch/pytorch/pull/154676
2025-08-26T19:34:16.7036369Z [154676] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7036803Z [154676] Skipping because PR was updated recently
2025-08-26T19:34:16.7037343Z ##[endgroup]
2025-08-26T19:34:16.7037777Z ##[group]Processing PR #154677
2025-08-26T19:34:16.7038185Z [154677] URL: https://github.com/pytorch/pytorch/pull/154677
2025-08-26T19:34:16.7038639Z [154677] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7039064Z [154677] Skipping because PR was updated recently
2025-08-26T19:34:16.7039540Z ##[endgroup]
2025-08-26T19:34:16.7039911Z ##[group]Processing PR #154678
2025-08-26T19:34:16.7040250Z [154678] URL: https://github.com/pytorch/pytorch/pull/154678
2025-08-26T19:34:16.7040710Z [154678] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7041120Z [154678] Skipping because PR was updated recently
2025-08-26T19:34:16.7041589Z ##[endgroup]
2025-08-26T19:34:16.7041960Z ##[group]Processing PR #154691
2025-08-26T19:34:16.7042310Z [154691] URL: https://github.com/pytorch/pytorch/pull/154691
2025-08-26T19:34:16.7042755Z [154691] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7043168Z [154691] Skipping because PR was updated recently
2025-08-26T19:34:16.7043621Z ##[endgroup]
2025-08-26T19:34:16.7043980Z ##[group]Processing PR #154694
2025-08-26T19:34:16.7044325Z [154694] URL: https://github.com/pytorch/pytorch/pull/154694
2025-08-26T19:34:16.7044779Z [154694] Checking whether to label PR as stale.
2025-08-26T19:34:16.7045127Z [154694] Skipping because PR was updated recently
2025-08-26T19:34:16.7045588Z ##[endgroup]
2025-08-26T19:34:16.7045953Z ##[group]Processing PR #154699
2025-08-26T19:34:16.7046288Z [154699] URL: https://github.com/pytorch/pytorch/pull/154699
2025-08-26T19:34:16.7046747Z [154699] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7047153Z [154699] Skipping because PR was updated recently
2025-08-26T19:34:16.7047613Z ##[endgroup]
2025-08-26T19:34:16.7047981Z ##[group]Processing PR #154702
2025-08-26T19:34:16.7048454Z [154702] URL: https://github.com/pytorch/pytorch/pull/154702
2025-08-26T19:34:16.7048899Z [154702] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7049318Z [154702] Skipping because PR was updated recently
2025-08-26T19:34:16.7049780Z ##[endgroup]
2025-08-26T19:34:16.7050130Z ##[group]Processing PR #154711
2025-08-26T19:34:16.7050481Z [154711] URL: https://github.com/pytorch/pytorch/pull/154711
2025-08-26T19:34:16.7050883Z [154711] Checking whether to label PR as stale.
2025-08-26T19:34:16.7051231Z [154711] Skipping because PR was updated recently
2025-08-26T19:34:16.7051689Z ##[endgroup]
2025-08-26T19:34:16.7052049Z ##[group]Processing PR #154729
2025-08-26T19:34:16.7052383Z [154729] URL: https://github.com/pytorch/pytorch/pull/154729
2025-08-26T19:34:16.7052840Z [154729] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7053247Z [154729] Skipping because PR was updated recently
2025-08-26T19:34:16.7053709Z ##[endgroup]
2025-08-26T19:34:16.7054075Z ##[group]Processing PR #154733
2025-08-26T19:34:16.7054425Z [154733] URL: https://github.com/pytorch/pytorch/pull/154733
2025-08-26T19:34:16.7054815Z [154733] Checking whether to label PR as stale.
2025-08-26T19:34:16.7055175Z [154733] Skipping because PR was updated recently
2025-08-26T19:34:16.7055638Z ##[endgroup]
2025-08-26T19:34:16.7056254Z ##[group]Processing PR #154744
2025-08-26T19:34:16.7056610Z [154744] URL: https://github.com/pytorch/pytorch/pull/154744
2025-08-26T19:34:16.7057058Z [154744] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7057480Z [154744] Skipping because PR was updated recently
2025-08-26T19:34:16.7057947Z ##[endgroup]
2025-08-26T19:34:16.7058313Z ##[group]Processing PR #154766
2025-08-26T19:34:16.7058647Z [154766] URL: https://github.com/pytorch/pytorch/pull/154766
2025-08-26T19:34:16.7059101Z [154766] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7059504Z [154766] Skipping because PR was updated recently
2025-08-26T19:34:16.7059969Z ##[endgroup]
2025-08-26T19:34:16.7060330Z ##[group]Processing PR #154788
2025-08-26T19:34:16.7060675Z [154788] URL: https://github.com/pytorch/pytorch/pull/154788
2025-08-26T19:34:16.7061117Z [154788] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7061532Z [154788] Skipping because PR was updated recently
2025-08-26T19:34:16.7061998Z ##[endgroup]
2025-08-26T19:34:16.7062345Z ##[group]Processing PR #154790
2025-08-26T19:34:16.7062691Z [154790] URL: https://github.com/pytorch/pytorch/pull/154790
2025-08-26T19:34:16.7063134Z [154790] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:16.7063553Z [154790] Skipping because PR was updated recently
2025-08-26T19:34:16.7064102Z ##[endgroup]
2025-08-26T19:34:16.7064467Z ##[group]Processing PR #154819
2025-08-26T19:34:16.7064799Z [154819] URL: https://github.com/pytorch/pytorch/pull/154819
2025-08-26T19:34:16.7065203Z [154819] Checking whether to label PR as stale.
2025-08-26T19:34:16.7065556Z [154819] Skipping because PR was updated recently
2025-08-26T19:34:16.7066021Z ##[endgroup]
2025-08-26T19:34:17.9389995Z ##[group]Processing PR #154827
2025-08-26T19:34:17.9436840Z [154827] URL: https://github.com/pytorch/pytorch/pull/154827
2025-08-26T19:34:17.9437878Z [154827] Checking whether to label PR as stale.
2025-08-26T19:34:17.9438799Z [154827] Skipping because PR was updated recently
2025-08-26T19:34:17.9440130Z ##[endgroup]
2025-08-26T19:34:17.9463457Z ##[group]Processing PR #154832
2025-08-26T19:34:17.9464413Z [154832] URL: https://github.com/pytorch/pytorch/pull/154832
2025-08-26T19:34:17.9467613Z [154832] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9470801Z [154832] Skipping because PR was updated recently
2025-08-26T19:34:17.9476493Z ##[endgroup]
2025-08-26T19:34:17.9493544Z ##[group]Processing PR #154833
2025-08-26T19:34:17.9496437Z [154833] URL: https://github.com/pytorch/pytorch/pull/154833
2025-08-26T19:34:17.9497310Z [154833] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9498217Z [154833] Skipping because PR was updated recently
2025-08-26T19:34:17.9499009Z ##[endgroup]
2025-08-26T19:34:17.9499567Z ##[group]Processing PR #154834
2025-08-26T19:34:17.9500111Z [154834] URL: https://github.com/pytorch/pytorch/pull/154834
2025-08-26T19:34:17.9500892Z [154834] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9501577Z [154834] Skipping because PR was updated recently
2025-08-26T19:34:17.9502308Z ##[endgroup]
2025-08-26T19:34:17.9502910Z ##[group]Processing PR #154839
2025-08-26T19:34:17.9503490Z [154839] URL: https://github.com/pytorch/pytorch/pull/154839
2025-08-26T19:34:17.9504301Z [154839] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9504990Z [154839] Skipping because PR was updated recently
2025-08-26T19:34:17.9505785Z ##[endgroup]
2025-08-26T19:34:17.9506371Z ##[group]Processing PR #154844
2025-08-26T19:34:17.9506960Z [154844] URL: https://github.com/pytorch/pytorch/pull/154844
2025-08-26T19:34:17.9507775Z [154844] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9508493Z [154844] Skipping because PR was updated recently
2025-08-26T19:34:17.9509286Z ##[endgroup]
2025-08-26T19:34:17.9509912Z ##[group]Processing PR #154922
2025-08-26T19:34:17.9510536Z [154922] URL: https://github.com/pytorch/pytorch/pull/154922
2025-08-26T19:34:17.9511595Z [154922] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9512345Z [154922] Skipping because PR was updated recently
2025-08-26T19:34:17.9513188Z ##[endgroup]
2025-08-26T19:34:17.9513810Z ##[group]Processing PR #154924
2025-08-26T19:34:17.9514437Z [154924] URL: https://github.com/pytorch/pytorch/pull/154924
2025-08-26T19:34:17.9515215Z [154924] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9515908Z [154924] Skipping because PR was updated recently
2025-08-26T19:34:17.9516686Z ##[endgroup]
2025-08-26T19:34:17.9517326Z ##[group]Processing PR #154925
2025-08-26T19:34:17.9517924Z [154925] URL: https://github.com/pytorch/pytorch/pull/154925
2025-08-26T19:34:17.9518711Z [154925] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9519396Z [154925] Skipping because PR was updated recently
2025-08-26T19:34:17.9520178Z ##[endgroup]
2025-08-26T19:34:17.9520758Z ##[group]Processing PR #154926
2025-08-26T19:34:17.9521348Z [154926] URL: https://github.com/pytorch/pytorch/pull/154926
2025-08-26T19:34:17.9522127Z [154926] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9522818Z [154926] Skipping because PR was updated recently
2025-08-26T19:34:17.9523614Z ##[endgroup]
2025-08-26T19:34:17.9524252Z ##[group]Processing PR #154959
2025-08-26T19:34:17.9524861Z [154959] URL: https://github.com/pytorch/pytorch/pull/154959
2025-08-26T19:34:17.9525669Z [154959] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9526407Z [154959] Skipping because PR was updated recently
2025-08-26T19:34:17.9527267Z ##[endgroup]
2025-08-26T19:34:17.9527913Z ##[group]Processing PR #154977
2025-08-26T19:34:17.9528510Z [154977] URL: https://github.com/pytorch/pytorch/pull/154977
2025-08-26T19:34:17.9529223Z [154977] Checking whether to label PR as stale.
2025-08-26T19:34:17.9529859Z [154977] Skipping because PR was updated recently
2025-08-26T19:34:17.9530698Z ##[endgroup]
2025-08-26T19:34:17.9531335Z ##[group]Processing PR #154983
2025-08-26T19:34:17.9531968Z [154983] URL: https://github.com/pytorch/pytorch/pull/154983
2025-08-26T19:34:17.9532693Z [154983] Checking whether to label PR as stale.
2025-08-26T19:34:17.9533332Z [154983] Skipping because PR was updated recently
2025-08-26T19:34:17.9534164Z ##[endgroup]
2025-08-26T19:34:17.9534803Z ##[group]Processing PR #155000
2025-08-26T19:34:17.9535378Z [155000] URL: https://github.com/pytorch/pytorch/pull/155000
2025-08-26T19:34:17.9536417Z [155000] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9537088Z [155000] Skipping because PR was updated recently
2025-08-26T19:34:17.9538144Z ##[endgroup]
2025-08-26T19:34:17.9538768Z ##[group]Processing PR #155012
2025-08-26T19:34:17.9539373Z [155012] URL: https://github.com/pytorch/pytorch/pull/155012
2025-08-26T19:34:17.9540162Z [155012] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9540832Z [155012] Skipping because PR was updated recently
2025-08-26T19:34:17.9541650Z ##[endgroup]
2025-08-26T19:34:17.9542273Z ##[group]Processing PR #155042
2025-08-26T19:34:17.9542845Z [155042] URL: https://github.com/pytorch/pytorch/pull/155042
2025-08-26T19:34:17.9543672Z [155042] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9544376Z [155042] Skipping because PR was updated recently
2025-08-26T19:34:17.9545140Z ##[endgroup]
2025-08-26T19:34:17.9545754Z ##[group]Processing PR #155059
2025-08-26T19:34:17.9546355Z [155059] URL: https://github.com/pytorch/pytorch/pull/155059
2025-08-26T19:34:17.9547153Z [155059] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9547880Z [155059] Skipping because PR was updated recently
2025-08-26T19:34:17.9548693Z ##[endgroup]
2025-08-26T19:34:17.9549280Z ##[group]Processing PR #155061
2025-08-26T19:34:17.9549866Z [155061] URL: https://github.com/pytorch/pytorch/pull/155061
2025-08-26T19:34:17.9550635Z [155061] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9551570Z [155061] Skipping because PR was updated recently
2025-08-26T19:34:17.9552370Z ##[endgroup]
2025-08-26T19:34:17.9552952Z ##[group]Processing PR #155062
2025-08-26T19:34:17.9553504Z [155062] URL: https://github.com/pytorch/pytorch/pull/155062
2025-08-26T19:34:17.9554154Z [155062] Checking whether to label PR as stale.
2025-08-26T19:34:17.9554753Z [155062] Skipping because PR was updated recently
2025-08-26T19:34:17.9555558Z ##[endgroup]
2025-08-26T19:34:17.9556169Z ##[group]Processing PR #155069
2025-08-26T19:34:17.9556765Z [155069] URL: https://github.com/pytorch/pytorch/pull/155069
2025-08-26T19:34:17.9557577Z [155069] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9558312Z [155069] Skipping because PR was updated recently
2025-08-26T19:34:17.9559122Z ##[endgroup]
2025-08-26T19:34:17.9559745Z ##[group]Processing PR #155070
2025-08-26T19:34:17.9560331Z [155070] URL: https://github.com/pytorch/pytorch/pull/155070
2025-08-26T19:34:17.9561048Z [155070] Checking whether to label PR as stale.
2025-08-26T19:34:17.9561655Z [155070] Skipping because PR was updated recently
2025-08-26T19:34:17.9562439Z ##[endgroup]
2025-08-26T19:34:17.9563037Z ##[group]Processing PR #155072
2025-08-26T19:34:17.9563642Z [155072] URL: https://github.com/pytorch/pytorch/pull/155072
2025-08-26T19:34:17.9564325Z [155072] Checking whether to label PR as stale.
2025-08-26T19:34:17.9564939Z [155072] Skipping because PR was updated recently
2025-08-26T19:34:17.9565756Z ##[endgroup]
2025-08-26T19:34:17.9566385Z ##[group]Processing PR #155076
2025-08-26T19:34:17.9566988Z [155076] URL: https://github.com/pytorch/pytorch/pull/155076
2025-08-26T19:34:17.9621369Z [155076] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9622104Z [155076] Skipping because PR was updated recently
2025-08-26T19:34:17.9622977Z ##[endgroup]
2025-08-26T19:34:17.9623709Z ##[group]Processing PR #155082
2025-08-26T19:34:17.9624327Z [155082] URL: https://github.com/pytorch/pytorch/pull/155082
2025-08-26T19:34:17.9625144Z [155082] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9625865Z [155082] Skipping because PR was updated recently
2025-08-26T19:34:17.9626718Z ##[endgroup]
2025-08-26T19:34:17.9627353Z ##[group]Processing PR #155102
2025-08-26T19:34:17.9627996Z [155102] URL: https://github.com/pytorch/pytorch/pull/155102
2025-08-26T19:34:17.9628845Z [155102] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9629621Z [155102] Skipping because PR was updated recently
2025-08-26T19:34:17.9630466Z ##[endgroup]
2025-08-26T19:34:17.9631310Z ##[group]Processing PR #155108
2025-08-26T19:34:17.9631926Z [155108] URL: https://github.com/pytorch/pytorch/pull/155108
2025-08-26T19:34:17.9632629Z [155108] Checking whether to label PR as stale.
2025-08-26T19:34:17.9633287Z [155108] Skipping because PR was updated recently
2025-08-26T19:34:17.9634123Z ##[endgroup]
2025-08-26T19:34:17.9634769Z ##[group]Processing PR #155110
2025-08-26T19:34:17.9635389Z [155110] URL: https://github.com/pytorch/pytorch/pull/155110
2025-08-26T19:34:17.9636600Z [155110] Checking whether to label PR as stale.
2025-08-26T19:34:17.9637218Z [155110] Skipping because PR was updated recently
2025-08-26T19:34:17.9638066Z ##[endgroup]
2025-08-26T19:34:17.9638710Z ##[group]Processing PR #155111
2025-08-26T19:34:17.9639327Z [155111] URL: https://github.com/pytorch/pytorch/pull/155111
2025-08-26T19:34:17.9640064Z [155111] Checking whether to label PR as stale.
2025-08-26T19:34:17.9640719Z [155111] Skipping because PR was updated recently
2025-08-26T19:34:17.9641544Z ##[endgroup]
2025-08-26T19:34:17.9642199Z ##[group]Processing PR #155144
2025-08-26T19:34:17.9642833Z [155144] URL: https://github.com/pytorch/pytorch/pull/155144
2025-08-26T19:34:17.9643652Z [155144] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9644417Z [155144] Skipping because PR was updated recently
2025-08-26T19:34:17.9645263Z ##[endgroup]
2025-08-26T19:34:17.9646058Z ##[group]Processing PR #155152
2025-08-26T19:34:17.9646693Z [155152] URL: https://github.com/pytorch/pytorch/pull/155152
2025-08-26T19:34:17.9647407Z [155152] Checking whether to label PR as stale.
2025-08-26T19:34:17.9648039Z [155152] Skipping because PR was updated recently
2025-08-26T19:34:17.9648890Z ##[endgroup]
2025-08-26T19:34:17.9649528Z ##[group]Processing PR #155153
2025-08-26T19:34:17.9650066Z [155153] URL: https://github.com/pytorch/pytorch/pull/155153
2025-08-26T19:34:17.9650764Z [155153] Checking whether to label PR as stale.
2025-08-26T19:34:17.9651349Z [155153] Skipping because PR was updated recently
2025-08-26T19:34:17.9652179Z ##[endgroup]
2025-08-26T19:34:17.9652817Z ##[group]Processing PR #155154
2025-08-26T19:34:17.9653429Z [155154] URL: https://github.com/pytorch/pytorch/pull/155154
2025-08-26T19:34:17.9654123Z [155154] Checking whether to label PR as stale.
2025-08-26T19:34:17.9654747Z [155154] Skipping because PR was updated recently
2025-08-26T19:34:17.9655577Z ##[endgroup]
2025-08-26T19:34:17.9656217Z ##[group]Processing PR #155165
2025-08-26T19:34:17.9656842Z [155165] URL: https://github.com/pytorch/pytorch/pull/155165
2025-08-26T19:34:17.9657673Z [155165] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9658402Z [155165] Skipping because PR was updated recently
2025-08-26T19:34:17.9659257Z ##[endgroup]
2025-08-26T19:34:17.9659909Z ##[group]Processing PR #155176
2025-08-26T19:34:17.9660524Z [155176] URL: https://github.com/pytorch/pytorch/pull/155176
2025-08-26T19:34:17.9661348Z [155176] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9662088Z [155176] Skipping because PR was updated recently
2025-08-26T19:34:17.9662950Z ##[endgroup]
2025-08-26T19:34:17.9663657Z ##[group]Processing PR #155187
2025-08-26T19:34:17.9664253Z [155187] URL: https://github.com/pytorch/pytorch/pull/155187
2025-08-26T19:34:17.9664979Z [155187] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9665674Z [155187] Skipping because PR was updated recently
2025-08-26T19:34:17.9666500Z ##[endgroup]
2025-08-26T19:34:17.9667104Z ##[group]Processing PR #155206
2025-08-26T19:34:17.9667724Z [155206] URL: https://github.com/pytorch/pytorch/pull/155206
2025-08-26T19:34:17.9668528Z [155206] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9669270Z [155206] Skipping because PR was updated recently
2025-08-26T19:34:17.9670110Z ##[endgroup]
2025-08-26T19:34:17.9670739Z ##[group]Processing PR #155215
2025-08-26T19:34:17.9671349Z [155215] URL: https://github.com/pytorch/pytorch/pull/155215
2025-08-26T19:34:17.9672031Z [155215] Checking whether to label PR as stale.
2025-08-26T19:34:17.9672811Z [155215] Skipping because PR was updated recently
2025-08-26T19:34:17.9673602Z ##[endgroup]
2025-08-26T19:34:17.9674217Z ##[group]Processing PR #155219
2025-08-26T19:34:17.9674802Z [155219] URL: https://github.com/pytorch/pytorch/pull/155219
2025-08-26T19:34:17.9675524Z [155219] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9676217Z [155219] Skipping because PR was updated recently
2025-08-26T19:34:17.9677039Z ##[endgroup]
2025-08-26T19:34:17.9677661Z ##[group]Processing PR #155245
2025-08-26T19:34:17.9678271Z [155245] URL: https://github.com/pytorch/pytorch/pull/155245
2025-08-26T19:34:17.9679043Z [155245] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9679711Z [155245] Skipping because PR was updated recently
2025-08-26T19:34:17.9680499Z ##[endgroup]
2025-08-26T19:34:17.9681124Z ##[group]Processing PR #155264
2025-08-26T19:34:17.9681729Z [155264] URL: https://github.com/pytorch/pytorch/pull/155264
2025-08-26T19:34:17.9682549Z [155264] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9683270Z [155264] Skipping because PR was updated recently
2025-08-26T19:34:17.9684109Z ##[endgroup]
2025-08-26T19:34:17.9684754Z ##[group]Processing PR #155269
2025-08-26T19:34:17.9685372Z [155269] URL: https://github.com/pytorch/pytorch/pull/155269
2025-08-26T19:34:17.9686328Z [155269] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9687046Z [155269] Skipping because PR was updated recently
2025-08-26T19:34:17.9687863Z ##[endgroup]
2025-08-26T19:34:17.9688523Z ##[group]Processing PR #155271
2025-08-26T19:34:17.9689126Z [155271] URL: https://github.com/pytorch/pytorch/pull/155271
2025-08-26T19:34:17.9689938Z [155271] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9690689Z [155271] Skipping because PR was updated recently
2025-08-26T19:34:17.9691544Z ##[endgroup]
2025-08-26T19:34:17.9692180Z ##[group]Processing PR #155287
2025-08-26T19:34:17.9692812Z [155287] URL: https://github.com/pytorch/pytorch/pull/155287
2025-08-26T19:34:17.9693541Z [155287] Checking whether to label PR as stale.
2025-08-26T19:34:17.9694174Z [155287] Skipping because PR was updated recently
2025-08-26T19:34:17.9695023Z ##[endgroup]
2025-08-26T19:34:17.9695668Z ##[group]Processing PR #155310
2025-08-26T19:34:17.9696281Z [155310] URL: https://github.com/pytorch/pytorch/pull/155310
2025-08-26T19:34:17.9697017Z [155310] Checking whether to label PR as stale.
2025-08-26T19:34:17.9697665Z [155310] Skipping because PR was updated recently
2025-08-26T19:34:17.9698499Z ##[endgroup]
2025-08-26T19:34:17.9699160Z ##[group]Processing PR #155338
2025-08-26T19:34:17.9699764Z [155338] URL: https://github.com/pytorch/pytorch/pull/155338
2025-08-26T19:34:17.9700568Z [155338] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9701290Z [155338] Skipping because PR was updated recently
2025-08-26T19:34:17.9702066Z ##[endgroup]
2025-08-26T19:34:17.9702722Z ##[group]Processing PR #155361
2025-08-26T19:34:17.9703313Z [155361] URL: https://github.com/pytorch/pytorch/pull/155361
2025-08-26T19:34:17.9704176Z [155361] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9704900Z [155361] Skipping because PR was updated recently
2025-08-26T19:34:17.9705748Z ##[endgroup]
2025-08-26T19:34:17.9706392Z ##[group]Processing PR #155366
2025-08-26T19:34:17.9707011Z [155366] URL: https://github.com/pytorch/pytorch/pull/155366
2025-08-26T19:34:17.9707835Z [155366] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9708542Z [155366] Skipping because PR was updated recently
2025-08-26T19:34:17.9709364Z ##[endgroup]
2025-08-26T19:34:17.9709983Z ##[group]Processing PR #155370
2025-08-26T19:34:17.9710524Z [155370] URL: https://github.com/pytorch/pytorch/pull/155370
2025-08-26T19:34:17.9711299Z [155370] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9712018Z [155370] Skipping because PR was updated recently
2025-08-26T19:34:17.9713020Z ##[endgroup]
2025-08-26T19:34:17.9713663Z ##[group]Processing PR #155381
2025-08-26T19:34:17.9714265Z [155381] URL: https://github.com/pytorch/pytorch/pull/155381
2025-08-26T19:34:17.9715389Z [155381] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9716144Z [155381] Skipping because PR was updated recently
2025-08-26T19:34:17.9716977Z ##[endgroup]
2025-08-26T19:34:17.9717648Z ##[group]Processing PR #155384
2025-08-26T19:34:17.9718253Z [155384] URL: https://github.com/pytorch/pytorch/pull/155384
2025-08-26T19:34:17.9719040Z [155384] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9719938Z [155384] Skipping because PR was updated recently
2025-08-26T19:34:17.9720758Z ##[endgroup]
2025-08-26T19:34:17.9721399Z ##[group]Processing PR #155390
2025-08-26T19:34:17.9722032Z [155390] URL: https://github.com/pytorch/pytorch/pull/155390
2025-08-26T19:34:17.9722754Z [155390] Checking whether to label PR as stale.
2025-08-26T19:34:17.9723400Z [155390] Skipping because PR was updated recently
2025-08-26T19:34:17.9724211Z ##[endgroup]
2025-08-26T19:34:17.9724844Z ##[group]Processing PR #155420
2025-08-26T19:34:17.9725370Z [155420] URL: https://github.com/pytorch/pytorch/pull/155420
2025-08-26T19:34:17.9726143Z [155420] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9727031Z [155420] Skipping because PR was updated recently
2025-08-26T19:34:17.9727868Z ##[endgroup]
2025-08-26T19:34:17.9728511Z ##[group]Processing PR #155422
2025-08-26T19:34:17.9729082Z [155422] URL: https://github.com/pytorch/pytorch/pull/155422
2025-08-26T19:34:17.9729720Z [155422] Checking whether to label PR as stale.
2025-08-26T19:34:17.9730329Z [155422] Skipping because PR was updated recently
2025-08-26T19:34:17.9730878Z ##[endgroup]
2025-08-26T19:34:17.9731262Z ##[group]Processing PR #155424
2025-08-26T19:34:17.9731617Z [155424] URL: https://github.com/pytorch/pytorch/pull/155424
2025-08-26T19:34:17.9732065Z [155424] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9732493Z [155424] Skipping because PR was updated recently
2025-08-26T19:34:17.9732962Z ##[endgroup]
2025-08-26T19:34:17.9733330Z ##[group]Processing PR #155427
2025-08-26T19:34:17.9733669Z [155427] URL: https://github.com/pytorch/pytorch/pull/155427
2025-08-26T19:34:17.9734129Z [155427] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9734536Z [155427] Skipping because PR was updated recently
2025-08-26T19:34:17.9734998Z ##[endgroup]
2025-08-26T19:34:17.9735361Z ##[group]Processing PR #155428
2025-08-26T19:34:17.9736002Z [155428] URL: https://github.com/pytorch/pytorch/pull/155428
2025-08-26T19:34:17.9736543Z [155428] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9736963Z [155428] Skipping because PR was updated recently
2025-08-26T19:34:17.9737419Z ##[endgroup]
2025-08-26T19:34:17.9737786Z ##[group]Processing PR #155432
2025-08-26T19:34:17.9738132Z [155432] URL: https://github.com/pytorch/pytorch/pull/155432
2025-08-26T19:34:17.9738577Z [155432] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9738993Z [155432] Skipping because PR was updated recently
2025-08-26T19:34:17.9739455Z ##[endgroup]
2025-08-26T19:34:17.9739803Z ##[group]Processing PR #155438
2025-08-26T19:34:17.9740152Z [155438] URL: https://github.com/pytorch/pytorch/pull/155438
2025-08-26T19:34:17.9740615Z [155438] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9741021Z [155438] Skipping because PR was updated recently
2025-08-26T19:34:17.9741484Z ##[endgroup]
2025-08-26T19:34:17.9741855Z ##[group]Processing PR #155440
2025-08-26T19:34:17.9742191Z [155440] URL: https://github.com/pytorch/pytorch/pull/155440
2025-08-26T19:34:17.9742596Z [155440] Checking whether to label PR as stale.
2025-08-26T19:34:17.9742945Z [155440] Skipping because PR was updated recently
2025-08-26T19:34:17.9743406Z ##[endgroup]
2025-08-26T19:34:17.9743828Z ##[group]Processing PR #155450
2025-08-26T19:34:17.9744342Z [155450] URL: https://github.com/pytorch/pytorch/pull/155450
2025-08-26T19:34:17.9744786Z [155450] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9745203Z [155450] Skipping because PR was updated recently
2025-08-26T19:34:17.9745667Z ##[endgroup]
2025-08-26T19:34:17.9746017Z ##[group]Processing PR #155454
2025-08-26T19:34:17.9746374Z [155454] URL: https://github.com/pytorch/pytorch/pull/155454
2025-08-26T19:34:17.9746834Z [155454] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9747242Z [155454] Skipping because PR was updated recently
2025-08-26T19:34:17.9747704Z ##[endgroup]
2025-08-26T19:34:17.9748067Z ##[group]Processing PR #155456
2025-08-26T19:34:17.9748402Z [155456] URL: https://github.com/pytorch/pytorch/pull/155456
2025-08-26T19:34:17.9748856Z [155456] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9749257Z [155456] Skipping because PR was updated recently
2025-08-26T19:34:17.9749718Z ##[endgroup]
2025-08-26T19:34:17.9750083Z ##[group]Processing PR #155487
2025-08-26T19:34:17.9750430Z [155487] URL: https://github.com/pytorch/pytorch/pull/155487
2025-08-26T19:34:17.9750873Z [155487] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9751290Z [155487] Skipping because PR was updated recently
2025-08-26T19:34:17.9751750Z ##[endgroup]
2025-08-26T19:34:17.9752178Z ##[group]Processing PR #155501
2025-08-26T19:34:17.9752526Z [155501] URL: https://github.com/pytorch/pytorch/pull/155501
2025-08-26T19:34:17.9752929Z [155501] Checking whether to label PR as stale.
2025-08-26T19:34:17.9753281Z [155501] Skipping because PR was updated recently
2025-08-26T19:34:17.9753743Z ##[endgroup]
2025-08-26T19:34:17.9754106Z ##[group]Processing PR #155502
2025-08-26T19:34:17.9754441Z [155502] URL: https://github.com/pytorch/pytorch/pull/155502
2025-08-26T19:34:17.9754837Z [155502] Checking whether to label PR as stale.
2025-08-26T19:34:17.9755184Z [155502] Skipping because PR was updated recently
2025-08-26T19:34:17.9755646Z ##[endgroup]
2025-08-26T19:34:17.9756006Z ##[group]Processing PR #155503
2025-08-26T19:34:17.9756350Z [155503] URL: https://github.com/pytorch/pytorch/pull/155503
2025-08-26T19:34:17.9756753Z [155503] Checking whether to label PR as stale.
2025-08-26T19:34:17.9757113Z [155503] Skipping because PR was updated recently
2025-08-26T19:34:17.9757563Z ##[endgroup]
2025-08-26T19:34:17.9757933Z ##[group]Processing PR #155505
2025-08-26T19:34:17.9758283Z [155505] URL: https://github.com/pytorch/pytorch/pull/155505
2025-08-26T19:34:17.9758727Z [155505] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9759149Z [155505] Skipping because PR was updated recently
2025-08-26T19:34:17.9759618Z ##[endgroup]
2025-08-26T19:34:17.9759977Z ##[group]Processing PR #155542
2025-08-26T19:34:17.9760330Z [155542] URL: https://github.com/pytorch/pytorch/pull/155542
2025-08-26T19:34:17.9760734Z [155542] Checking whether to label PR as stale.
2025-08-26T19:34:17.9761084Z [155542] Skipping because PR was updated recently
2025-08-26T19:34:17.9761558Z ##[endgroup]
2025-08-26T19:34:17.9761923Z ##[group]Processing PR #155548
2025-08-26T19:34:17.9762261Z [155548] URL: https://github.com/pytorch/pytorch/pull/155548
2025-08-26T19:34:17.9762665Z [155548] Checking whether to label PR as stale.
2025-08-26T19:34:17.9763010Z [155548] Skipping because PR was updated recently
2025-08-26T19:34:17.9763471Z ##[endgroup]
2025-08-26T19:34:17.9763832Z ##[group]Processing PR #155554
2025-08-26T19:34:17.9764178Z [155554] URL: https://github.com/pytorch/pytorch/pull/155554
2025-08-26T19:34:17.9764562Z [155554] Checking whether to label PR as stale.
2025-08-26T19:34:17.9764914Z [155554] Skipping because PR was updated recently
2025-08-26T19:34:17.9765369Z ##[endgroup]
2025-08-26T19:34:17.9765714Z ##[group]Processing PR #155557
2025-08-26T19:34:17.9766061Z [155557] URL: https://github.com/pytorch/pytorch/pull/155557
2025-08-26T19:34:17.9766458Z [155557] Checking whether to label PR as stale.
2025-08-26T19:34:17.9766873Z [155557] Skipping because PR was updated recently
2025-08-26T19:34:17.9767329Z ##[endgroup]
2025-08-26T19:34:17.9767696Z ##[group]Processing PR #155563
2025-08-26T19:34:17.9768034Z [155563] URL: https://github.com/pytorch/pytorch/pull/155563
2025-08-26T19:34:17.9768437Z [155563] Checking whether to label PR as stale.
2025-08-26T19:34:17.9768780Z [155563] Skipping because PR was updated recently
2025-08-26T19:34:17.9769247Z ##[endgroup]
2025-08-26T19:34:17.9769610Z ##[group]Processing PR #155594
2025-08-26T19:34:17.9769960Z [155594] URL: https://github.com/pytorch/pytorch/pull/155594
2025-08-26T19:34:17.9770403Z [155594] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9770819Z [155594] Skipping because PR was updated recently
2025-08-26T19:34:17.9771276Z ##[endgroup]
2025-08-26T19:34:17.9771623Z ##[group]Processing PR #155600
2025-08-26T19:34:17.9771970Z [155600] URL: https://github.com/pytorch/pytorch/pull/155600
2025-08-26T19:34:17.9772411Z [155600] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9772836Z [155600] Skipping because PR was updated recently
2025-08-26T19:34:17.9773303Z ##[endgroup]
2025-08-26T19:34:17.9773666Z ##[group]Processing PR #155602
2025-08-26T19:34:17.9774002Z [155602] URL: https://github.com/pytorch/pytorch/pull/155602
2025-08-26T19:34:17.9774455Z [155602] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9774921Z [155602] Skipping because PR was updated recently
2025-08-26T19:34:17.9775390Z ##[endgroup]
2025-08-26T19:34:17.9775756Z ##[group]Processing PR #155606
2025-08-26T19:34:17.9776107Z [155606] URL: https://github.com/pytorch/pytorch/pull/155606
2025-08-26T19:34:17.9776499Z [155606] Checking whether to label PR as stale.
2025-08-26T19:34:17.9776861Z [155606] Skipping because PR was updated recently
2025-08-26T19:34:17.9777319Z ##[endgroup]
2025-08-26T19:34:17.9777667Z ##[group]Processing PR #155608
2025-08-26T19:34:17.9778014Z [155608] URL: https://github.com/pytorch/pytorch/pull/155608
2025-08-26T19:34:17.9778405Z [155608] Checking whether to label PR as stale.
2025-08-26T19:34:17.9778762Z [155608] Skipping because PR was updated recently
2025-08-26T19:34:17.9779220Z ##[endgroup]
2025-08-26T19:34:17.9779579Z ##[group]Processing PR #155639
2025-08-26T19:34:17.9779912Z [155639] URL: https://github.com/pytorch/pytorch/pull/155639
2025-08-26T19:34:17.9780366Z [155639] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9780773Z [155639] Skipping because PR was updated recently
2025-08-26T19:34:17.9781230Z ##[endgroup]
2025-08-26T19:34:17.9781587Z ##[group]Processing PR #155643
2025-08-26T19:34:17.9781930Z [155643] URL: https://github.com/pytorch/pytorch/pull/155643
2025-08-26T19:34:17.9782369Z [155643] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9782790Z [155643] Skipping because PR was updated recently
2025-08-26T19:34:17.9783239Z ##[endgroup]
2025-08-26T19:34:17.9783667Z ##[group]Processing PR #155645
2025-08-26T19:34:17.9784025Z [155645] URL: https://github.com/pytorch/pytorch/pull/155645
2025-08-26T19:34:17.9784466Z [155645] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9784881Z [155645] Skipping because PR was updated recently
2025-08-26T19:34:17.9785348Z ##[endgroup]
2025-08-26T19:34:17.9785713Z ##[group]Processing PR #155654
2025-08-26T19:34:17.9786050Z [155654] URL: https://github.com/pytorch/pytorch/pull/155654
2025-08-26T19:34:17.9786450Z [155654] Checking whether to label PR as stale.
2025-08-26T19:34:17.9786797Z [155654] Skipping because PR was updated recently
2025-08-26T19:34:17.9787258Z ##[endgroup]
2025-08-26T19:34:17.9787619Z ##[group]Processing PR #155658
2025-08-26T19:34:17.9787951Z [155658] URL: https://github.com/pytorch/pytorch/pull/155658
2025-08-26T19:34:17.9788404Z [155658] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9788824Z [155658] Skipping because PR was updated recently
2025-08-26T19:34:17.9789274Z ##[endgroup]
2025-08-26T19:34:17.9789735Z ##[group]Processing PR #155665
2025-08-26T19:34:17.9790088Z [155665] URL: https://github.com/pytorch/pytorch/pull/155665
2025-08-26T19:34:17.9790480Z [155665] Checking whether to label PR as stale.
2025-08-26T19:34:17.9790844Z [155665] Skipping because PR was updated recently
2025-08-26T19:34:17.9791310Z ##[endgroup]
2025-08-26T19:34:17.9791676Z ##[group]Processing PR #155672
2025-08-26T19:34:17.9792016Z [155672] URL: https://github.com/pytorch/pytorch/pull/155672
2025-08-26T19:34:17.9792432Z [155672] Skipping because PR has an exempting label.
2025-08-26T19:34:17.9792888Z ##[endgroup]
2025-08-26T19:34:17.9793249Z ##[group]Processing PR #155685
2025-08-26T19:34:17.9793595Z [155685] URL: https://github.com/pytorch/pytorch/pull/155685
2025-08-26T19:34:17.9794037Z [155685] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9794451Z [155685] Skipping because PR was updated recently
2025-08-26T19:34:17.9794911Z ##[endgroup]
2025-08-26T19:34:17.9795271Z ##[group]Processing PR #155686
2025-08-26T19:34:17.9795607Z [155686] URL: https://github.com/pytorch/pytorch/pull/155686
2025-08-26T19:34:17.9796063Z [155686] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9796465Z [155686] Skipping because PR was updated recently
2025-08-26T19:34:17.9796921Z ##[endgroup]
2025-08-26T19:34:17.9797279Z ##[group]Processing PR #155694
2025-08-26T19:34:17.9797690Z [155694] URL: https://github.com/pytorch/pytorch/pull/155694
2025-08-26T19:34:17.9798146Z [155694] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9798572Z [155694] Skipping because PR was updated recently
2025-08-26T19:34:17.9799020Z ##[endgroup]
2025-08-26T19:34:17.9799381Z ##[group]Processing PR #155712
2025-08-26T19:34:17.9799729Z [155712] URL: https://github.com/pytorch/pytorch/pull/155712
2025-08-26T19:34:17.9800115Z [155712] Checking whether to label PR as stale.
2025-08-26T19:34:17.9800473Z [155712] Skipping because PR was updated recently
2025-08-26T19:34:17.9800928Z ##[endgroup]
2025-08-26T19:34:17.9801289Z ##[group]Processing PR #155713
2025-08-26T19:34:17.9801620Z [155713] URL: https://github.com/pytorch/pytorch/pull/155713
2025-08-26T19:34:17.9802076Z [155713] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9802485Z [155713] Skipping because PR was updated recently
2025-08-26T19:34:17.9802950Z ##[endgroup]
2025-08-26T19:34:17.9803317Z ##[group]Processing PR #155716
2025-08-26T19:34:17.9803683Z [155716] URL: https://github.com/pytorch/pytorch/pull/155716
2025-08-26T19:34:17.9804203Z [155716] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9804618Z [155716] Skipping because PR was updated recently
2025-08-26T19:34:17.9805068Z ##[endgroup]
2025-08-26T19:34:17.9805429Z ##[group]Processing PR #155726
2025-08-26T19:34:17.9805777Z [155726] URL: https://github.com/pytorch/pytorch/pull/155726
2025-08-26T19:34:17.9806219Z [155726] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9806636Z [155726] Skipping because PR was updated recently
2025-08-26T19:34:17.9807103Z ##[endgroup]
2025-08-26T19:34:17.9807464Z ##[group]Processing PR #155728
2025-08-26T19:34:17.9807798Z [155728] URL: https://github.com/pytorch/pytorch/pull/155728
2025-08-26T19:34:17.9808254Z [155728] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9808659Z [155728] Skipping because PR was updated recently
2025-08-26T19:34:17.9809126Z ##[endgroup]
2025-08-26T19:34:17.9809485Z ##[group]Processing PR #155730
2025-08-26T19:34:17.9809817Z [155730] URL: https://github.com/pytorch/pytorch/pull/155730
2025-08-26T19:34:17.9810268Z [155730] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9810684Z [155730] Skipping because PR was updated recently
2025-08-26T19:34:17.9811130Z ##[endgroup]
2025-08-26T19:34:17.9811493Z ##[group]Processing PR #155731
2025-08-26T19:34:17.9811837Z [155731] URL: https://github.com/pytorch/pytorch/pull/155731
2025-08-26T19:34:17.9812222Z [155731] Checking whether to label PR as stale.
2025-08-26T19:34:17.9812663Z [155731] Skipping because PR was updated recently
2025-08-26T19:34:17.9813130Z ##[endgroup]
2025-08-26T19:34:17.9813481Z ##[group]Processing PR #155734
2025-08-26T19:34:17.9813830Z [155734] URL: https://github.com/pytorch/pytorch/pull/155734
2025-08-26T19:34:17.9814230Z [155734] Checking whether to label PR as stale.
2025-08-26T19:34:17.9814578Z [155734] Skipping because PR was updated recently
2025-08-26T19:34:17.9815034Z ##[endgroup]
2025-08-26T19:34:17.9815392Z ##[group]Processing PR #155741
2025-08-26T19:34:17.9815870Z [155741] URL: https://github.com/pytorch/pytorch/pull/155741
2025-08-26T19:34:17.9816346Z [155741] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9816750Z [155741] Skipping because PR was updated recently
2025-08-26T19:34:17.9817218Z ##[endgroup]
2025-08-26T19:34:17.9817584Z ##[group]Processing PR #155749
2025-08-26T19:34:17.9817930Z [155749] URL: https://github.com/pytorch/pytorch/pull/155749
2025-08-26T19:34:17.9818374Z [155749] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9818793Z [155749] Skipping because PR was updated recently
2025-08-26T19:34:17.9819261Z ##[endgroup]
2025-08-26T19:34:17.9819615Z ##[group]Processing PR #155756
2025-08-26T19:34:17.9819971Z [155756] URL: https://github.com/pytorch/pytorch/pull/155756
2025-08-26T19:34:17.9820492Z [155756] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9820898Z [155756] Skipping because PR was updated recently
2025-08-26T19:34:17.9821358Z ##[endgroup]
2025-08-26T19:34:17.9821722Z ##[group]Processing PR #155784
2025-08-26T19:34:17.9822055Z [155784] URL: https://github.com/pytorch/pytorch/pull/155784
2025-08-26T19:34:17.9822512Z [155784] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9822916Z [155784] Skipping because PR was updated recently
2025-08-26T19:34:17.9823376Z ##[endgroup]
2025-08-26T19:34:17.9823873Z ##[group]Processing PR #155802
2025-08-26T19:34:17.9824227Z [155802] URL: https://github.com/pytorch/pytorch/pull/155802
2025-08-26T19:34:17.9824677Z [155802] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:17.9825100Z [155802] Skipping because PR was updated recently
2025-08-26T19:34:17.9825568Z ##[endgroup]
2025-08-26T19:34:18.9609713Z ##[group]Processing PR #155804
2025-08-26T19:34:18.9610852Z [155804] URL: https://github.com/pytorch/pytorch/pull/155804
2025-08-26T19:34:18.9611950Z [155804] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9612933Z [155804] Skipping because PR was updated recently
2025-08-26T19:34:18.9614085Z ##[endgroup]
2025-08-26T19:34:18.9614960Z ##[group]Processing PR #155805
2025-08-26T19:34:18.9615777Z [155805] URL: https://github.com/pytorch/pytorch/pull/155805
2025-08-26T19:34:18.9616817Z [155805] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9617788Z [155805] Skipping because PR was updated recently
2025-08-26T19:34:18.9618782Z ##[endgroup]
2025-08-26T19:34:18.9619437Z ##[group]Processing PR #155807
2025-08-26T19:34:18.9620074Z [155807] URL: https://github.com/pytorch/pytorch/pull/155807
2025-08-26T19:34:18.9620928Z [155807] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9621693Z [155807] Skipping because PR was updated recently
2025-08-26T19:34:18.9622491Z ##[endgroup]
2025-08-26T19:34:18.9623146Z ##[group]Processing PR #155810
2025-08-26T19:34:18.9623887Z [155810] URL: https://github.com/pytorch/pytorch/pull/155810
2025-08-26T19:34:18.9624727Z [155810] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9625452Z [155810] Skipping because PR was updated recently
2025-08-26T19:34:18.9626313Z ##[endgroup]
2025-08-26T19:34:18.9626995Z ##[group]Processing PR #155843
2025-08-26T19:34:18.9627624Z [155843] URL: https://github.com/pytorch/pytorch/pull/155843
2025-08-26T19:34:18.9628402Z [155843] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9629162Z [155843] Skipping because PR was updated recently
2025-08-26T19:34:18.9630690Z ##[endgroup]
2025-08-26T19:34:18.9631305Z ##[group]Processing PR #155845
2025-08-26T19:34:18.9631946Z [155845] URL: https://github.com/pytorch/pytorch/pull/155845
2025-08-26T19:34:18.9632779Z [155845] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9633536Z [155845] Skipping because PR was updated recently
2025-08-26T19:34:18.9634401Z ##[endgroup]
2025-08-26T19:34:18.9635052Z ##[group]Processing PR #155846
2025-08-26T19:34:18.9637079Z [155846] URL: https://github.com/pytorch/pytorch/pull/155846
2025-08-26T19:34:18.9637840Z [155846] Checking whether to label PR as stale.
2025-08-26T19:34:18.9638512Z [155846] Skipping because PR was updated recently
2025-08-26T19:34:18.9639347Z ##[endgroup]
2025-08-26T19:34:18.9640029Z ##[group]Processing PR #155851
2025-08-26T19:34:18.9640657Z [155851] URL: https://github.com/pytorch/pytorch/pull/155851
2025-08-26T19:34:18.9641510Z [155851] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9642222Z [155851] Skipping because PR was updated recently
2025-08-26T19:34:18.9643084Z ##[endgroup]
2025-08-26T19:34:18.9643749Z ##[group]Processing PR #155854
2025-08-26T19:34:18.9644379Z [155854] URL: https://github.com/pytorch/pytorch/pull/155854
2025-08-26T19:34:18.9645138Z [155854] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9646176Z [155854] Skipping because PR was updated recently
2025-08-26T19:34:18.9647041Z ##[endgroup]
2025-08-26T19:34:18.9647729Z ##[group]Processing PR #155855
2025-08-26T19:34:18.9648382Z [155855] URL: https://github.com/pytorch/pytorch/pull/155855
2025-08-26T19:34:18.9649220Z [155855] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9649974Z [155855] Skipping because PR was updated recently
2025-08-26T19:34:18.9650765Z ##[endgroup]
2025-08-26T19:34:18.9651438Z ##[group]Processing PR #155857
2025-08-26T19:34:18.9652071Z [155857] URL: https://github.com/pytorch/pytorch/pull/155857
2025-08-26T19:34:18.9652936Z [155857] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9653672Z [155857] Skipping because PR was updated recently
2025-08-26T19:34:18.9656046Z ##[endgroup]
2025-08-26T19:34:18.9656973Z ##[group]Processing PR #155866
2025-08-26T19:34:18.9657730Z [155866] URL: https://github.com/pytorch/pytorch/pull/155866
2025-08-26T19:34:18.9658677Z [155866] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9659504Z [155866] Skipping because PR was updated recently
2025-08-26T19:34:18.9660459Z ##[endgroup]
2025-08-26T19:34:18.9661327Z ##[group]Processing PR #155883
2025-08-26T19:34:18.9662051Z [155883] URL: https://github.com/pytorch/pytorch/pull/155883
2025-08-26T19:34:18.9708753Z [155883] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9709572Z [155883] Skipping because PR was updated recently
2025-08-26T19:34:18.9710436Z ##[endgroup]
2025-08-26T19:34:18.9711086Z ##[group]Processing PR #155902
2025-08-26T19:34:18.9711726Z [155902] URL: https://github.com/pytorch/pytorch/pull/155902
2025-08-26T19:34:18.9712566Z [155902] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9713339Z [155902] Skipping because PR was updated recently
2025-08-26T19:34:18.9714191Z ##[endgroup]
2025-08-26T19:34:18.9714856Z ##[group]Processing PR #155910
2025-08-26T19:34:18.9715481Z [155910] URL: https://github.com/pytorch/pytorch/pull/155910
2025-08-26T19:34:18.9716311Z [155910] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9717061Z [155910] Skipping because PR was updated recently
2025-08-26T19:34:18.9717899Z ##[endgroup]
2025-08-26T19:34:18.9718560Z ##[group]Processing PR #155922
2025-08-26T19:34:18.9719203Z [155922] URL: https://github.com/pytorch/pytorch/pull/155922
2025-08-26T19:34:18.9720010Z [155922] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9720721Z [155922] Skipping because PR was updated recently
2025-08-26T19:34:18.9722542Z ##[endgroup]
2025-08-26T19:34:18.9724702Z ##[group]Processing PR #155923
2025-08-26T19:34:18.9732573Z [155923] URL: https://github.com/pytorch/pytorch/pull/155923
2025-08-26T19:34:18.9733333Z [155923] Checking whether to label PR as stale.
2025-08-26T19:34:18.9733998Z [155923] Skipping because PR was updated recently
2025-08-26T19:34:18.9734874Z ##[endgroup]
2025-08-26T19:34:18.9735765Z ##[group]Processing PR #155928
2025-08-26T19:34:18.9736428Z [155928] URL: https://github.com/pytorch/pytorch/pull/155928
2025-08-26T19:34:18.9737165Z [155928] Checking whether to label PR as stale.
2025-08-26T19:34:18.9738805Z [155928] Skipping because PR was updated recently
2025-08-26T19:34:18.9739675Z ##[endgroup]
2025-08-26T19:34:18.9740340Z ##[group]Processing PR #155938
2025-08-26T19:34:18.9740967Z [155938] URL: https://github.com/pytorch/pytorch/pull/155938
2025-08-26T19:34:18.9741695Z [155938] Checking whether to label PR as stale.
2025-08-26T19:34:18.9742365Z [155938] Skipping because PR was updated recently
2025-08-26T19:34:18.9743210Z ##[endgroup]
2025-08-26T19:34:18.9743940Z ##[group]Processing PR #155948
2025-08-26T19:34:18.9744564Z [155948] URL: https://github.com/pytorch/pytorch/pull/155948
2025-08-26T19:34:18.9745417Z [155948] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9746166Z [155948] Skipping because PR was updated recently
2025-08-26T19:34:18.9747048Z ##[endgroup]
2025-08-26T19:34:18.9747979Z ##[group]Processing PR #155950
2025-08-26T19:34:18.9748603Z [155950] URL: https://github.com/pytorch/pytorch/pull/155950
2025-08-26T19:34:18.9749458Z [155950] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9750229Z [155950] Skipping because PR was updated recently
2025-08-26T19:34:18.9751081Z ##[endgroup]
2025-08-26T19:34:18.9751716Z ##[group]Processing PR #155951
2025-08-26T19:34:18.9752361Z [155951] URL: https://github.com/pytorch/pytorch/pull/155951
2025-08-26T19:34:18.9753223Z [155951] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9753988Z [155951] Skipping because PR was updated recently
2025-08-26T19:34:18.9754859Z ##[endgroup]
2025-08-26T19:34:18.9755526Z ##[group]Processing PR #155956
2025-08-26T19:34:18.9756157Z [155956] URL: https://github.com/pytorch/pytorch/pull/155956
2025-08-26T19:34:18.9756985Z [155956] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9757699Z [155956] Skipping because PR was updated recently
2025-08-26T19:34:18.9758532Z ##[endgroup]
2025-08-26T19:34:18.9764478Z ##[group]Processing PR #155962
2025-08-26T19:34:18.9765225Z [155962] URL: https://github.com/pytorch/pytorch/pull/155962
2025-08-26T19:34:18.9765944Z [155962] Checking whether to label PR as stale.
2025-08-26T19:34:18.9766613Z [155962] Skipping because PR was updated recently
2025-08-26T19:34:18.9767475Z ##[endgroup]
2025-08-26T19:34:18.9768136Z ##[group]Processing PR #155970
2025-08-26T19:34:18.9768764Z [155970] URL: https://github.com/pytorch/pytorch/pull/155970
2025-08-26T19:34:18.9769497Z [155970] Checking whether to label PR as stale.
2025-08-26T19:34:18.9770167Z [155970] Skipping because PR was updated recently
2025-08-26T19:34:18.9771009Z ##[endgroup]
2025-08-26T19:34:18.9771662Z ##[group]Processing PR #155989
2025-08-26T19:34:18.9772290Z [155989] URL: https://github.com/pytorch/pytorch/pull/155989
2025-08-26T19:34:18.9773015Z [155989] Checking whether to label PR as stale.
2025-08-26T19:34:18.9773601Z [155989] Skipping because PR was updated recently
2025-08-26T19:34:18.9779821Z ##[endgroup]
2025-08-26T19:34:18.9782262Z ##[group]Processing PR #156001
2025-08-26T19:34:18.9784748Z [156001] URL: https://github.com/pytorch/pytorch/pull/156001
2025-08-26T19:34:18.9787457Z [156001] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9790050Z [156001] Skipping because PR was updated recently
2025-08-26T19:34:18.9792594Z ##[endgroup]
2025-08-26T19:34:18.9794810Z ##[group]Processing PR #156003
2025-08-26T19:34:18.9796955Z [156003] URL: https://github.com/pytorch/pytorch/pull/156003
2025-08-26T19:34:18.9799057Z [156003] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9799893Z [156003] Skipping because PR was updated recently
2025-08-26T19:34:18.9800594Z ##[endgroup]
2025-08-26T19:34:18.9801145Z ##[group]Processing PR #156006
2025-08-26T19:34:18.9801714Z [156006] URL: https://github.com/pytorch/pytorch/pull/156006
2025-08-26T19:34:18.9802478Z [156006] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9803195Z [156006] Skipping because PR was updated recently
2025-08-26T19:34:18.9804002Z ##[endgroup]
2025-08-26T19:34:18.9804636Z ##[group]Processing PR #156014
2025-08-26T19:34:18.9805150Z [156014] URL: https://github.com/pytorch/pytorch/pull/156014
2025-08-26T19:34:18.9805876Z [156014] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9806591Z [156014] Skipping because PR was updated recently
2025-08-26T19:34:18.9807383Z ##[endgroup]
2025-08-26T19:34:18.9807928Z ##[group]Processing PR #156030
2025-08-26T19:34:18.9808482Z [156030] URL: https://github.com/pytorch/pytorch/pull/156030
2025-08-26T19:34:18.9809241Z [156030] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9809895Z [156030] Skipping because PR was updated recently
2025-08-26T19:34:18.9810688Z ##[endgroup]
2025-08-26T19:34:18.9811313Z ##[group]Processing PR #156049
2025-08-26T19:34:18.9812012Z [156049] URL: https://github.com/pytorch/pytorch/pull/156049
2025-08-26T19:34:18.9812792Z [156049] Checking whether to label PR as stale.
2025-08-26T19:34:18.9813284Z [156049] Skipping because PR was updated recently
2025-08-26T19:34:18.9814131Z ##[endgroup]
2025-08-26T19:34:18.9814696Z ##[group]Processing PR #156060
2025-08-26T19:34:18.9815442Z [156060] URL: https://github.com/pytorch/pytorch/pull/156060
2025-08-26T19:34:18.9816353Z [156060] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9817338Z [156060] Skipping because PR was updated recently
2025-08-26T19:34:18.9818446Z ##[endgroup]
2025-08-26T19:34:18.9819268Z ##[group]Processing PR #156094
2025-08-26T19:34:18.9820092Z [156094] URL: https://github.com/pytorch/pytorch/pull/156094
2025-08-26T19:34:18.9821021Z [156094] Checking whether to label PR as stale.
2025-08-26T19:34:18.9821827Z [156094] Skipping because PR was updated recently
2025-08-26T19:34:18.9822899Z ##[endgroup]
2025-08-26T19:34:18.9823798Z ##[group]Processing PR #156097
2025-08-26T19:34:18.9824554Z [156097] URL: https://github.com/pytorch/pytorch/pull/156097
2025-08-26T19:34:18.9825461Z [156097] Checking whether to label PR as stale.
2025-08-26T19:34:18.9826080Z [156097] Skipping because PR was updated recently
2025-08-26T19:34:18.9827109Z ##[endgroup]
2025-08-26T19:34:18.9827729Z ##[group]Processing PR #156101
2025-08-26T19:34:18.9828249Z [156101] URL: https://github.com/pytorch/pytorch/pull/156101
2025-08-26T19:34:18.9829286Z [156101] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9830250Z [156101] Skipping because PR was updated recently
2025-08-26T19:34:18.9831338Z ##[endgroup]
2025-08-26T19:34:18.9832164Z ##[group]Processing PR #156104
2025-08-26T19:34:18.9832958Z [156104] URL: https://github.com/pytorch/pytorch/pull/156104
2025-08-26T19:34:18.9834003Z [156104] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9834951Z [156104] Skipping because PR was updated recently
2025-08-26T19:34:18.9837054Z ##[endgroup]
2025-08-26T19:34:18.9837662Z ##[group]Processing PR #156109
2025-08-26T19:34:18.9838266Z [156109] URL: https://github.com/pytorch/pytorch/pull/156109
2025-08-26T19:34:18.9839310Z [156109] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9840264Z [156109] Skipping because PR was updated recently
2025-08-26T19:34:18.9841347Z ##[endgroup]
2025-08-26T19:34:18.9842183Z ##[group]Processing PR #156110
2025-08-26T19:34:18.9842984Z [156110] URL: https://github.com/pytorch/pytorch/pull/156110
2025-08-26T19:34:18.9844020Z [156110] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9844981Z [156110] Skipping because PR was updated recently
2025-08-26T19:34:18.9846321Z ##[endgroup]
2025-08-26T19:34:18.9847132Z ##[group]Processing PR #156111
2025-08-26T19:34:18.9847935Z [156111] URL: https://github.com/pytorch/pytorch/pull/156111
2025-08-26T19:34:18.9848991Z [156111] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9849926Z [156111] Skipping because PR was updated recently
2025-08-26T19:34:18.9851007Z ##[endgroup]
2025-08-26T19:34:18.9851840Z ##[group]Processing PR #156131
2025-08-26T19:34:18.9852614Z [156131] URL: https://github.com/pytorch/pytorch/pull/156131
2025-08-26T19:34:18.9853660Z [156131] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9854603Z [156131] Skipping because PR was updated recently
2025-08-26T19:34:18.9855670Z ##[endgroup]
2025-08-26T19:34:18.9856506Z ##[group]Processing PR #156132
2025-08-26T19:34:18.9857296Z [156132] URL: https://github.com/pytorch/pytorch/pull/156132
2025-08-26T19:34:18.9858325Z [156132] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9859028Z [156132] Skipping because PR was updated recently
2025-08-26T19:34:18.9860092Z ##[endgroup]
2025-08-26T19:34:18.9860896Z ##[group]Processing PR #156141
2025-08-26T19:34:18.9861694Z [156141] URL: https://github.com/pytorch/pytorch/pull/156141
2025-08-26T19:34:18.9862605Z [156141] Checking whether to label PR as stale.
2025-08-26T19:34:18.9863700Z [156141] Skipping because PR was updated recently
2025-08-26T19:34:18.9864750Z ##[endgroup]
2025-08-26T19:34:18.9865546Z ##[group]Processing PR #156147
2025-08-26T19:34:18.9866306Z [156147] URL: https://github.com/pytorch/pytorch/pull/156147
2025-08-26T19:34:18.9867208Z [156147] Checking whether to label PR as stale.
2025-08-26T19:34:18.9867996Z [156147] Skipping because PR was updated recently
2025-08-26T19:34:18.9869030Z ##[endgroup]
2025-08-26T19:34:18.9869839Z ##[group]Processing PR #156149
2025-08-26T19:34:18.9870625Z [156149] URL: https://github.com/pytorch/pytorch/pull/156149
2025-08-26T19:34:18.9871629Z [156149] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9872587Z [156149] Skipping because PR was updated recently
2025-08-26T19:34:18.9905657Z ##[endgroup]
2025-08-26T19:34:18.9906383Z ##[group]Processing PR #156157
2025-08-26T19:34:18.9907032Z [156157] URL: https://github.com/pytorch/pytorch/pull/156157
2025-08-26T19:34:18.9907795Z [156157] Checking whether to label PR as stale.
2025-08-26T19:34:18.9908464Z [156157] Skipping because PR was updated recently
2025-08-26T19:34:18.9909266Z ##[endgroup]
2025-08-26T19:34:18.9909935Z ##[group]Processing PR #156161
2025-08-26T19:34:18.9910727Z [156161] URL: https://github.com/pytorch/pytorch/pull/156161
2025-08-26T19:34:18.9911662Z [156161] Checking whether to label PR as stale.
2025-08-26T19:34:18.9912493Z [156161] Skipping because PR was updated recently
2025-08-26T19:34:18.9913560Z ##[endgroup]
2025-08-26T19:34:18.9914389Z ##[group]Processing PR #156170
2025-08-26T19:34:18.9915190Z [156170] URL: https://github.com/pytorch/pytorch/pull/156170
2025-08-26T19:34:18.9916247Z [156170] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9917210Z [156170] Skipping because PR was updated recently
2025-08-26T19:34:18.9918293Z ##[endgroup]
2025-08-26T19:34:18.9919116Z ##[group]Processing PR #156178
2025-08-26T19:34:18.9919888Z [156178] URL: https://github.com/pytorch/pytorch/pull/156178
2025-08-26T19:34:18.9920822Z [156178] Checking whether to label PR as stale.
2025-08-26T19:34:18.9921629Z [156178] Skipping because PR was updated recently
2025-08-26T19:34:18.9922698Z ##[endgroup]
2025-08-26T19:34:18.9923522Z ##[group]Processing PR #156179
2025-08-26T19:34:18.9924307Z [156179] URL: https://github.com/pytorch/pytorch/pull/156179
2025-08-26T19:34:18.9925355Z [156179] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9926322Z [156179] Skipping because PR was updated recently
2025-08-26T19:34:18.9927372Z ##[endgroup]
2025-08-26T19:34:18.9928201Z ##[group]Processing PR #156183
2025-08-26T19:34:18.9929002Z [156183] URL: https://github.com/pytorch/pytorch/pull/156183
2025-08-26T19:34:18.9930138Z [156183] Checking whether to label PR as stale.
2025-08-26T19:34:18.9930970Z [156183] Skipping because PR was updated recently
2025-08-26T19:34:18.9932040Z ##[endgroup]
2025-08-26T19:34:18.9932872Z ##[group]Processing PR #156188
2025-08-26T19:34:18.9933656Z [156188] URL: https://github.com/pytorch/pytorch/pull/156188
2025-08-26T19:34:18.9934721Z [156188] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9936936Z [156188] Skipping because PR was updated recently
2025-08-26T19:34:18.9937991Z ##[endgroup]
2025-08-26T19:34:18.9938802Z ##[group]Processing PR #156189
2025-08-26T19:34:18.9939563Z [156189] URL: https://github.com/pytorch/pytorch/pull/156189
2025-08-26T19:34:18.9940591Z [156189] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9941533Z [156189] Skipping because PR was updated recently
2025-08-26T19:34:18.9942558Z ##[endgroup]
2025-08-26T19:34:18.9943375Z ##[group]Processing PR #156198
2025-08-26T19:34:18.9944235Z [156198] URL: https://github.com/pytorch/pytorch/pull/156198
2025-08-26T19:34:18.9945242Z [156198] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9946186Z [156198] Skipping because PR was updated recently
2025-08-26T19:34:18.9947239Z ##[endgroup]
2025-08-26T19:34:18.9948040Z ##[group]Processing PR #156199
2025-08-26T19:34:18.9949048Z [156199] URL: https://github.com/pytorch/pytorch/pull/156199
2025-08-26T19:34:18.9949919Z [156199] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9950629Z [156199] Skipping because PR was updated recently
2025-08-26T19:34:18.9951487Z ##[endgroup]
2025-08-26T19:34:18.9952170Z ##[group]Processing PR #156239
2025-08-26T19:34:18.9952784Z [156239] URL: https://github.com/pytorch/pytorch/pull/156239
2025-08-26T19:34:18.9953842Z [156239] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9954797Z [156239] Skipping because PR was updated recently
2025-08-26T19:34:18.9955891Z ##[endgroup]
2025-08-26T19:34:18.9956724Z ##[group]Processing PR #156252
2025-08-26T19:34:18.9957519Z [156252] URL: https://github.com/pytorch/pytorch/pull/156252
2025-08-26T19:34:18.9958555Z [156252] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9959520Z [156252] Skipping because PR was updated recently
2025-08-26T19:34:18.9960599Z ##[endgroup]
2025-08-26T19:34:18.9961427Z ##[group]Processing PR #156266
2025-08-26T19:34:18.9962222Z [156266] URL: https://github.com/pytorch/pytorch/pull/156266
2025-08-26T19:34:18.9963275Z [156266] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9964218Z [156266] Skipping because PR was updated recently
2025-08-26T19:34:18.9965278Z ##[endgroup]
2025-08-26T19:34:18.9966109Z ##[group]Processing PR #156267
2025-08-26T19:34:18.9966880Z [156267] URL: https://github.com/pytorch/pytorch/pull/156267
2025-08-26T19:34:18.9967802Z [156267] Checking whether to label PR as stale.
2025-08-26T19:34:18.9968618Z [156267] Skipping because PR was updated recently
2025-08-26T19:34:18.9969683Z ##[endgroup]
2025-08-26T19:34:18.9970510Z ##[group]Processing PR #156338
2025-08-26T19:34:18.9971311Z [156338] URL: https://github.com/pytorch/pytorch/pull/156338
2025-08-26T19:34:18.9972345Z [156338] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9973310Z [156338] Skipping because PR was updated recently
2025-08-26T19:34:18.9974393Z ##[endgroup]
2025-08-26T19:34:18.9975230Z ##[group]Processing PR #156343
2025-08-26T19:34:18.9976021Z [156343] URL: https://github.com/pytorch/pytorch/pull/156343
2025-08-26T19:34:18.9977056Z [156343] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9978025Z [156343] Skipping because PR was updated recently
2025-08-26T19:34:18.9979092Z ##[endgroup]
2025-08-26T19:34:18.9979903Z ##[group]Processing PR #156345
2025-08-26T19:34:18.9980693Z [156345] URL: https://github.com/pytorch/pytorch/pull/156345
2025-08-26T19:34:18.9981746Z [156345] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9982927Z [156345] Skipping because PR was updated recently
2025-08-26T19:34:18.9984062Z ##[endgroup]
2025-08-26T19:34:18.9984876Z ##[group]Processing PR #156365
2025-08-26T19:34:18.9985634Z [156365] URL: https://github.com/pytorch/pytorch/pull/156365
2025-08-26T19:34:18.9986656Z [156365] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9987582Z [156365] Skipping because PR was updated recently
2025-08-26T19:34:18.9988624Z ##[endgroup]
2025-08-26T19:34:18.9989421Z ##[group]Processing PR #156366
2025-08-26T19:34:18.9990185Z [156366] URL: https://github.com/pytorch/pytorch/pull/156366
2025-08-26T19:34:18.9991191Z [156366] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9992126Z [156366] Skipping because PR was updated recently
2025-08-26T19:34:18.9992953Z ##[endgroup]
2025-08-26T19:34:18.9993575Z ##[group]Processing PR #156372
2025-08-26T19:34:18.9994213Z [156372] URL: https://github.com/pytorch/pytorch/pull/156372
2025-08-26T19:34:18.9995052Z [156372] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9995501Z [156372] Skipping because PR was updated recently
2025-08-26T19:34:18.9995966Z ##[endgroup]
2025-08-26T19:34:18.9996331Z ##[group]Processing PR #156380
2025-08-26T19:34:18.9996666Z [156380] URL: https://github.com/pytorch/pytorch/pull/156380
2025-08-26T19:34:18.9997207Z [156380] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9997613Z [156380] Skipping because PR was updated recently
2025-08-26T19:34:18.9998075Z ##[endgroup]
2025-08-26T19:34:18.9998438Z ##[group]Processing PR #156385
2025-08-26T19:34:18.9998786Z [156385] URL: https://github.com/pytorch/pytorch/pull/156385
2025-08-26T19:34:18.9999229Z [156385] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:18.9999645Z [156385] Skipping because PR was updated recently
2025-08-26T19:34:19.0000106Z ##[endgroup]
2025-08-26T19:34:19.0000457Z ##[group]Processing PR #156396
2025-08-26T19:34:19.0000812Z [156396] URL: https://github.com/pytorch/pytorch/pull/156396
2025-08-26T19:34:19.0001255Z [156396] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0001672Z [156396] Skipping because PR was updated recently
2025-08-26T19:34:19.0002134Z ##[endgroup]
2025-08-26T19:34:19.0002496Z ##[group]Processing PR #156403
2025-08-26T19:34:19.0002834Z [156403] URL: https://github.com/pytorch/pytorch/pull/156403
2025-08-26T19:34:19.0003287Z [156403] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0003690Z [156403] Skipping because PR was updated recently
2025-08-26T19:34:19.0004149Z ##[endgroup]
2025-08-26T19:34:19.0004509Z ##[group]Processing PR #156415
2025-08-26T19:34:19.0004857Z [156415] URL: https://github.com/pytorch/pytorch/pull/156415
2025-08-26T19:34:19.0005242Z [156415] Checking whether to label PR as stale.
2025-08-26T19:34:19.0005600Z [156415] Skipping because PR was updated recently
2025-08-26T19:34:19.0006050Z ##[endgroup]
2025-08-26T19:34:19.0006411Z ##[group]Processing PR #156418
2025-08-26T19:34:19.0006758Z [156418] URL: https://github.com/pytorch/pytorch/pull/156418
2025-08-26T19:34:19.0007147Z [156418] Checking whether to label PR as stale.
2025-08-26T19:34:19.0007506Z [156418] Skipping because PR was updated recently
2025-08-26T19:34:19.0007964Z ##[endgroup]
2025-08-26T19:34:19.0008327Z ##[group]Processing PR #156435
2025-08-26T19:34:19.0008661Z [156435] URL: https://github.com/pytorch/pytorch/pull/156435
2025-08-26T19:34:19.0009114Z [156435] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0009518Z [156435] Skipping because PR was updated recently
2025-08-26T19:34:19.0009985Z ##[endgroup]
2025-08-26T19:34:19.0010346Z ##[group]Processing PR #156458
2025-08-26T19:34:19.0010680Z [156458] URL: https://github.com/pytorch/pytorch/pull/156458
2025-08-26T19:34:19.0011136Z [156458] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0011552Z [156458] Skipping because PR was updated recently
2025-08-26T19:34:19.0012242Z ##[endgroup]
2025-08-26T19:34:19.0012604Z ##[group]Processing PR #156478
2025-08-26T19:34:19.0012958Z [156478] URL: https://github.com/pytorch/pytorch/pull/156478
2025-08-26T19:34:19.0013406Z [156478] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0013829Z [156478] Skipping because PR was updated recently
2025-08-26T19:34:19.0014295Z ##[endgroup]
2025-08-26T19:34:19.0014657Z ##[group]Processing PR #156484
2025-08-26T19:34:19.0014992Z [156484] URL: https://github.com/pytorch/pytorch/pull/156484
2025-08-26T19:34:19.0015445Z [156484] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0015847Z [156484] Skipping because PR was updated recently
2025-08-26T19:34:19.0016310Z ##[endgroup]
2025-08-26T19:34:19.0016671Z ##[group]Processing PR #156491
2025-08-26T19:34:19.0017006Z [156491] URL: https://github.com/pytorch/pytorch/pull/156491
2025-08-26T19:34:19.0017409Z [156491] Checking whether to label PR as stale.
2025-08-26T19:34:19.0017772Z [156491] Skipping because PR was updated recently
2025-08-26T19:34:19.0018220Z ##[endgroup]
2025-08-26T19:34:19.0018584Z ##[group]Processing PR #156494
2025-08-26T19:34:19.0018932Z [156494] URL: https://github.com/pytorch/pytorch/pull/156494
2025-08-26T19:34:19.0019375Z [156494] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0019850Z [156494] Skipping because PR was updated recently
2025-08-26T19:34:19.0020319Z ##[endgroup]
2025-08-26T19:34:19.0020682Z ##[group]Processing PR #156510
2025-08-26T19:34:19.0021016Z [156510] URL: https://github.com/pytorch/pytorch/pull/156510
2025-08-26T19:34:19.0021414Z [156510] Checking whether to label PR as stale.
2025-08-26T19:34:19.0021761Z [156510] Skipping because PR was updated recently
2025-08-26T19:34:19.0022224Z ##[endgroup]
2025-08-26T19:34:19.0022585Z ##[group]Processing PR #156531
2025-08-26T19:34:19.0022920Z [156531] URL: https://github.com/pytorch/pytorch/pull/156531
2025-08-26T19:34:19.0023320Z [156531] Checking whether to label PR as stale.
2025-08-26T19:34:19.0023770Z [156531] Skipping because PR was updated recently
2025-08-26T19:34:19.0024222Z ##[endgroup]
2025-08-26T19:34:19.0024585Z ##[group]Processing PR #156550
2025-08-26T19:34:19.0024932Z [156550] URL: https://github.com/pytorch/pytorch/pull/156550
2025-08-26T19:34:19.0025375Z [156550] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0025800Z [156550] Skipping because PR was updated recently
2025-08-26T19:34:19.0026261Z ##[endgroup]
2025-08-26T19:34:19.0026612Z ##[group]Processing PR #156572
2025-08-26T19:34:19.0026960Z [156572] URL: https://github.com/pytorch/pytorch/pull/156572
2025-08-26T19:34:19.0027359Z [156572] Checking whether to label PR as stale.
2025-08-26T19:34:19.0027704Z [156572] Skipping because PR was updated recently
2025-08-26T19:34:19.0028161Z ##[endgroup]
2025-08-26T19:34:19.0028519Z ##[group]Processing PR #156590
2025-08-26T19:34:19.0028853Z [156590] URL: https://github.com/pytorch/pytorch/pull/156590
2025-08-26T19:34:19.0029258Z [156590] Checking whether to label PR as stale.
2025-08-26T19:34:19.0029602Z [156590] Skipping because PR was updated recently
2025-08-26T19:34:19.0030063Z ##[endgroup]
2025-08-26T19:34:19.0030432Z ##[group]Processing PR #156592
2025-08-26T19:34:19.0030779Z [156592] URL: https://github.com/pytorch/pytorch/pull/156592
2025-08-26T19:34:19.0031172Z [156592] Checking whether to label PR as stale.
2025-08-26T19:34:19.0031531Z [156592] Skipping because PR was updated recently
2025-08-26T19:34:19.0031991Z ##[endgroup]
2025-08-26T19:34:19.0032341Z ##[group]Processing PR #156599
2025-08-26T19:34:19.0032686Z [156599] URL: https://github.com/pytorch/pytorch/pull/156599
2025-08-26T19:34:19.0033087Z [156599] Checking whether to label PR as stale.
2025-08-26T19:34:19.0033434Z [156599] Skipping because PR was updated recently
2025-08-26T19:34:19.0033893Z ##[endgroup]
2025-08-26T19:34:19.0034256Z ##[group]Processing PR #156617
2025-08-26T19:34:19.0034593Z [156617] URL: https://github.com/pytorch/pytorch/pull/156617
2025-08-26T19:34:19.0035081Z [156617] Checking whether to label PR as stale.
2025-08-26T19:34:19.0035429Z [156617] Skipping because PR was updated recently
2025-08-26T19:34:19.0036187Z ##[endgroup]
2025-08-26T19:34:19.0036557Z ##[group]Processing PR #156621
2025-08-26T19:34:19.0036912Z [156621] URL: https://github.com/pytorch/pytorch/pull/156621
2025-08-26T19:34:19.0037366Z [156621] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0037788Z [156621] Skipping because PR was updated recently
2025-08-26T19:34:19.0038250Z ##[endgroup]
2025-08-26T19:34:19.0038599Z ##[group]Processing PR #156633
2025-08-26T19:34:19.0038945Z [156633] URL: https://github.com/pytorch/pytorch/pull/156633
2025-08-26T19:34:19.0039337Z [156633] Checking whether to label PR as stale.
2025-08-26T19:34:19.0039695Z [156633] Skipping because PR was updated recently
2025-08-26T19:34:19.0040155Z ##[endgroup]
2025-08-26T19:34:19.0040514Z ##[group]Processing PR #156635
2025-08-26T19:34:19.0040852Z [156635] URL: https://github.com/pytorch/pytorch/pull/156635
2025-08-26T19:34:19.0041310Z [156635] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0041720Z [156635] Skipping because PR was updated recently
2025-08-26T19:34:19.0042182Z ##[endgroup]
2025-08-26T19:34:19.0042547Z ##[group]Processing PR #156650
2025-08-26T19:34:19.0043013Z [156650] URL: https://github.com/pytorch/pytorch/pull/156650
2025-08-26T19:34:19.0043456Z [156650] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0043875Z [156650] Skipping because PR was updated recently
2025-08-26T19:34:19.0044325Z ##[endgroup]
2025-08-26T19:34:19.0044690Z ##[group]Processing PR #156660
2025-08-26T19:34:19.0045039Z [156660] URL: https://github.com/pytorch/pytorch/pull/156660
2025-08-26T19:34:19.0045428Z [156660] Checking whether to label PR as stale.
2025-08-26T19:34:19.0045786Z [156660] Skipping because PR was updated recently
2025-08-26T19:34:19.0046247Z ##[endgroup]
2025-08-26T19:34:19.0046618Z ##[group]Processing PR #156665
2025-08-26T19:34:19.0046956Z [156665] URL: https://github.com/pytorch/pytorch/pull/156665
2025-08-26T19:34:19.0047412Z [156665] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0047815Z [156665] Skipping because PR was updated recently
2025-08-26T19:34:19.0048277Z ##[endgroup]
2025-08-26T19:34:19.0048637Z ##[group]Processing PR #156666
2025-08-26T19:34:19.0048977Z [156666] URL: https://github.com/pytorch/pytorch/pull/156666
2025-08-26T19:34:19.0049376Z [156666] Checking whether to label PR as stale.
2025-08-26T19:34:19.0049732Z [156666] Skipping because PR was updated recently
2025-08-26T19:34:19.0050175Z ##[endgroup]
2025-08-26T19:34:19.0050538Z ##[group]Processing PR #156672
2025-08-26T19:34:19.0050887Z [156672] URL: https://github.com/pytorch/pytorch/pull/156672
2025-08-26T19:34:19.0051276Z [156672] Checking whether to label PR as stale.
2025-08-26T19:34:19.0051633Z [156672] Skipping because PR was updated recently
2025-08-26T19:34:19.0052101Z ##[endgroup]
2025-08-26T19:34:19.0052464Z ##[group]Processing PR #156683
2025-08-26T19:34:19.0052797Z [156683] URL: https://github.com/pytorch/pytorch/pull/156683
2025-08-26T19:34:19.0053200Z [156683] Checking whether to label PR as stale.
2025-08-26T19:34:19.0053545Z [156683] Skipping because PR was updated recently
2025-08-26T19:34:19.0054003Z ##[endgroup]
2025-08-26T19:34:19.0054367Z ##[group]Processing PR #156696
2025-08-26T19:34:19.0054700Z [156696] URL: https://github.com/pytorch/pytorch/pull/156696
2025-08-26T19:34:19.0055157Z [156696] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0055577Z [156696] Skipping because PR was updated recently
2025-08-26T19:34:19.0056023Z ##[endgroup]
2025-08-26T19:34:19.0056383Z ##[group]Processing PR #156697
2025-08-26T19:34:19.0056731Z [156697] URL: https://github.com/pytorch/pytorch/pull/156697
2025-08-26T19:34:19.0057178Z [156697] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0057600Z [156697] Skipping because PR was updated recently
2025-08-26T19:34:19.0058173Z ##[endgroup]
2025-08-26T19:34:19.0058541Z ##[group]Processing PR #156702
2025-08-26T19:34:19.0058878Z [156702] URL: https://github.com/pytorch/pytorch/pull/156702
2025-08-26T19:34:19.0059379Z [156702] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:19.0059782Z [156702] Skipping because PR was updated recently
2025-08-26T19:34:19.0060245Z ##[endgroup]
2025-08-26T19:34:19.0060608Z ##[group]Processing PR #156703
2025-08-26T19:34:19.0060942Z [156703] URL: https://github.com/pytorch/pytorch/pull/156703
2025-08-26T19:34:19.0061346Z [156703] Checking whether to label PR as stale.
2025-08-26T19:34:19.0061704Z [156703] Skipping because PR was updated recently
2025-08-26T19:34:19.0062151Z ##[endgroup]
2025-08-26T19:34:19.0062514Z ##[group]Processing PR #156710
2025-08-26T19:34:19.0062861Z [156710] URL: https://github.com/pytorch/pytorch/pull/156710
2025-08-26T19:34:19.0063249Z [156710] Checking whether to label PR as stale.
2025-08-26T19:34:19.0063701Z [156710] Skipping because PR was updated recently
2025-08-26T19:34:19.0064178Z ##[endgroup]
2025-08-26T19:34:19.0064548Z ##[group]Processing PR #156711
2025-08-26T19:34:19.0064884Z [156711] URL: https://github.com/pytorch/pytorch/pull/156711
2025-08-26T19:34:19.0065287Z [156711] Checking whether to label PR as stale.
2025-08-26T19:34:19.0065695Z [156711] Skipping because PR was updated recently
2025-08-26T19:34:19.0066155Z ##[endgroup]
2025-08-26T19:34:20.1816414Z ##[group]Processing PR #156712
2025-08-26T19:34:20.1817494Z [156712] URL: https://github.com/pytorch/pytorch/pull/156712
2025-08-26T19:34:20.1818384Z [156712] Checking whether to label PR as stale.
2025-08-26T19:34:20.1819141Z [156712] Skipping because PR was updated recently
2025-08-26T19:34:20.1820140Z ##[endgroup]
2025-08-26T19:34:20.1820934Z ##[group]Processing PR #156713
2025-08-26T19:34:20.1821678Z [156713] URL: https://github.com/pytorch/pytorch/pull/156713
2025-08-26T19:34:20.1822519Z [156713] Checking whether to label PR as stale.
2025-08-26T19:34:20.1823505Z [156713] Skipping because PR was updated recently
2025-08-26T19:34:20.1827222Z ##[endgroup]
2025-08-26T19:34:20.1828060Z ##[group]Processing PR #156729
2025-08-26T19:34:20.1828833Z [156729] URL: https://github.com/pytorch/pytorch/pull/156729
2025-08-26T19:34:20.1829796Z [156729] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1830703Z [156729] Skipping because PR was updated recently
2025-08-26T19:34:20.1831668Z ##[endgroup]
2025-08-26T19:34:20.1832446Z ##[group]Processing PR #156730
2025-08-26T19:34:20.1833186Z [156730] URL: https://github.com/pytorch/pytorch/pull/156730
2025-08-26T19:34:20.1834111Z [156730] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1834992Z [156730] Skipping because PR was updated recently
2025-08-26T19:34:20.1836306Z ##[endgroup]
2025-08-26T19:34:20.1837071Z ##[group]Processing PR #156749
2025-08-26T19:34:20.1837829Z [156749] URL: https://github.com/pytorch/pytorch/pull/156749
2025-08-26T19:34:20.1838569Z [156749] Checking whether to label PR as stale.
2025-08-26T19:34:20.1839192Z [156749] Skipping because PR was updated recently
2025-08-26T19:34:20.1840109Z ##[endgroup]
2025-08-26T19:34:20.1848791Z ##[group]Processing PR #156756
2025-08-26T19:34:20.1850494Z [156756] URL: https://github.com/pytorch/pytorch/pull/156756
2025-08-26T19:34:20.1850979Z [156756] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1851410Z [156756] Skipping because PR was updated recently
2025-08-26T19:34:20.1851908Z ##[endgroup]
2025-08-26T19:34:20.1852271Z ##[group]Processing PR #156759
2025-08-26T19:34:20.1852625Z [156759] URL: https://github.com/pytorch/pytorch/pull/156759
2025-08-26T19:34:20.1853101Z [156759] Checking whether to label PR as stale.
2025-08-26T19:34:20.1853467Z [156759] Skipping because PR was updated recently
2025-08-26T19:34:20.1853934Z ##[endgroup]
2025-08-26T19:34:20.1854298Z ##[group]Processing PR #156773
2025-08-26T19:34:20.1854638Z [156773] URL: https://github.com/pytorch/pytorch/pull/156773
2025-08-26T19:34:20.1855302Z [156773] Checking whether to label PR as stale.
2025-08-26T19:34:20.1855648Z [156773] Skipping because PR was updated recently
2025-08-26T19:34:20.1856564Z ##[endgroup]
2025-08-26T19:34:20.1857136Z ##[group]Processing PR #156775
2025-08-26T19:34:20.1857686Z [156775] URL: https://github.com/pytorch/pytorch/pull/156775
2025-08-26T19:34:20.1858323Z [156775] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1858952Z [156775] Skipping because PR was updated recently
2025-08-26T19:34:20.1862594Z ##[endgroup]
2025-08-26T19:34:20.1863225Z ##[group]Processing PR #156785
2025-08-26T19:34:20.1863892Z [156785] URL: https://github.com/pytorch/pytorch/pull/156785
2025-08-26T19:34:20.1864583Z [156785] Checking whether to label PR as stale.
2025-08-26T19:34:20.1865124Z [156785] Skipping because PR was updated recently
2025-08-26T19:34:20.1865666Z ##[endgroup]
2025-08-26T19:34:20.1866043Z ##[group]Processing PR #156791
2025-08-26T19:34:20.1866400Z [156791] URL: https://github.com/pytorch/pytorch/pull/156791
2025-08-26T19:34:20.1866865Z [156791] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1867288Z [156791] Skipping because PR was updated recently
2025-08-26T19:34:20.1867749Z ##[endgroup]
2025-08-26T19:34:20.1868121Z ##[group]Processing PR #156793
2025-08-26T19:34:20.1868671Z [156793] URL: https://github.com/pytorch/pytorch/pull/156793
2025-08-26T19:34:20.1869120Z [156793] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1869545Z [156793] Skipping because PR was updated recently
2025-08-26T19:34:20.1870005Z ##[endgroup]
2025-08-26T19:34:20.1870374Z ##[group]Processing PR #156798
2025-08-26T19:34:20.1870711Z [156798] URL: https://github.com/pytorch/pytorch/pull/156798
2025-08-26T19:34:20.1871117Z [156798] Checking whether to label PR as stale.
2025-08-26T19:34:20.1871463Z [156798] Skipping because PR was updated recently
2025-08-26T19:34:20.1871918Z ##[endgroup]
2025-08-26T19:34:20.1872284Z ##[group]Processing PR #156806
2025-08-26T19:34:20.1872619Z [156806] URL: https://github.com/pytorch/pytorch/pull/156806
2025-08-26T19:34:20.1873021Z [156806] Checking whether to label PR as stale.
2025-08-26T19:34:20.1873377Z [156806] Skipping because PR was updated recently
2025-08-26T19:34:20.1873824Z ##[endgroup]
2025-08-26T19:34:20.1874190Z ##[group]Processing PR #156812
2025-08-26T19:34:20.1874541Z [156812] URL: https://github.com/pytorch/pytorch/pull/156812
2025-08-26T19:34:20.1874929Z [156812] Checking whether to label PR as stale.
2025-08-26T19:34:20.1875289Z [156812] Skipping because PR was updated recently
2025-08-26T19:34:20.1875757Z ##[endgroup]
2025-08-26T19:34:20.1876107Z ##[group]Processing PR #156832
2025-08-26T19:34:20.1876455Z [156832] URL: https://github.com/pytorch/pytorch/pull/156832
2025-08-26T19:34:20.1876852Z [156832] Checking whether to label PR as stale.
2025-08-26T19:34:20.1877198Z [156832] Skipping because PR was updated recently
2025-08-26T19:34:20.1877652Z ##[endgroup]
2025-08-26T19:34:20.1878019Z ##[group]Processing PR #156834
2025-08-26T19:34:20.1878353Z [156834] URL: https://github.com/pytorch/pytorch/pull/156834
2025-08-26T19:34:20.1878808Z [156834] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1879217Z [156834] Skipping because PR was updated recently
2025-08-26T19:34:20.1879677Z ##[endgroup]
2025-08-26T19:34:20.1880044Z ##[group]Processing PR #156839
2025-08-26T19:34:20.1880393Z [156839] URL: https://github.com/pytorch/pytorch/pull/156839
2025-08-26T19:34:20.1880836Z [156839] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1881254Z [156839] Skipping because PR was updated recently
2025-08-26T19:34:20.1881716Z ##[endgroup]
2025-08-26T19:34:20.1882070Z ##[group]Processing PR #156851
2025-08-26T19:34:20.1882416Z [156851] URL: https://github.com/pytorch/pytorch/pull/156851
2025-08-26T19:34:20.1882816Z [156851] Checking whether to label PR as stale.
2025-08-26T19:34:20.1883161Z [156851] Skipping because PR was updated recently
2025-08-26T19:34:20.1883706Z ##[endgroup]
2025-08-26T19:34:20.1884071Z ##[group]Processing PR #156869
2025-08-26T19:34:20.1884405Z [156869] URL: https://github.com/pytorch/pytorch/pull/156869
2025-08-26T19:34:20.1884810Z [156869] Checking whether to label PR as stale.
2025-08-26T19:34:20.1885154Z [156869] Skipping because PR was updated recently
2025-08-26T19:34:20.1885613Z ##[endgroup]
2025-08-26T19:34:20.1885975Z ##[group]Processing PR #156875
2025-08-26T19:34:20.1886320Z [156875] URL: https://github.com/pytorch/pytorch/pull/156875
2025-08-26T19:34:20.1886763Z [156875] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1887180Z [156875] Skipping because PR was updated recently
2025-08-26T19:34:20.1887638Z ##[endgroup]
2025-08-26T19:34:20.1887987Z ##[group]Processing PR #156878
2025-08-26T19:34:20.1888334Z [156878] URL: https://github.com/pytorch/pytorch/pull/156878
2025-08-26T19:34:20.1888719Z [156878] Checking whether to label PR as stale.
2025-08-26T19:34:20.1889079Z [156878] Skipping because PR was updated recently
2025-08-26T19:34:20.1889539Z ##[endgroup]
2025-08-26T19:34:20.1889902Z ##[group]Processing PR #156887
2025-08-26T19:34:20.1890239Z [156887] URL: https://github.com/pytorch/pytorch/pull/156887
2025-08-26T19:34:20.1890694Z [156887] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1891175Z [156887] Skipping because PR was updated recently
2025-08-26T19:34:20.1891646Z ##[endgroup]
2025-08-26T19:34:20.1892011Z ##[group]Processing PR #156892
2025-08-26T19:34:20.1892363Z [156892] URL: https://github.com/pytorch/pytorch/pull/156892
2025-08-26T19:34:20.1892752Z [156892] Checking whether to label PR as stale.
2025-08-26T19:34:20.1893112Z [156892] Skipping because PR was updated recently
2025-08-26T19:34:20.1893569Z ##[endgroup]
2025-08-26T19:34:20.1893922Z ##[group]Processing PR #156894
2025-08-26T19:34:20.1894270Z [156894] URL: https://github.com/pytorch/pytorch/pull/156894
2025-08-26T19:34:20.1894660Z [156894] Checking whether to label PR as stale.
2025-08-26T19:34:20.1895021Z [156894] Skipping because PR was updated recently
2025-08-26T19:34:20.1895477Z ##[endgroup]
2025-08-26T19:34:20.1895843Z ##[group]Processing PR #156900
2025-08-26T19:34:20.1896179Z [156900] URL: https://github.com/pytorch/pytorch/pull/156900
2025-08-26T19:34:20.1896580Z [156900] Checking whether to label PR as stale.
2025-08-26T19:34:20.1896928Z [156900] Skipping because PR was updated recently
2025-08-26T19:34:20.1897395Z ##[endgroup]
2025-08-26T19:34:20.1897770Z ##[group]Processing PR #156908
2025-08-26T19:34:20.1898107Z [156908] URL: https://github.com/pytorch/pytorch/pull/156908
2025-08-26T19:34:20.1898567Z [156908] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1898990Z [156908] Skipping because PR was updated recently
2025-08-26T19:34:20.1899443Z ##[endgroup]
2025-08-26T19:34:20.1899815Z ##[group]Processing PR #156967
2025-08-26T19:34:20.1900168Z [156967] URL: https://github.com/pytorch/pytorch/pull/156967
2025-08-26T19:34:20.1900567Z [156967] Checking whether to label PR as stale.
2025-08-26T19:34:20.1900929Z [156967] Skipping because PR was updated recently
2025-08-26T19:34:20.1901393Z ##[endgroup]
2025-08-26T19:34:20.1901759Z ##[group]Processing PR #156970
2025-08-26T19:34:20.1902094Z [156970] URL: https://github.com/pytorch/pytorch/pull/156970
2025-08-26T19:34:20.1902555Z [156970] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1902962Z [156970] Skipping because PR was updated recently
2025-08-26T19:34:20.1903417Z ##[endgroup]
2025-08-26T19:34:20.1903884Z ##[group]Processing PR #156971
2025-08-26T19:34:20.1904227Z [156971] URL: https://github.com/pytorch/pytorch/pull/156971
2025-08-26T19:34:20.1904685Z [156971] PR is labeled stale, checking whether we should close it.
2025-08-26T19:34:20.1905100Z [156971] Skipping because PR was updated recently
2025-08-26T19:34:20.1905548Z ##[endgroup]
2025-08-26T19:34:20.1905909Z ##[group]Processing PR #156980
2025-08-26T19:34:20.1906254Z [156980] URL: https://github.com/pytorch/pytorch/pull/156980
2025-08-26T19:34:20.1906725Z [156980] Checking whether to label PR as stale.
2025-08-26T19:34:20.1907083Z [156980] Skipping because PR was updated recently
2025-08-26T19:34:20.1907543Z ##[endgroup]
2025-08-26T19:34:20.1907907Z ##[group]Processing PR #157032
2025-08-26T19:34:20.1908246Z [157032] URL: https://github.com/pytorch/pytorch/pull/157032
2025-08-26T19:34:20.1908653Z [157032] Checking whether to label PR as stale.
2025-08-26T19:34:20.1908998Z [157032] Skipping because PR was updated recently
2025-08-26T19:34:20.1909458Z ##[endgroup]
2025-08-26T19:34:20.1909820Z ##[group]Processing PR #157051
2025-08-26T19:34:20.1910155Z [157051] URL: https://github.com/pytorch/pytorch/pull/157051
2025-08-26T19:34:20.1910555Z [157051] Checking whether to label PR as stale.
2025-08-26T19:34:20.1910910Z [157051] Skipping because PR was updated recently
2025-08-26T19:34:20.1911358Z ##[endgroup]
2025-08-26T19:34:20.1911719Z ##[group]Processing PR #157106
2025-08-26T19:34:20.1912065Z [157106] URL: https://github.com/pytorch/pytorch/pull/157106
2025-08-26T19:34:20.1912458Z [157106] Checking whether to label PR as stale.
2025-08-26T19:34:20.1912814Z [157106] Skipping because PR was updated recently
2025-08-26T19:34:20.1913274Z ##[endgroup]
2025-08-26T19:34:20.1913626Z ##[group]Processing PR #157132
2025-08-26T19:34:20.1913973Z [157132] URL: https://github.com/pytorch/pytorch/pull/157132
2025-08-26T19:34:20.1914434Z [157132] Checking whether to label PR as stale.
2025-08-26T19:34:20.1914781Z [157132] Skipping because PR was updated recently
2025-08-26T19:34:20.1915244Z ##[endgroup]
2025-08-26T19:34:20.1915610Z ##[group]Processing PR #157138
2025-08-26T19:34:20.1915946Z [157138] URL: https://github.com/pytorch/pytorch/pull/157138
2025-08-26T19:34:20.1916345Z [157138] Checking whether to label PR as stale.
2025-08-26T19:34:20.1916687Z [157138] Skipping because PR was updated recently
2025-08-26T19:34:20.1917143Z ##[endgroup]
2025-08-26T19:34:20.1917502Z ##[group]Processing PR #157140
2025-08-26T19:34:20.1917851Z [157140] URL: https://github.com/pytorch/pytorch/pull/157140
2025-08-26T19:34:20.1918238Z [157140] Checking whether to label PR as stale.
2025-08-26T19:34:20.1918596Z [157140] Skipping because PR was updated recently
2025-08-26T19:34:20.1919057Z ##[endgroup]
2025-08-26T19:34:20.1919404Z ##[group]Processing PR #157149
2025-08-26T19:34:20.1919752Z [157149] URL: https://github.com/pytorch/pytorch/pull/157149
2025-08-26T19:34:20.1920139Z [157149] Checking whether to label PR as stale.
2025-08-26T19:34:20.1920492Z [157149] Skipping because PR was updated recently
2025-08-26T19:34:20.1920946Z ##[endgroup]
2025-08-26T19:34:20.1921304Z ##[group]Processing PR #157159
2025-08-26T19:34:20.1921640Z [157159] URL: https://github.com/pytorch/pytorch/pull/157159
2025-08-26T19:34:20.1922036Z [157159] Checking whether to label PR as stale.
2025-08-26T19:34:20.1922378Z [157159] Skipping because PR was updated recently
2025-08-26T19:34:20.1922834Z ##[endgroup]
2025-08-26T19:34:20.1923194Z ##[group]Processing PR #157161
2025-08-26T19:34:20.1923546Z [157161] URL: https://github.com/pytorch/pytorch/pull/157161
2025-08-26T19:34:20.1923933Z [157161] Checking whether to label PR as stale.
2025-08-26T19:34:20.1924293Z [157161] Skipping because PR was updated recently
2025-08-26T19:34:20.1924744Z ##[endgroup]
2025-08-26T19:34:20.1925108Z ##[group]Processing PR #157180
2025-08-26T19:34:20.1925460Z [157180] URL: https://github.com/pytorch/pytorch/pull/157180
2025-08-26T19:34:20.1925846Z [157180] Checking whether to label PR as stale.
2025-08-26T19:34:20.1926203Z [157180] Skipping because PR was updated recently
2025-08-26T19:34:20.1926660Z ##[endgroup]
2025-08-26T19:34:20.1927018Z ##[group]Processing PR #157187
2025-08-26T19:34:20.1927355Z [157187] URL: https://github.com/pytorch/pytorch/pull/157187
2025-08-26T19:34:20.1927753Z [157187] Checking whether to label PR as stale.
2025-08-26T19:34:20.1928096Z [157187] Skipping because PR was updated recently
2025-08-26T19:34:20.1928570Z ##[endgroup]
2025-08-26T19:34:20.1928937Z ##[group]Processing PR #157190
2025-08-26T19:34:20.1929345Z [157190] URL: https://github.com/pytorch/pytorch/pull/157190
2025-08-26T19:34:20.1929754Z [157190] Checking whether to label PR as stale.
2025-08-26T19:34:20.1930117Z [157190] Skipping because PR was updated recently
2025-08-26T19:34:20.1930570Z ##[endgroup]
2025-08-26T19:34:20.1930939Z ##[group]Processing PR #157192
2025-08-26T19:34:20.1931295Z [157192] URL: https://github.com/pytorch/pytorch/pull/157192
2025-08-26T19:34:20.1931687Z [157192] Checking whether to label PR as stale.
2025-08-26T19:34:20.1932048Z [157192] Skipping because PR was updated recently
2025-08-26T19:34:20.1932512Z ##[endgroup]
2025-08-26T19:34:20.1932871Z ##[group]Processing PR #157193
2025-08-26T19:34:20.1933202Z [157193] URL: https://github.com/pytorch/pytorch/pull/157193
2025-08-26T19:34:20.1933599Z [157193] Checking whether to label PR as stale.
2025-08-26T19:34:20.1933940Z [157193] Skipping because PR was updated recently
2025-08-26T19:34:20.1934401Z ##[endgroup]
2025-08-26T19:34:20.1934766Z ##[group]Processing PR #157194
2025-08-26T19:34:20.1935101Z [157194] URL: https://github.com/pytorch/pytorch/pull/157194
2025-08-26T19:34:20.1935692Z [157194] Checking whether to label PR as stale.
2025-08-26T19:34:20.1936064Z [157194] Skipping because PR was updated recently
2025-08-26T19:34:20.1936519Z ##[endgroup]
2025-08-26T19:34:20.1936882Z ##[group]Processing PR #157196
2025-08-26T19:34:20.1937370Z [157196] URL: https://github.com/pytorch/pytorch/pull/157196
2025-08-26T19:34:20.1937762Z [157196] Checking whether to label PR as stale.
2025-08-26T19:34:20.1938121Z [157196] Skipping because PR was updated recently
2025-08-26T19:34:20.1938583Z ##[endgroup]
2025-08-26T19:34:20.1938931Z ##[group]Processing PR #157198
2025-08-26T19:34:20.1939281Z [157198] URL: https://github.com/pytorch/pytorch/pull/157198
2025-08-26T19:34:20.1939677Z [157198] Checking whether to label PR as stale.
2025-08-26T19:34:20.1940022Z [157198] Skipping because PR was updated recently
2025-08-26T19:34:20.1940480Z ##[endgroup]
2025-08-26T19:34:20.1940844Z ##[group]Processing PR #157207
2025-08-26T19:34:20.1941178Z [157207] URL: https://github.com/pytorch/pytorch/pull/157207
2025-08-26T19:34:20.1941576Z [157207] Checking whether to label PR as stale.
2025-08-26T19:34:20.1941924Z [157207] Skipping because PR was updated recently
2025-08-26T19:34:20.1942384Z ##[endgroup]
2025-08-26T19:34:20.1942743Z ##[group]Processing PR #157210
2025-08-26T19:34:20.1943092Z [157210] URL: https://github.com/pytorch/pytorch/pull/157210
2025-08-26T19:34:20.1943480Z [157210] Checking whether to label PR as stale.
2025-08-26T19:34:20.1943915Z [157210] Skipping because PR was updated recently
2025-08-26T19:34:20.1944379Z ##[endgroup]
2025-08-26T19:34:20.1944732Z ##[group]Processing PR #157223
2025-08-26T19:34:20.1945084Z [157223] URL: https://github.com/pytorch/pytorch/pull/157223
2025-08-26T19:34:20.1945477Z [157223] Checking whether to label PR as stale.
2025-08-26T19:34:20.1945841Z [157223] Skipping because PR was updated recently
2025-08-26T19:34:20.1946311Z ##[endgroup]
2025-08-26T19:34:20.1946677Z ##[group]Processing PR #157239
2025-08-26T19:34:20.1947014Z [157239] URL: https://github.com/pytorch/pytorch/pull/157239
2025-08-26T19:34:20.1947415Z [157239] Checking whether to label PR as stale.
2025-08-26T19:34:20.1947760Z [157239] Skipping because PR was updated recently
2025-08-26T19:34:20.1948219Z ##[endgroup]
2025-08-26T19:34:20.1948580Z ##[group]Processing PR #157249
2025-08-26T19:34:20.1948923Z [157249] URL: https://github.com/pytorch/pytorch/pull/157249
2025-08-26T19:34:20.1949308Z [157249] Checking whether to label PR as stale.
2025-08-26T19:34:20.1949661Z [157249] Skipping because PR was updated recently
2025-08-26T19:34:20.1950107Z ##[endgroup]
2025-08-26T19:34:20.1950467Z ##[group]Processing PR #157253
2025-08-26T19:34:20.1950809Z [157253] URL: https://github.com/pytorch/pytorch/pull/157253
2025-08-26T19:34:20.1951195Z [157253] Checking whether to label PR as stale.
2025-08-26T19:34:20.1951552Z [157253] Skipping because PR was updated recently
2025-08-26T19:34:20.1952103Z ##[endgroup]
2025-08-26T19:34:20.1952467Z ##[group]Processing PR #157262
2025-08-26T19:34:20.1952803Z [157262] URL: https://github.com/pytorch/pytorch/pull/157262
2025-08-26T19:34:20.1953204Z [157262] Checking whether to label PR as stale.
2025-08-26T19:34:20.1953551Z [157262] Skipping because PR was updated recently
2025-08-26T19:34:20.1954006Z ##[endgroup]
2025-08-26T19:34:20.1954371Z ##[group]Processing PR #157263
2025-08-26T19:34:20.1954707Z [157263] URL: https://github.com/pytorch/pytorch/pull/157263
2025-08-26T19:34:20.1955107Z [157263] Checking whether to label PR as stale.
2025-08-26T19:34:20.1955463Z [157263] Skipping because PR was updated recently
2025-08-26T19:34:20.1955908Z ##[endgroup]
2025-08-26T19:34:20.1956267Z ##[group]Processing PR #157264
2025-08-26T19:34:20.1956619Z [157264] URL: https://github.com/pytorch/pytorch/pull/157264
2025-08-26T19:34:20.1957012Z [157264] Checking whether to label PR as stale.
2025-08-26T19:34:20.1957370Z [157264] Skipping because PR was updated recently
2025-08-26T19:34:20.1957836Z ##[endgroup]
2025-08-26T19:34:20.1958198Z ##[group]Processing PR #157269
2025-08-26T19:34:20.1958535Z [157269] URL: https://github.com/pytorch/pytorch/pull/157269
2025-08-26T19:34:20.1958936Z [157269] Checking whether to label PR as stale.
2025-08-26T19:34:20.1959279Z [157269] Skipping because PR was updated recently
2025-08-26T19:34:20.1959738Z ##[endgroup]
2025-08-26T19:34:20.1960151Z ##[group]Processing PR #157287
2025-08-26T19:34:20.1960487Z [157287] URL: https://github.com/pytorch/pytorch/pull/157287
2025-08-26T19:34:20.1960892Z [157287] Checking whether to label PR as stale.
2025-08-26T19:34:20.1961251Z [157287] Skipping because PR was updated recently
2025-08-26T19:34:20.1961703Z ##[endgroup]
2025-08-26T19:34:20.1962072Z ##[group]Processing PR #157291
2025-08-26T19:34:20.1962421Z [157291] URL: https://github.com/pytorch/pytorch/pull/157291
2025-08-26T19:34:20.1962811Z [157291] Checking whether to label PR as stale.
2025-08-26T19:34:20.1963173Z [157291] Skipping because PR was updated recently
2025-08-26T19:34:20.1963646Z ##[endgroup]
2025-08-26T19:34:20.1964001Z ##[group]Processing PR #157295
2025-08-26T19:34:20.1964353Z [157295] URL: https://github.com/pytorch/pytorch/pull/157295
2025-08-26T19:34:20.1964758Z [157295] Checking whether to label PR as stale.
2025-08-26T19:34:20.1965104Z [157295] Skipping because PR was updated recently
2025-08-26T19:34:20.1965577Z ##[endgroup]
2025-08-26T19:34:20.1965939Z ##[group]Processing PR #157298
2025-08-26T19:34:20.1966271Z [157298] URL: https://github.com/pytorch/pytorch/pull/157298
2025-08-26T19:34:20.1966677Z [157298] Checking whether to label PR as stale.
2025-08-26T19:34:20.1967024Z [157298] Skipping because PR was updated recently
2025-08-26T19:34:20.1967485Z ##[endgroup]
2025-08-26T19:34:20.1967843Z ##[group]Processing PR #157309
2025-08-26T19:34:20.1968188Z [157309] URL: https://github.com/pytorch/pytorch/pull/157309
2025-08-26T19:34:20.1968573Z [157309] Checking whether to label PR as stale.
2025-08-26T19:34:20.1968930Z [157309] Skipping because PR was updated recently
2025-08-26T19:34:20.1969388Z ##[endgroup]
2025-08-26T19:34:20.1969735Z ##[group]Processing PR #157331
2025-08-26T19:34:20.1970079Z [157331] URL: https://github.com/pytorch/pytorch/pull/157331
2025-08-26T19:34:20.1970477Z [157331] Checking whether to label PR as stale.
2025-08-26T19:34:20.1970822Z [157331] Skipping because PR was updated recently
2025-08-26T19:34:20.1971281Z ##[endgroup]
2025-08-26T19:34:20.1971641Z ##[group]Processing PR #157333
2025-08-26T19:34:20.1971976Z [157333] URL: https://github.com/pytorch/pytorch/pull/157333
2025-08-26T19:34:20.1972380Z [157333] Checking whether to label PR as stale.
2025-08-26T19:34:20.1972724Z [157333] Skipping because PR was updated recently
2025-08-26T19:34:20.1973190Z ##[endgroup]
2025-08-26T19:34:20.1973555Z ##[group]Processing PR #157353
2025-08-26T19:34:20.1973902Z [157353] URL: https://github.com/pytorch/pytorch/pull/157353
2025-08-26T19:34:20.1974292Z [157353] Checking whether to label PR as stale.
2025-08-26T19:34:20.1974749Z [157353] Skipping because PR was updated recently
2025-08-26T19:34:20.1975195Z ##[endgroup]
2025-08-26T19:34:20.1975558Z ##[group]Processing PR #157380
2025-08-26T19:34:20.1975904Z [157380] URL: https://github.com/pytorch/pytorch/pull/157380
2025-08-26T19:34:20.1976294Z [157380] Checking whether to label PR as stale.
2025-08-26T19:34:20.1976656Z [157380] Skipping because PR was updated recently
2025-08-26T19:34:20.1977118Z ##[endgroup]
2025-08-26T19:34:20.1977483Z ##[group]Processing PR #157389
2025-08-26T19:34:20.1977818Z [157389] URL: https://github.com/pytorch/pytorch/pull/157389
2025-08-26T19:34:20.1978220Z [157389] Checking whether to label PR as stale.
2025-08-26T19:34:20.1978566Z [157389] Skipping because PR was updated recently
2025-08-26T19:34:20.1979027Z ##[endgroup]
2025-08-26T19:34:20.1979387Z ##[group]Processing PR #157392
2025-08-26T19:34:20.1979721Z [157392] URL: https://github.com/pytorch/pytorch/pull/157392
2025-08-26T19:34:20.1980121Z [157392] Checking whether to label PR as stale.
2025-08-26T19:34:20.1980482Z [157392] Skipping because PR was updated recently
2025-08-26T19:34:20.1980927Z ##[endgroup]
2025-08-26T19:34:20.1981288Z ##[group]Processing PR #157411
2025-08-26T19:34:20.1981631Z [157411] URL: https://github.com/pytorch/pytorch/pull/157411
2025-08-26T19:34:20.1982018Z [157411] Checking whether to label PR as stale.
2025-08-26T19:34:20.1982434Z [157411] Skipping because PR was updated recently
2025-08-26T19:34:20.1982895Z ##[endgroup]
2025-08-26T19:34:20.1983255Z ##[group]Processing PR #157423
2025-08-26T19:34:20.1983665Z [157423] URL: https://github.com/pytorch/pytorch/pull/157423
2025-08-26T19:34:20.1984078Z [157423] Checking whether to label PR as stale.
2025-08-26T19:34:20.1984422Z [157423] Skipping because PR was updated recently
2025-08-26T19:34:20.1984884Z ##[endgroup]
2025-08-26T19:34:20.1985249Z ##[group]Processing PR #157430
2025-08-26T19:34:20.1985582Z [157430] URL: https://github.com/pytorch/pytorch/pull/157430
2025-08-26T19:34:20.1985980Z [157430] Checking whether to label PR as stale.
2025-08-26T19:34:20.1986342Z [157430] Skipping because PR was updated recently
2025-08-26T19:34:20.1986791Z ##[endgroup]
2025-08-26T19:34:20.1987152Z ##[group]Processing PR #157432
2025-08-26T19:34:20.1987497Z [157432] URL: https://github.com/pytorch/pytorch/pull/157432
2025-08-26T19:34:20.1987888Z [157432] Checking whether to label PR as stale.
2025-08-26T19:34:20.1988246Z [157432] Skipping because PR was updated recently
2025-08-26T19:34:20.1988707Z ##[endgroup]
2025-08-26T19:34:20.1989064Z ##[group]Processing PR #157437
2025-08-26T19:34:20.1989414Z [157437] URL: https://github.com/pytorch/pytorch/pull/157437
2025-08-26T19:34:20.1989821Z [157437] Checking whether to label PR as stale.
2025-08-26T19:34:20.1990168Z [157437] Skipping because PR was updated recently
2025-08-26T19:34:20.1990633Z ##[endgroup]
2025-08-26T19:34:20.1990991Z ##[group]Processing PR #157447
2025-08-26T19:34:20.1991327Z [157447] URL: https://github.com/pytorch/pytorch/pull/157447
2025-08-26T19:34:20.1991731Z [157447] Checking whether to label PR as stale.
2025-08-26T19:34:20.1992074Z [157447] Skipping because PR was updated recently
2025-08-26T19:34:20.1992533Z ##[endgroup]
2025-08-26T19:34:20.1992906Z ##[group]Processing PR #157478
2025-08-26T19:34:20.1993256Z [157478] URL: https://github.com/pytorch/pytorch/pull/157478
2025-08-26T19:34:20.1993646Z [157478] Checking whether to label PR as stale.
2025-08-26T19:34:20.1994010Z [157478] Skipping because PR was updated recently
2025-08-26T19:34:20.1994476Z ##[endgroup]
2025-08-26T19:34:20.1994831Z ##[group]Processing PR #157481
2025-08-26T19:34:20.1995188Z [157481] URL: https://github.com/pytorch/pytorch/pull/157481
2025-08-26T19:34:20.1995593Z [157481] Checking whether to label PR as stale.
2025-08-26T19:34:20.1995941Z [157481] Skipping because PR was updated recently
2025-08-26T19:34:20.1996410Z ##[endgroup]
2025-08-26T19:34:20.1996784Z ##[group]Processing PR #157493
2025-08-26T19:34:20.1997124Z [157493] URL: https://github.com/pytorch/pytorch/pull/157493
2025-08-26T19:34:20.1997617Z [157493] Checking whether to label PR as stale.
2025-08-26T19:34:20.1997966Z [157493] Skipping because PR was updated recently
2025-08-26T19:34:20.1998436Z ##[endgroup]
2025-08-26T19:34:20.1998804Z ##[group]Processing PR #157499
2025-08-26T19:34:20.1999153Z [157499] URL: https://github.com/pytorch/pytorch/pull/157499
2025-08-26T19:34:20.1999544Z [157499] Checking whether to label PR as stale.
2025-08-26T19:34:20.1999904Z [157499] Skipping because PR was updated recently
2025-08-26T19:34:20.2000365Z ##[endgroup]
2025-08-26T19:34:20.2000714Z ##[group]Processing PR #157500
2025-08-26T19:34:20.2001062Z [157500] URL: https://github.com/pytorch/pytorch/pull/157500
2025-08-26T19:34:20.2001446Z [157500] Checking whether to label PR as stale.
2025-08-26T19:34:20.2001801Z [157500] Skipping because PR was updated recently
2025-08-26T19:34:20.2002255Z ##[endgroup]
2025-08-26T19:34:20.2002618Z ##[group]Processing PR #157505
2025-08-26T19:34:20.2002952Z [157505] URL: https://github.com/pytorch/pytorch/pull/157505
2025-08-26T19:34:20.2003354Z [157505] Checking whether to label PR as stale.
2025-08-26T19:34:20.2003696Z [157505] Skipping because PR was updated recently
2025-08-26T19:34:20.2004155Z ##[endgroup]
2025-08-26T19:34:20.2004518Z ##[group]Processing PR #157506
2025-08-26T19:34:20.2004856Z [157506] URL: https://github.com/pytorch/pytorch/pull/157506
2025-08-26T19:34:20.2005410Z [157506] Checking whether to label PR as stale.
2025-08-26T19:34:20.2005946Z [157506] Skipping because PR was updated recently
2025-08-26T19:34:20.2006655Z ##[endgroup]
2025-08-26T19:34:20.2007247Z ##[group]Processing PR #157507
2025-08-26T19:34:20.2007807Z [157507] URL: https://github.com/pytorch/pytorch/pull/157507
2025-08-26T19:34:20.2008403Z [157507] Checking whether to label PR as stale.
2025-08-26T19:34:20.2008953Z [157507] Skipping because PR was updated recently
2025-08-26T19:34:20.2009721Z ##[endgroup]
2025-08-26T19:34:20.2010271Z ##[group]Processing PR #157511
2025-08-26T19:34:20.2010838Z [157511] URL: https://github.com/pytorch/pytorch/pull/157511
2025-08-26T19:34:20.2011534Z [157511] Checking whether to label PR as stale.
2025-08-26T19:34:20.2012133Z [157511] Skipping because PR was updated recently
2025-08-26T19:34:20.2012944Z ##[endgroup]
2025-08-26T19:34:20.2013554Z ##[group]Processing PR #157537
2025-08-26T19:34:20.2013993Z [157537] URL: https://github.com/pytorch/pytorch/pull/157537
2025-08-26T19:34:20.2014421Z [157537] Checking whether to label PR as stale.
2025-08-26T19:34:20.2014783Z [157537] Skipping because PR was updated recently
2025-08-26T19:34:20.2015249Z ##[endgroup]
2025-08-26T19:34:20.2015617Z ##[group]Processing PR #157553
2025-08-26T19:34:20.2015967Z [157553] URL: https://github.com/pytorch/pytorch/pull/157553
2025-08-26T19:34:20.2016357Z [157553] Checking whether to label PR as stale.
2025-08-26T19:34:20.2016715Z [157553] Skipping because PR was updated recently
2025-08-26T19:34:20.2017174Z ##[endgroup]
2025-08-26T19:34:20.2017527Z ##[group]Processing PR #157554
2025-08-26T19:34:20.2017884Z [157554] URL: https://github.com/pytorch/pytorch/pull/157554
2025-08-26T19:34:20.2018285Z [157554] Checking whether to label PR as stale.
2025-08-26T19:34:20.2018628Z [157554] Skipping because PR was updated recently
2025-08-26T19:34:20.2019095Z ##[endgroup]
2025-08-26T19:34:20.2019458Z ##[group]Processing PR #157572
2025-08-26T19:34:20.2019795Z [157572] URL: https://github.com/pytorch/pytorch/pull/157572
2025-08-26T19:34:20.2020198Z [157572] Checking whether to label PR as stale.
2025-08-26T19:34:20.2020544Z [157572] Skipping because PR was updated recently
2025-08-26T19:34:20.2021000Z ##[endgroup]
2025-08-26T19:34:20.2021364Z ##[group]Processing PR #157576
2025-08-26T19:34:20.2021712Z [157576] URL: https://github.com/pytorch/pytorch/pull/157576
2025-08-26T19:34:20.2022106Z [157576] Checking whether to label PR as stale.
2025-08-26T19:34:20.2022463Z [157576] Skipping because PR was updated recently
2025-08-26T19:34:20.2022925Z ##[endgroup]
2025-08-26T19:34:20.2023271Z ##[group]Processing PR #157580
2025-08-26T19:34:20.2023845Z [157580] URL: https://github.com/pytorch/pytorch/pull/157580
2025-08-26T19:34:20.2024250Z [157580] Checking whether to label PR as stale.
2025-08-26T19:34:20.2024598Z [157580] Skipping because PR was updated recently
2025-08-26T19:34:20.2025061Z ##[endgroup]
2025-08-26T19:34:20.2025429Z ##[group]Processing PR #157586
2025-08-26T19:34:20.2025770Z [157586] URL: https://github.com/pytorch/pytorch/pull/157586
2025-08-26T19:34:20.2026173Z [157586] Checking whether to label PR as stale.
2025-08-26T19:34:20.2026519Z [157586] Skipping because PR was updated recently
2025-08-26T19:34:20.2034939Z ##[endgroup]
2025-08-26T19:34:20.2035365Z ##[group]Processing PR #157595
2025-08-26T19:34:20.2035982Z [157595] URL: https://github.com/pytorch/pytorch/pull/157595
2025-08-26T19:34:20.2036392Z [157595] Checking whether to label PR as stale.
2025-08-26T19:34:20.2036767Z [157595] Skipping because PR was updated recently
2025-08-26T19:34:20.2037248Z ##[endgroup]
2025-08-26T19:34:20.2037623Z ##[group]Processing PR #157613
2025-08-26T19:34:20.2037978Z [157613] URL: https://github.com/pytorch/pytorch/pull/157613
2025-08-26T19:34:20.2038388Z [157613] Checking whether to label PR as stale.
2025-08-26T19:34:20.2038738Z [157613] Skipping because PR was updated recently
2025-08-26T19:34:20.2039206Z ##[endgroup]
2025-08-26T19:34:20.2039579Z ##[group]Processing PR #157620
2025-08-26T19:34:20.2040071Z [157620] URL: https://github.com/pytorch/pytorch/pull/157620
2025-08-26T19:34:20.2040482Z [157620] Checking whether to label PR as stale.
2025-08-26T19:34:20.2040846Z [157620] Skipping because PR was updated recently
2025-08-26T19:34:20.2041301Z ##[endgroup]
2025-08-26T19:34:20.2041672Z ##[group]Processing PR #157635
2025-08-26T19:34:20.2042024Z [157635] URL: https://github.com/pytorch/pytorch/pull/157635
2025-08-26T19:34:20.2042417Z [157635] Checking whether to label PR as stale.
2025-08-26T19:34:20.2042782Z [157635] Skipping because PR was updated recently
2025-08-26T19:34:20.2043243Z ##[endgroup]
2025-08-26T19:34:20.2043610Z ##[group]Processing PR #157685
2025-08-26T19:34:20.2043947Z [157685] URL: https://github.com/pytorch/pytorch/pull/157685
2025-08-26T19:34:20.2044347Z [157685] Checking whether to label PR as stale.
2025-08-26T19:34:20.2044694Z [157685] Skipping because PR was updated recently
2025-08-26T19:34:20.2045154Z ##[endgroup]
2025-08-26T19:34:20.2045515Z ##[group]Processing PR #157686
2025-08-26T19:34:20.2045856Z [157686] URL: https://github.com/pytorch/pytorch/pull/157686
2025-08-26T19:34:20.2046259Z [157686] Checking whether to label PR as stale.
2025-08-26T19:34:20.2046620Z [157686] Skipping because PR was updated recently
2025-08-26T19:34:20.2047070Z ##[endgroup]
2025-08-26T19:34:20.2047436Z ##[group]Processing PR #157687
2025-08-26T19:34:20.2047786Z [157687] URL: https://github.com/pytorch/pytorch/pull/157687
2025-08-26T19:34:20.2048178Z [157687] Checking whether to label PR as stale.
2025-08-26T19:34:20.2048538Z [157687] Skipping because PR was updated recently
2025-08-26T19:34:20.2049001Z ##[endgroup]
2025-08-26T19:34:20.2049361Z ##[group]Processing PR #157688
2025-08-26T19:34:20.2049713Z [157688] URL: https://github.com/pytorch/pytorch/pull/157688
2025-08-26T19:34:20.2050118Z [157688] Checking whether to label PR as stale.
2025-08-26T19:34:20.2050466Z [157688] Skipping because PR was updated recently
2025-08-26T19:34:20.2050926Z ##[endgroup]
2025-08-26T19:34:20.2051289Z ##[group]Processing PR #157689
2025-08-26T19:34:20.2051628Z [157689] URL: https://github.com/pytorch/pytorch/pull/157689
2025-08-26T19:34:20.2052033Z [157689] Checking whether to label PR as stale.
2025-08-26T19:34:20.2052379Z [157689] Skipping because PR was updated recently
2025-08-26T19:34:20.2052845Z ##[endgroup]
2025-08-26T19:34:21.3715260Z ##[group]Processing PR #157699
2025-08-26T19:34:21.3716561Z [157699] URL: https://github.com/pytorch/pytorch/pull/157699
2025-08-26T19:34:21.3717725Z [157699] Checking whether to label PR as stale.
2025-08-26T19:34:21.3718954Z [157699] Skipping because PR was updated recently
2025-08-26T19:34:21.3720520Z ##[endgroup]
2025-08-26T19:34:21.3721413Z ##[group]Processing PR #157710
2025-08-26T19:34:21.3722276Z [157710] URL: https://github.com/pytorch/pytorch/pull/157710
2025-08-26T19:34:21.3723190Z [157710] Checking whether to label PR as stale.
2025-08-26T19:34:21.3724255Z [157710] Skipping because PR was updated recently
2025-08-26T19:34:21.3725350Z ##[endgroup]
2025-08-26T19:34:21.3726046Z ##[group]Processing PR #157712
2025-08-26T19:34:21.3726679Z [157712] URL: https://github.com/pytorch/pytorch/pull/157712
2025-08-26T19:34:21.3727421Z [157712] Checking whether to label PR as stale.
2025-08-26T19:34:21.3728092Z [157712] Skipping because PR was updated recently
2025-08-26T19:34:21.3728938Z ##[endgroup]
2025-08-26T19:34:21.3729579Z ##[group]Processing PR #157713
2025-08-26T19:34:21.3730222Z [157713] URL: https://github.com/pytorch/pytorch/pull/157713
2025-08-26T19:34:21.3730973Z [157713] Checking whether to label PR as stale.
2025-08-26T19:34:21.3731629Z [157713] Skipping because PR was updated recently
2025-08-26T19:34:21.3732480Z ##[endgroup]
2025-08-26T19:34:21.3733138Z ##[group]Processing PR #157743
2025-08-26T19:34:21.3733770Z [157743] URL: https://github.com/pytorch/pytorch/pull/157743
2025-08-26T19:34:21.3734481Z [157743] Checking whether to label PR as stale.
2025-08-26T19:34:21.3735090Z [157743] Skipping because PR was updated recently
2025-08-26T19:34:21.3791149Z ##[endgroup]
2025-08-26T19:34:21.3792094Z ##[group]Processing PR #157748
2025-08-26T19:34:21.3792684Z [157748] URL: https://github.com/pytorch/pytorch/pull/157748
2025-08-26T19:34:21.3793331Z [157748] Checking whether to label PR as stale.
2025-08-26T19:34:21.3793928Z [157748] Skipping because PR was updated recently
2025-08-26T19:34:21.3794679Z ##[endgroup]
2025-08-26T19:34:21.3795190Z ##[group]Processing PR #157755
2025-08-26T19:34:21.3795833Z [157755] URL: https://github.com/pytorch/pytorch/pull/157755
2025-08-26T19:34:21.3796516Z [157755] Checking whether to label PR as stale.
2025-08-26T19:34:21.3797043Z [157755] Skipping because PR was updated recently
2025-08-26T19:34:21.3797802Z ##[endgroup]
2025-08-26T19:34:21.3798449Z ##[group]Processing PR #157765
2025-08-26T19:34:21.3799080Z [157765] URL: https://github.com/pytorch/pytorch/pull/157765
2025-08-26T19:34:21.3799841Z [157765] Checking whether to label PR as stale.
2025-08-26T19:34:21.3800507Z [157765] Skipping because PR was updated recently
2025-08-26T19:34:21.3801322Z ##[endgroup]
2025-08-26T19:34:21.3801986Z ##[group]Processing PR #157767
2025-08-26T19:34:21.3802626Z [157767] URL: https://github.com/pytorch/pytorch/pull/157767
2025-08-26T19:34:21.3803334Z [157767] Checking whether to label PR as stale.
2025-08-26T19:34:21.3803921Z [157767] Skipping because PR was updated recently
2025-08-26T19:34:21.3804658Z ##[endgroup]
2025-08-26T19:34:21.3805241Z ##[group]Processing PR #157768
2025-08-26T19:34:21.3805807Z [157768] URL: https://github.com/pytorch/pytorch/pull/157768
2025-08-26T19:34:21.3806444Z [157768] Checking whether to label PR as stale.
2025-08-26T19:34:21.3807014Z [157768] Skipping because PR was updated recently
2025-08-26T19:34:21.3808132Z ##[endgroup]
2025-08-26T19:34:21.3808770Z ##[group]Processing PR #157774
2025-08-26T19:34:21.3809355Z [157774] URL: https://github.com/pytorch/pytorch/pull/157774
2025-08-26T19:34:21.3810039Z [157774] Checking whether to label PR as stale.
2025-08-26T19:34:21.3810646Z [157774] Skipping because PR was updated recently
2025-08-26T19:34:21.3811443Z ##[endgroup]
2025-08-26T19:34:21.3812052Z ##[group]Processing PR #157782
2025-08-26T19:34:21.3812638Z [157782] URL: https://github.com/pytorch/pytorch/pull/157782
2025-08-26T19:34:21.3813318Z [157782] Checking whether to label PR as stale.
2025-08-26T19:34:21.3813892Z [157782] Skipping because PR was updated recently
2025-08-26T19:34:21.3814652Z ##[endgroup]
2025-08-26T19:34:21.3815242Z ##[group]Processing PR #157786
2025-08-26T19:34:21.3815840Z [157786] URL: https://github.com/pytorch/pytorch/pull/157786
2025-08-26T19:34:21.3816534Z [157786] Checking whether to label PR as stale.
2025-08-26T19:34:21.3817371Z [157786] Skipping because PR was updated recently
2025-08-26T19:34:21.3818184Z ##[endgroup]
2025-08-26T19:34:21.3818843Z ##[group]Processing PR #157791
2025-08-26T19:34:21.3819436Z [157791] URL: https://github.com/pytorch/pytorch/pull/157791
2025-08-26T19:34:21.3820137Z [157791] Checking whether to label PR as stale.
2025-08-26T19:34:21.3820700Z [157791] Skipping because PR was updated recently
2025-08-26T19:34:21.3821452Z ##[endgroup]
2025-08-26T19:34:21.3822033Z ##[group]Processing PR #157812
2025-08-26T19:34:21.3822564Z [157812] URL: https://github.com/pytorch/pytorch/pull/157812
2025-08-26T19:34:21.3823212Z [157812] Checking whether to label PR as stale.
2025-08-26T19:34:21.3823864Z [157812] Skipping because PR was updated recently
2025-08-26T19:34:21.3824621Z ##[endgroup]
2025-08-26T19:34:21.3825209Z ##[group]Processing PR #157813
2025-08-26T19:34:21.3825750Z [157813] URL: https://github.com/pytorch/pytorch/pull/157813
2025-08-26T19:34:21.3826420Z [157813] Checking whether to label PR as stale.
2025-08-26T19:34:21.3827024Z [157813] Skipping because PR was updated recently
2025-08-26T19:34:21.3827806Z ##[endgroup]
2025-08-26T19:34:21.3828378Z ##[group]Processing PR #157814
2025-08-26T19:34:21.3828933Z [157814] URL: https://github.com/pytorch/pytorch/pull/157814
2025-08-26T19:34:21.3829601Z [157814] Checking whether to label PR as stale.
2025-08-26T19:34:21.3830363Z [157814] Skipping because PR was updated recently
2025-08-26T19:34:21.3831141Z ##[endgroup]
2025-08-26T19:34:21.3831747Z ##[group]Processing PR #157815
2025-08-26T19:34:21.3832324Z [157815] URL: https://github.com/pytorch/pytorch/pull/157815
2025-08-26T19:34:21.3832992Z [157815] Checking whether to label PR as stale.
2025-08-26T19:34:21.3833552Z [157815] Skipping because PR was updated recently
2025-08-26T19:34:21.3834320Z ##[endgroup]
2025-08-26T19:34:21.3834921Z ##[group]Processing PR #157854
2025-08-26T19:34:21.3835706Z [157854] URL: https://github.com/pytorch/pytorch/pull/157854
2025-08-26T19:34:21.3836384Z [157854] Checking whether to label PR as stale.
2025-08-26T19:34:21.3836998Z [157854] Skipping because PR was updated recently
2025-08-26T19:34:21.3837798Z ##[endgroup]
2025-08-26T19:34:21.3838392Z ##[group]Processing PR #157859
2025-08-26T19:34:21.3838983Z [157859] URL: https://github.com/pytorch/pytorch/pull/157859
2025-08-26T19:34:21.3839617Z [157859] Checking whether to label PR as stale.
2025-08-26T19:34:21.3840219Z [157859] Skipping because PR was updated recently
2025-08-26T19:34:21.3841010Z ##[endgroup]
2025-08-26T19:34:21.3841613Z ##[group]Processing PR #157864
2025-08-26T19:34:21.3842172Z [157864] URL: https://github.com/pytorch/pytorch/pull/157864
2025-08-26T19:34:21.3842852Z [157864] Checking whether to label PR as stale.
2025-08-26T19:34:21.3843416Z [157864] Skipping because PR was updated recently
2025-08-26T19:34:21.3844202Z ##[endgroup]
2025-08-26T19:34:21.3844832Z ##[group]Processing PR #157902
2025-08-26T19:34:21.3845367Z [157902] URL: https://github.com/pytorch/pytorch/pull/157902
2025-08-26T19:34:21.3846028Z [157902] Checking whether to label PR as stale.
2025-08-26T19:34:21.3846647Z [157902] Skipping because PR was updated recently
2025-08-26T19:34:21.3847415Z ##[endgroup]
2025-08-26T19:34:21.3848024Z ##[group]Processing PR #157910
2025-08-26T19:34:21.3848613Z [157910] URL: https://github.com/pytorch/pytorch/pull/157910
2025-08-26T19:34:21.3849274Z [157910] Checking whether to label PR as stale.
2025-08-26T19:34:21.3849880Z [157910] Skipping because PR was updated recently
2025-08-26T19:34:21.3850674Z ##[endgroup]
2025-08-26T19:34:21.3851281Z ##[group]Processing PR #157928
2025-08-26T19:34:21.3851849Z [157928] URL: https://github.com/pytorch/pytorch/pull/157928
2025-08-26T19:34:21.3852542Z [157928] Checking whether to label PR as stale.
2025-08-26T19:34:21.3853115Z [157928] Skipping because PR was updated recently
2025-08-26T19:34:21.3853881Z ##[endgroup]
2025-08-26T19:34:21.3854475Z ##[group]Processing PR #157932
2025-08-26T19:34:21.3855014Z [157932] URL: https://github.com/pytorch/pytorch/pull/157932
2025-08-26T19:34:21.3855876Z [157932] Checking whether to label PR as stale.
2025-08-26T19:34:21.3856487Z [157932] Skipping because PR was updated recently
2025-08-26T19:34:21.3857271Z ##[endgroup]
2025-08-26T19:34:21.3857879Z ##[group]Processing PR #157941
2025-08-26T19:34:21.3858465Z [157941] URL: https://github.com/pytorch/pytorch/pull/157941
2025-08-26T19:34:21.3859138Z [157941] Checking whether to label PR as stale.
2025-08-26T19:34:21.3859761Z [157941] Skipping because PR was updated recently
2025-08-26T19:34:21.3860572Z ##[endgroup]
2025-08-26T19:34:21.3861183Z ##[group]Processing PR #157944
2025-08-26T19:34:21.3861767Z [157944] URL: https://github.com/pytorch/pytorch/pull/157944
2025-08-26T19:34:21.3862450Z [157944] Checking whether to label PR as stale.
2025-08-26T19:34:21.3863044Z [157944] Skipping because PR was updated recently
2025-08-26T19:34:21.3863907Z ##[endgroup]
2025-08-26T19:34:21.3864512Z ##[group]Processing PR #157954
2025-08-26T19:34:21.3865062Z [157954] URL: https://github.com/pytorch/pytorch/pull/157954
2025-08-26T19:34:21.3865748Z [157954] Checking whether to label PR as stale.
2025-08-26T19:34:21.3866328Z [157954] Skipping because PR was updated recently
2025-08-26T19:34:21.3867112Z ##[endgroup]
2025-08-26T19:34:21.3867714Z ##[group]Processing PR #157962
2025-08-26T19:34:21.3868296Z [157962] URL: https://github.com/pytorch/pytorch/pull/157962
2025-08-26T19:34:21.3869191Z [157962] Checking whether to label PR as stale.
2025-08-26T19:34:21.3869798Z [157962] Skipping because PR was updated recently
2025-08-26T19:34:21.3870577Z ##[endgroup]
2025-08-26T19:34:21.3871179Z ##[group]Processing PR #157963
2025-08-26T19:34:21.3871777Z [157963] URL: https://github.com/pytorch/pytorch/pull/157963
2025-08-26T19:34:21.3872465Z [157963] Checking whether to label PR as stale.
2025-08-26T19:34:21.3873031Z [157963] Skipping because PR was updated recently
2025-08-26T19:34:21.3873829Z ##[endgroup]
2025-08-26T19:34:21.3874450Z ##[group]Processing PR #157967
2025-08-26T19:34:21.3875012Z [157967] URL: https://github.com/pytorch/pytorch/pull/157967
2025-08-26T19:34:21.3875724Z [157967] Checking whether to label PR as stale.
2025-08-26T19:34:21.3876344Z [157967] Skipping because PR was updated recently
2025-08-26T19:34:21.3877132Z ##[endgroup]
2025-08-26T19:34:21.3877725Z ##[group]Processing PR #157970
2025-08-26T19:34:21.3878300Z [157970] URL: https://github.com/pytorch/pytorch/pull/157970
2025-08-26T19:34:21.3878927Z [157970] Checking whether to label PR as stale.
2025-08-26T19:34:21.3879509Z [157970] Skipping because PR was updated recently
2025-08-26T19:34:21.3880284Z ##[endgroup]
2025-08-26T19:34:21.3880877Z ##[group]Processing PR #157982
2025-08-26T19:34:21.3881415Z [157982] URL: https://github.com/pytorch/pytorch/pull/157982
2025-08-26T19:34:21.3882065Z [157982] Checking whether to label PR as stale.
2025-08-26T19:34:21.3882681Z [157982] Skipping because PR was updated recently
2025-08-26T19:34:21.3883434Z ##[endgroup]
2025-08-26T19:34:21.3884018Z ##[group]Processing PR #157994
2025-08-26T19:34:21.3884566Z [157994] URL: https://github.com/pytorch/pytorch/pull/157994
2025-08-26T19:34:21.3885232Z [157994] Checking whether to label PR as stale.
2025-08-26T19:34:21.3885816Z [157994] Skipping because PR was updated recently
2025-08-26T19:34:21.3886552Z ##[endgroup]
2025-08-26T19:34:21.3887150Z ##[group]Processing PR #158004
2025-08-26T19:34:21.3887736Z [158004] URL: https://github.com/pytorch/pytorch/pull/158004
2025-08-26T19:34:21.3888402Z [158004] Checking whether to label PR as stale.
2025-08-26T19:34:21.3888974Z [158004] Skipping because PR was updated recently
2025-08-26T19:34:21.3889738Z ##[endgroup]
2025-08-26T19:34:21.3890354Z ##[group]Processing PR #158017
2025-08-26T19:34:21.3890941Z [158017] URL: https://github.com/pytorch/pytorch/pull/158017
2025-08-26T19:34:21.3891575Z [158017] Checking whether to label PR as stale.
2025-08-26T19:34:21.3892191Z [158017] Skipping because PR was updated recently
2025-08-26T19:34:21.3892963Z ##[endgroup]
2025-08-26T19:34:21.3893561Z ##[group]Processing PR #158018
2025-08-26T19:34:21.3894161Z [158018] URL: https://github.com/pytorch/pytorch/pull/158018
2025-08-26T19:34:21.3895022Z [158018] Checking whether to label PR as stale.
2025-08-26T19:34:21.3895636Z [158018] Skipping because PR was updated recently
2025-08-26T19:34:21.3896428Z ##[endgroup]
2025-08-26T19:34:21.3897046Z ##[group]Processing PR #158020
2025-08-26T19:34:21.3897628Z [158020] URL: https://github.com/pytorch/pytorch/pull/158020
2025-08-26T19:34:21.3898310Z [158020] Checking whether to label PR as stale.
2025-08-26T19:34:21.3898928Z [158020] Skipping because PR was updated recently
2025-08-26T19:34:21.3899712Z ##[endgroup]
2025-08-26T19:34:21.3900342Z ##[group]Processing PR #158047
2025-08-26T19:34:21.3900972Z [158047] URL: https://github.com/pytorch/pytorch/pull/158047
2025-08-26T19:34:21.3901700Z [158047] Checking whether to label PR as stale.
2025-08-26T19:34:21.3902358Z [158047] Skipping because PR was updated recently
2025-08-26T19:34:21.3903206Z ##[endgroup]
2025-08-26T19:34:21.3903934Z ##[group]Processing PR #158061
2025-08-26T19:34:21.3904508Z [158061] URL: https://github.com/pytorch/pytorch/pull/158061
2025-08-26T19:34:21.3905196Z [158061] Checking whether to label PR as stale.
2025-08-26T19:34:21.3905775Z [158061] Skipping because PR was updated recently
2025-08-26T19:34:21.3906551Z ##[endgroup]
2025-08-26T19:34:21.3907179Z ##[group]Processing PR #158091
2025-08-26T19:34:21.3907889Z [158091] URL: https://github.com/pytorch/pytorch/pull/158091
2025-08-26T19:34:21.3908594Z [158091] Checking whether to label PR as stale.
2025-08-26T19:34:21.3909190Z [158091] Skipping because PR was updated recently
2025-08-26T19:34:21.3909988Z ##[endgroup]
2025-08-26T19:34:21.3910604Z ##[group]Processing PR #158097
2025-08-26T19:34:21.3911190Z [158097] URL: https://github.com/pytorch/pytorch/pull/158097
2025-08-26T19:34:21.3911846Z [158097] Checking whether to label PR as stale.
2025-08-26T19:34:21.3912454Z [158097] Skipping because PR was updated recently
2025-08-26T19:34:21.3913239Z ##[endgroup]
2025-08-26T19:34:21.3913884Z ##[group]Processing PR #158098
2025-08-26T19:34:21.3914456Z [158098] URL: https://github.com/pytorch/pytorch/pull/158098
2025-08-26T19:34:21.3915154Z [158098] Checking whether to label PR as stale.
2025-08-26T19:34:21.3915752Z [158098] Skipping because PR was updated recently
2025-08-26T19:34:21.3916516Z ##[endgroup]
2025-08-26T19:34:21.3917124Z ##[group]Processing PR #158104
2025-08-26T19:34:21.3917743Z [158104] URL: https://github.com/pytorch/pytorch/pull/158104
2025-08-26T19:34:21.3918497Z [158104] Checking whether to label PR as stale.
2025-08-26T19:34:21.3919118Z [158104] Skipping because PR was updated recently
2025-08-26T19:34:21.3919886Z ##[endgroup]
2025-08-26T19:34:21.3920484Z ##[group]Processing PR #158119
2025-08-26T19:34:21.3921065Z [158119] URL: https://github.com/pytorch/pytorch/pull/158119
2025-08-26T19:34:21.3921713Z [158119] Checking whether to label PR as stale.
2025-08-26T19:34:21.3922303Z [158119] Skipping because PR was updated recently
2025-08-26T19:34:21.3923075Z ##[endgroup]
2025-08-26T19:34:21.3923635Z ##[group]Processing PR #158124
2025-08-26T19:34:21.3924227Z [158124] URL: https://github.com/pytorch/pytorch/pull/158124
2025-08-26T19:34:21.3925022Z [158124] Checking whether to label PR as stale.
2025-08-26T19:34:21.3925628Z [158124] Skipping because PR was updated recently
2025-08-26T19:34:21.3926376Z ##[endgroup]
2025-08-26T19:34:21.3926992Z ##[group]Processing PR #158133
2025-08-26T19:34:21.3927565Z [158133] URL: https://github.com/pytorch/pytorch/pull/158133
2025-08-26T19:34:21.3928243Z [158133] Checking whether to label PR as stale.
2025-08-26T19:34:21.3928851Z [158133] Skipping because PR was updated recently
2025-08-26T19:34:21.3929629Z ##[endgroup]
2025-08-26T19:34:21.3930252Z ##[group]Processing PR #158137
2025-08-26T19:34:21.3930862Z [158137] URL: https://github.com/pytorch/pytorch/pull/158137
2025-08-26T19:34:21.3931509Z [158137] Checking whether to label PR as stale.
2025-08-26T19:34:21.3932142Z [158137] Skipping because PR was updated recently
2025-08-26T19:34:21.3932937Z ##[endgroup]
2025-08-26T19:34:21.3933706Z ##[group]Processing PR #158144
2025-08-26T19:34:21.3934317Z [158144] URL: https://github.com/pytorch/pytorch/pull/158144
2025-08-26T19:34:21.3935005Z [158144] Checking whether to label PR as stale.
2025-08-26T19:34:21.3935992Z [158144] Skipping because PR was updated recently
2025-08-26T19:34:21.3936782Z ##[endgroup]
2025-08-26T19:34:21.3937395Z ##[group]Processing PR #158145
2025-08-26T19:34:21.3937981Z [158145] URL: https://github.com/pytorch/pytorch/pull/158145
2025-08-26T19:34:21.3938677Z [158145] Checking whether to label PR as stale.
2025-08-26T19:34:21.3939264Z [158145] Skipping because PR was updated recently
2025-08-26T19:34:21.3940060Z ##[endgroup]
2025-08-26T19:34:21.3940663Z ##[group]Processing PR #158151
2025-08-26T19:34:21.3941256Z [158151] URL: https://github.com/pytorch/pytorch/pull/158151
2025-08-26T19:34:21.3941912Z [158151] Checking whether to label PR as stale.
2025-08-26T19:34:21.3942527Z [158151] Skipping because PR was updated recently
2025-08-26T19:34:21.3943322Z ##[endgroup]
2025-08-26T19:34:21.3944010Z ##[group]Processing PR #158188
2025-08-26T19:34:21.3944632Z [158188] URL: https://github.com/pytorch/pytorch/pull/158188
2025-08-26T19:34:21.3945358Z [158188] Checking whether to label PR as stale.
2025-08-26T19:34:21.3945942Z [158188] Skipping because PR was updated recently
2025-08-26T19:34:21.3946709Z ##[endgroup]
2025-08-26T19:34:21.3947286Z ##[group]Processing PR #158195
2025-08-26T19:34:21.3948075Z [158195] URL: https://github.com/pytorch/pytorch/pull/158195
2025-08-26T19:34:21.3948767Z [158195] Checking whether to label PR as stale.
2025-08-26T19:34:21.3949365Z [158195] Skipping because PR was updated recently
2025-08-26T19:34:21.3950114Z ##[endgroup]
2025-08-26T19:34:21.3950719Z ##[group]Processing PR #158196
2025-08-26T19:34:21.3951314Z [158196] URL: https://github.com/pytorch/pytorch/pull/158196
2025-08-26T19:34:21.3951988Z [158196] Checking whether to label PR as stale.
2025-08-26T19:34:21.3952553Z [158196] Skipping because PR was updated recently
2025-08-26T19:34:21.3953347Z ##[endgroup]
2025-08-26T19:34:21.3953963Z ##[group]Processing PR #158197
2025-08-26T19:34:21.3954592Z [158197] URL: https://github.com/pytorch/pytorch/pull/158197
2025-08-26T19:34:21.3955288Z [158197] Checking whether to label PR as stale.
2025-08-26T19:34:21.3955904Z [158197] Skipping because PR was updated recently
2025-08-26T19:34:21.3956714Z ##[endgroup]
2025-08-26T19:34:21.3957339Z ##[group]Processing PR #158202
2025-08-26T19:34:21.3957932Z [158202] URL: https://github.com/pytorch/pytorch/pull/158202
2025-08-26T19:34:21.3958618Z [158202] Checking whether to label PR as stale.
2025-08-26T19:34:21.3959224Z [158202] Skipping because PR was updated recently
2025-08-26T19:34:21.3960035Z ##[endgroup]
2025-08-26T19:34:21.3960658Z ##[group]Processing PR #158211
2025-08-26T19:34:21.3961228Z [158211] URL: https://github.com/pytorch/pytorch/pull/158211
2025-08-26T19:34:21.3961931Z [158211] Checking whether to label PR as stale.
2025-08-26T19:34:21.3962531Z [158211] Skipping because PR was updated recently
2025-08-26T19:34:21.3963339Z ##[endgroup]
2025-08-26T19:34:21.3963960Z ##[group]Processing PR #158218
2025-08-26T19:34:21.3964550Z [158218] URL: https://github.com/pytorch/pytorch/pull/158218
2025-08-26T19:34:21.3965231Z [158218] Checking whether to label PR as stale.
2025-08-26T19:34:21.3965842Z [158218] Skipping because PR was updated recently
2025-08-26T19:34:21.3966620Z ##[endgroup]
2025-08-26T19:34:21.3967220Z ##[group]Processing PR #158219
2025-08-26T19:34:21.3967822Z [158219] URL: https://github.com/pytorch/pytorch/pull/158219
2025-08-26T19:34:21.3968502Z [158219] Checking whether to label PR as stale.
2025-08-26T19:34:21.3969121Z [158219] Skipping because PR was updated recently
2025-08-26T19:34:21.3969914Z ##[endgroup]
2025-08-26T19:34:21.3970528Z ##[group]Processing PR #158220
2025-08-26T19:34:21.3971108Z [158220] URL: https://github.com/pytorch/pytorch/pull/158220
2025-08-26T19:34:21.3971791Z [158220] Checking whether to label PR as stale.
2025-08-26T19:34:21.3972386Z [158220] Skipping because PR was updated recently
2025-08-26T19:34:21.3973513Z ##[endgroup]
2025-08-26T19:34:21.3974067Z ##[group]Processing PR #158224
2025-08-26T19:34:21.3974684Z [158224] URL: https://github.com/pytorch/pytorch/pull/158224
2025-08-26T19:34:21.3975394Z [158224] Checking whether to label PR as stale.
2025-08-26T19:34:21.3976070Z [158224] Skipping because PR was updated recently
2025-08-26T19:34:21.3976803Z ##[endgroup]
2025-08-26T19:34:21.3977420Z ##[group]Processing PR #158241
2025-08-26T19:34:21.3980123Z [158241] URL: https://github.com/pytorch/pytorch/pull/158241
2025-08-26T19:34:21.3980784Z [158241] Checking whether to label PR as stale.
2025-08-26T19:34:21.3981358Z [158241] Skipping because PR was updated recently
2025-08-26T19:34:21.3982182Z ##[endgroup]
2025-08-26T19:34:21.3982791Z ##[group]Processing PR #158247
2025-08-26T19:34:21.3983365Z [158247] URL: https://github.com/pytorch/pytorch/pull/158247
2025-08-26T19:34:21.3984180Z [158247] Checking whether to label PR as stale.
2025-08-26T19:34:21.3984843Z [158247] Skipping because PR was updated recently
2025-08-26T19:34:21.3985750Z ##[endgroup]
2025-08-26T19:34:21.3986434Z ##[group]Processing PR #158250
2025-08-26T19:34:21.3987075Z [158250] URL: https://github.com/pytorch/pytorch/pull/158250
2025-08-26T19:34:21.3987841Z [158250] Checking whether to label PR as stale.
2025-08-26T19:34:21.3988517Z [158250] Skipping because PR was updated recently
2025-08-26T19:34:21.3989532Z ##[endgroup]
2025-08-26T19:34:21.3990222Z ##[group]Processing PR #158284
2025-08-26T19:34:21.3990881Z [158284] URL: https://github.com/pytorch/pytorch/pull/158284
2025-08-26T19:34:21.3991635Z [158284] Checking whether to label PR as stale.
2025-08-26T19:34:21.3992315Z [158284] Skipping because PR was updated recently
2025-08-26T19:34:21.3993203Z ##[endgroup]
2025-08-26T19:34:21.3993886Z ##[group]Processing PR #158302
2025-08-26T19:34:21.3994528Z [158302] URL: https://github.com/pytorch/pytorch/pull/158302
2025-08-26T19:34:21.3995291Z [158302] Checking whether to label PR as stale.
2025-08-26T19:34:21.3995967Z [158302] Skipping because PR was updated recently
2025-08-26T19:34:21.3996837Z ##[endgroup]
2025-08-26T19:34:21.3997492Z ##[group]Processing PR #158309
2025-08-26T19:34:21.3998084Z [158309] URL: https://github.com/pytorch/pytorch/pull/158309
2025-08-26T19:34:21.3998796Z [158309] Checking whether to label PR as stale.
2025-08-26T19:34:21.3999392Z [158309] Skipping because PR was updated recently
2025-08-26T19:34:21.4000155Z ##[endgroup]
2025-08-26T19:34:21.4000759Z ##[group]Processing PR #158321
2025-08-26T19:34:21.4001358Z [158321] URL: https://github.com/pytorch/pytorch/pull/158321
2025-08-26T19:34:21.4001977Z [158321] Checking whether to label PR as stale.
2025-08-26T19:34:21.4002555Z [158321] Skipping because PR was updated recently
2025-08-26T19:34:21.4003313Z ##[endgroup]
2025-08-26T19:34:21.4003881Z ##[group]Processing PR #158336
2025-08-26T19:34:21.4004426Z [158336] URL: https://github.com/pytorch/pytorch/pull/158336
2025-08-26T19:34:21.4005352Z [158336] Checking whether to label PR as stale.
2025-08-26T19:34:21.4005868Z [158336] Skipping because PR was updated recently
2025-08-26T19:34:21.4006825Z ##[endgroup]
2025-08-26T19:34:21.4007341Z ##[group]Processing PR #158342
2025-08-26T19:34:21.4007896Z [158342] URL: https://github.com/pytorch/pytorch/pull/158342
2025-08-26T19:34:21.4008472Z [158342] Checking whether to label PR as stale.
2025-08-26T19:34:21.4008994Z [158342] Skipping because PR was updated recently
2025-08-26T19:34:21.4009712Z ##[endgroup]
2025-08-26T19:34:21.4010282Z ##[group]Processing PR #158352
2025-08-26T19:34:21.4010819Z [158352] URL: https://github.com/pytorch/pytorch/pull/158352
2025-08-26T19:34:21.4011430Z [158352] Checking whether to label PR as stale.
2025-08-26T19:34:21.4011989Z [158352] Skipping because PR was updated recently
2025-08-26T19:34:21.4012715Z ##[endgroup]
2025-08-26T19:34:21.4013296Z ##[group]Processing PR #158356
2025-08-26T19:34:21.4036257Z [158356] URL: https://github.com/pytorch/pytorch/pull/158356
2025-08-26T19:34:21.4037579Z [158356] Checking whether to label PR as stale.
2025-08-26T19:34:21.4038441Z [158356] Skipping because PR was updated recently
2025-08-26T19:34:21.4039344Z ##[endgroup]
2025-08-26T19:34:21.4039996Z ##[group]Processing PR #158361
2025-08-26T19:34:21.4040611Z [158361] URL: https://github.com/pytorch/pytorch/pull/158361
2025-08-26T19:34:21.4041378Z [158361] Checking whether to label PR as stale.
2025-08-26T19:34:21.4042031Z [158361] Skipping because PR was updated recently
2025-08-26T19:34:21.4042881Z ##[endgroup]
2025-08-26T19:34:21.4043557Z ##[group]Processing PR #158373
2025-08-26T19:34:21.4043966Z [158373] URL: https://github.com/pytorch/pytorch/pull/158373
2025-08-26T19:34:21.4044357Z [158373] Checking whether to label PR as stale.
2025-08-26T19:34:21.4044714Z [158373] Skipping because PR was updated recently
2025-08-26T19:34:21.4045174Z ##[endgroup]
2025-08-26T19:34:21.4045540Z ##[group]Processing PR #158378
2025-08-26T19:34:21.4045888Z [158378] URL: https://github.com/pytorch/pytorch/pull/158378
2025-08-26T19:34:21.4046278Z [158378] Checking whether to label PR as stale.
2025-08-26T19:34:21.4046641Z [158378] Skipping because PR was updated recently
2025-08-26T19:34:21.4047099Z ##[endgroup]
2025-08-26T19:34:21.4047460Z ##[group]Processing PR #158391
2025-08-26T19:34:21.4047795Z [158391] URL: https://github.com/pytorch/pytorch/pull/158391
2025-08-26T19:34:21.4048194Z [158391] Checking whether to label PR as stale.
2025-08-26T19:34:21.4048668Z [158391] Skipping because PR was updated recently
2025-08-26T19:34:21.4049129Z ##[endgroup]
2025-08-26T19:34:21.4049488Z ##[group]Processing PR #158404
2025-08-26T19:34:21.4049821Z [158404] URL: https://github.com/pytorch/pytorch/pull/158404
2025-08-26T19:34:21.4050222Z [158404] Checking whether to label PR as stale.
2025-08-26T19:34:21.4050579Z [158404] Skipping because PR was updated recently
2025-08-26T19:34:21.4051027Z ##[endgroup]
2025-08-26T19:34:21.4051388Z ##[group]Processing PR #158405
2025-08-26T19:34:21.4051734Z [158405] URL: https://github.com/pytorch/pytorch/pull/158405
2025-08-26T19:34:21.4052128Z [158405] Checking whether to label PR as stale.
2025-08-26T19:34:21.4052483Z [158405] Skipping because PR was updated recently
2025-08-26T19:34:21.4052943Z ##[endgroup]
2025-08-26T19:34:21.4053303Z ##[group]Processing PR #158409
2025-08-26T19:34:21.4053638Z [158409] URL: https://github.com/pytorch/pytorch/pull/158409
2025-08-26T19:34:21.4054036Z [158409] Checking whether to label PR as stale.
2025-08-26T19:34:21.4054383Z [158409] Skipping because PR was updated recently
2025-08-26T19:34:21.4054841Z ##[endgroup]
2025-08-26T19:34:21.4055203Z ##[group]Processing PR #158426
2025-08-26T19:34:21.4055540Z [158426] URL: https://github.com/pytorch/pytorch/pull/158426
2025-08-26T19:34:21.4055939Z [158426] Checking whether to label PR as stale.
2025-08-26T19:34:21.4056284Z [158426] Skipping because PR was updated recently
2025-08-26T19:34:21.4056744Z ##[endgroup]
2025-08-26T19:34:21.4057103Z ##[group]Processing PR #158434
2025-08-26T19:34:21.4057451Z [158434] URL: https://github.com/pytorch/pytorch/pull/158434
2025-08-26T19:34:21.4057843Z [158434] Checking whether to label PR as stale.
2025-08-26T19:34:21.4058202Z [158434] Skipping because PR was updated recently
2025-08-26T19:34:21.4058662Z ##[endgroup]
2025-08-26T19:34:21.4059012Z ##[group]Processing PR #158439
2025-08-26T19:34:21.4059357Z [158439] URL: https://github.com/pytorch/pytorch/pull/158439
2025-08-26T19:34:21.4059763Z [158439] Checking whether to label PR as stale.
2025-08-26T19:34:21.4060105Z [158439] Skipping because PR was updated recently
2025-08-26T19:34:21.4060565Z ##[endgroup]
2025-08-26T19:34:21.4060925Z ##[group]Processing PR #158468
2025-08-26T19:34:21.4061260Z [158468] URL: https://github.com/pytorch/pytorch/pull/158468
2025-08-26T19:34:21.4061661Z [158468] Checking whether to label PR as stale.
2025-08-26T19:34:21.4062003Z [158468] Skipping because PR was updated recently
2025-08-26T19:34:21.4062467Z ##[endgroup]
2025-08-26T19:34:21.4062827Z ##[group]Processing PR #158470
2025-08-26T19:34:21.4063174Z [158470] URL: https://github.com/pytorch/pytorch/pull/158470
2025-08-26T19:34:21.4063731Z [158470] Checking whether to label PR as stale.
2025-08-26T19:34:21.4064094Z [158470] Skipping because PR was updated recently
2025-08-26T19:34:21.4064560Z ##[endgroup]
2025-08-26T19:34:21.4064908Z ##[group]Processing PR #158474
2025-08-26T19:34:21.4065255Z [158474] URL: https://github.com/pytorch/pytorch/pull/158474
2025-08-26T19:34:21.4065651Z [158474] Checking whether to label PR as stale.
2025-08-26T19:34:21.4066006Z [158474] Skipping because PR was updated recently
2025-08-26T19:34:21.4066462Z ##[endgroup]
2025-08-26T19:34:21.4066821Z ##[group]Processing PR #158476
2025-08-26T19:34:21.4067156Z [158476] URL: https://github.com/pytorch/pytorch/pull/158476
2025-08-26T19:34:21.4067558Z [158476] Checking whether to label PR as stale.
2025-08-26T19:34:21.4067905Z [158476] Skipping because PR was updated recently
2025-08-26T19:34:21.4068369Z ##[endgroup]
2025-08-26T19:34:21.4068731Z ##[group]Processing PR #158493
2025-08-26T19:34:21.4069078Z [158493] URL: https://github.com/pytorch/pytorch/pull/158493
2025-08-26T19:34:21.4069471Z [158493] Checking whether to label PR as stale.
2025-08-26T19:34:21.4069828Z [158493] Skipping because PR was updated recently
2025-08-26T19:34:21.4070274Z ##[endgroup]
2025-08-26T19:34:21.4070635Z ##[group]Processing PR #158498
2025-08-26T19:34:21.4070984Z [158498] URL: https://github.com/pytorch/pytorch/pull/158498
2025-08-26T19:34:21.4071433Z [158498] Checking whether to label PR as stale.
2025-08-26T19:34:21.4071808Z [158498] Skipping because PR was updated recently
2025-08-26T19:34:21.4072280Z ##[endgroup]
2025-08-26T19:34:21.4072649Z ##[group]Processing PR #158499
2025-08-26T19:34:21.4072987Z [158499] URL: https://github.com/pytorch/pytorch/pull/158499
2025-08-26T19:34:21.4073391Z [158499] Checking whether to label PR as stale.
2025-08-26T19:34:21.4073737Z [158499] Skipping because PR was updated recently
2025-08-26T19:34:21.4074208Z ##[endgroup]
2025-08-26T19:34:21.4074576Z ##[group]Processing PR #158500
2025-08-26T19:34:21.4074918Z [158500] URL: https://github.com/pytorch/pytorch/pull/158500
2025-08-26T19:34:21.4075326Z [158500] Checking whether to label PR as stale.
2025-08-26T19:34:21.4075689Z [158500] Skipping because PR was updated recently
2025-08-26T19:34:21.4076137Z ##[endgroup]
2025-08-26T19:34:21.4076496Z ##[group]Processing PR #158502
2025-08-26T19:34:21.4076844Z [158502] URL: https://github.com/pytorch/pytorch/pull/158502
2025-08-26T19:34:21.4077232Z [158502] Checking whether to label PR as stale.
2025-08-26T19:34:21.4077589Z [158502] Skipping because PR was updated recently
2025-08-26T19:34:21.4078047Z ##[endgroup]
2025-08-26T19:34:21.4078409Z ##[group]Processing PR #158503
2025-08-26T19:34:21.4078743Z [158503] URL: https://github.com/pytorch/pytorch/pull/158503
2025-08-26T19:34:21.4079142Z [158503] Checking whether to label PR as stale.
2025-08-26T19:34:21.4079484Z [158503] Skipping because PR was updated recently
2025-08-26T19:34:21.4079939Z ##[endgroup]
2025-08-26T19:34:21.4080300Z ##[group]Processing PR #158505
2025-08-26T19:34:21.4080639Z [158505] URL: https://github.com/pytorch/pytorch/pull/158505
2025-08-26T19:34:21.4081038Z [158505] Checking whether to label PR as stale.
2025-08-26T19:34:21.4081380Z [158505] Skipping because PR was updated recently
2025-08-26T19:34:21.4081836Z ##[endgroup]
2025-08-26T19:34:21.4082193Z ##[group]Processing PR #158507
2025-08-26T19:34:21.4082539Z [158507] URL: https://github.com/pytorch/pytorch/pull/158507
2025-08-26T19:34:21.4082927Z [158507] Checking whether to label PR as stale.
2025-08-26T19:34:21.4083282Z [158507] Skipping because PR was updated recently
2025-08-26T19:34:21.4083740Z ##[endgroup]
2025-08-26T19:34:21.4084087Z ##[group]Processing PR #158522
2025-08-26T19:34:21.4084435Z [158522] URL: https://github.com/pytorch/pytorch/pull/158522
2025-08-26T19:34:21.4084834Z [158522] Checking whether to label PR as stale.
2025-08-26T19:34:21.4085182Z [158522] Skipping because PR was updated recently
2025-08-26T19:34:21.4085641Z ##[endgroup]
2025-08-26T19:34:21.4086000Z ##[group]Processing PR #158525
2025-08-26T19:34:21.4086399Z [158525] URL: https://github.com/pytorch/pytorch/pull/158525
2025-08-26T19:34:21.4086801Z [158525] Checking whether to label PR as stale.
2025-08-26T19:34:21.4087148Z [158525] Skipping because PR was updated recently
2025-08-26T19:34:21.4087617Z ##[endgroup]
2025-08-26T19:34:21.4087986Z ##[group]Processing PR #158526
2025-08-26T19:34:21.4088342Z [158526] URL: https://github.com/pytorch/pytorch/pull/158526
2025-08-26T19:34:21.4088730Z [158526] Checking whether to label PR as stale.
2025-08-26T19:34:21.4089088Z [158526] Skipping because PR was updated recently
2025-08-26T19:34:21.4089550Z ##[endgroup]
2025-08-26T19:34:21.4089896Z ##[group]Processing PR #158527
2025-08-26T19:34:21.4090241Z [158527] URL: https://github.com/pytorch/pytorch/pull/158527
2025-08-26T19:34:21.4090629Z [158527] Checking whether to label PR as stale.
2025-08-26T19:34:21.4090984Z [158527] Skipping because PR was updated recently
2025-08-26T19:34:21.4091437Z ##[endgroup]
2025-08-26T19:34:21.4091801Z ##[group]Processing PR #158532
2025-08-26T19:34:21.4092137Z [158532] URL: https://github.com/pytorch/pytorch/pull/158532
2025-08-26T19:34:21.4092538Z [158532] Checking whether to label PR as stale.
2025-08-26T19:34:21.4092881Z [158532] Skipping because PR was updated recently
2025-08-26T19:34:21.4093337Z ##[endgroup]
2025-08-26T19:34:21.4093699Z ##[group]Processing PR #158539
2025-08-26T19:34:21.4094291Z [158539] URL: https://github.com/pytorch/pytorch/pull/158539
2025-08-26T19:34:21.4094682Z [158539] Checking whether to label PR as stale.
2025-08-26T19:34:21.4095044Z [158539] Skipping because PR was updated recently
2025-08-26T19:34:21.4095490Z ##[endgroup]
2025-08-26T19:34:22.3987321Z ##[group]Processing PR #158541
2025-08-26T19:34:22.3988223Z [158541] URL: https://github.com/pytorch/pytorch/pull/158541
2025-08-26T19:34:22.3989197Z [158541] Checking whether to label PR as stale.
2025-08-26T19:34:22.3989964Z [158541] Skipping because PR was updated recently
2025-08-26T19:34:22.3990955Z ##[endgroup]
2025-08-26T19:34:22.3991769Z ##[group]Processing PR #158555
2025-08-26T19:34:22.3992508Z [158555] URL: https://github.com/pytorch/pytorch/pull/158555
2025-08-26T19:34:22.3993348Z [158555] Checking whether to label PR as stale.
2025-08-26T19:34:22.3994108Z [158555] Skipping because PR was updated recently
2025-08-26T19:34:22.3995059Z ##[endgroup]
2025-08-26T19:34:22.3995849Z ##[group]Processing PR #158557
2025-08-26T19:34:22.3996605Z [158557] URL: https://github.com/pytorch/pytorch/pull/158557
2025-08-26T19:34:22.3997438Z [158557] Checking whether to label PR as stale.
2025-08-26T19:34:22.3998193Z [158557] Skipping because PR was updated recently
2025-08-26T19:34:22.3999161Z ##[endgroup]
2025-08-26T19:34:22.3999924Z ##[group]Processing PR #158559
2025-08-26T19:34:22.4000653Z [158559] URL: https://github.com/pytorch/pytorch/pull/158559
2025-08-26T19:34:22.4001493Z [158559] Checking whether to label PR as stale.
2025-08-26T19:34:22.4002247Z [158559] Skipping because PR was updated recently
2025-08-26T19:34:22.4003200Z ##[endgroup]
2025-08-26T19:34:22.4003938Z ##[group]Processing PR #158603
2025-08-26T19:34:22.4004595Z [158603] URL: https://github.com/pytorch/pytorch/pull/158603
2025-08-26T19:34:22.4005302Z [158603] Checking whether to label PR as stale.
2025-08-26T19:34:22.4006001Z [158603] Skipping because PR was updated recently
2025-08-26T19:34:22.4006903Z ##[endgroup]
2025-08-26T19:34:22.4007634Z ##[group]Processing PR #158609
2025-08-26T19:34:22.4008283Z [158609] URL: https://github.com/pytorch/pytorch/pull/158609
2025-08-26T19:34:22.4009071Z [158609] Checking whether to label PR as stale.
2025-08-26T19:34:22.4009735Z [158609] Skipping because PR was updated recently
2025-08-26T19:34:22.4012752Z ##[endgroup]
2025-08-26T19:34:22.4013368Z ##[group]Processing PR #158611
2025-08-26T19:34:22.4013962Z [158611] URL: https://github.com/pytorch/pytorch/pull/158611
2025-08-26T19:34:22.4014591Z [158611] Checking whether to label PR as stale.
2025-08-26T19:34:22.4015169Z [158611] Skipping because PR was updated recently
2025-08-26T19:34:22.4016371Z ##[endgroup]
2025-08-26T19:34:22.4016997Z ##[group]Processing PR #158617
2025-08-26T19:34:22.4017468Z [158617] URL: https://github.com/pytorch/pytorch/pull/158617
2025-08-26T19:34:22.4017878Z [158617] Checking whether to label PR as stale.
2025-08-26T19:34:22.4018228Z [158617] Skipping because PR was updated recently
2025-08-26T19:34:22.4018704Z ##[endgroup]
2025-08-26T19:34:22.4019083Z ##[group]Processing PR #158621
2025-08-26T19:34:22.4019432Z [158621] URL: https://github.com/pytorch/pytorch/pull/158621
2025-08-26T19:34:22.4019822Z [158621] Checking whether to label PR as stale.
2025-08-26T19:34:22.4020179Z [158621] Skipping because PR was updated recently
2025-08-26T19:34:22.4020627Z ##[endgroup]
2025-08-26T19:34:22.4020991Z ##[group]Processing PR #158623
2025-08-26T19:34:22.4021340Z [158623] URL: https://github.com/pytorch/pytorch/pull/158623
2025-08-26T19:34:22.4021729Z [158623] Checking whether to label PR as stale.
2025-08-26T19:34:22.4022085Z [158623] Skipping because PR was updated recently
2025-08-26T19:34:22.4022554Z ##[endgroup]
2025-08-26T19:34:22.4022918Z ##[group]Processing PR #158625
2025-08-26T19:34:22.4023252Z [158625] URL: https://github.com/pytorch/pytorch/pull/158625
2025-08-26T19:34:22.4023739Z [158625] Checking whether to label PR as stale.
2025-08-26T19:34:22.4024093Z [158625] Skipping because PR was updated recently
2025-08-26T19:34:22.4024557Z ##[endgroup]
2025-08-26T19:34:22.4025129Z ##[group]Processing PR #158628
2025-08-26T19:34:22.4025468Z [158628] URL: https://github.com/pytorch/pytorch/pull/158628
2025-08-26T19:34:22.4025869Z [158628] Checking whether to label PR as stale.
2025-08-26T19:34:22.4026229Z [158628] Skipping because PR was updated recently
2025-08-26T19:34:22.4026677Z ##[endgroup]
2025-08-26T19:34:22.4027038Z ##[group]Processing PR #158640
2025-08-26T19:34:22.4027388Z [158640] URL: https://github.com/pytorch/pytorch/pull/158640
2025-08-26T19:34:22.4027775Z [158640] Checking whether to label PR as stale.
2025-08-26T19:34:22.4028132Z [158640] Skipping because PR was updated recently
2025-08-26T19:34:22.4028687Z ##[endgroup]
2025-08-26T19:34:22.4029053Z ##[group]Processing PR #158644
2025-08-26T19:34:22.4029393Z [158644] URL: https://github.com/pytorch/pytorch/pull/158644
2025-08-26T19:34:22.4029793Z [158644] Checking whether to label PR as stale.
2025-08-26T19:34:22.4030140Z [158644] Skipping because PR was updated recently
2025-08-26T19:34:22.4030605Z ##[endgroup]
2025-08-26T19:34:22.4030967Z ##[group]Processing PR #158647
2025-08-26T19:34:22.4031299Z [158647] URL: https://github.com/pytorch/pytorch/pull/158647
2025-08-26T19:34:22.4031703Z [158647] Checking whether to label PR as stale.
2025-08-26T19:34:22.4032045Z [158647] Skipping because PR was updated recently
2025-08-26T19:34:22.4032502Z ##[endgroup]
2025-08-26T19:34:22.4032860Z ##[group]Processing PR #158652
2025-08-26T19:34:22.4033207Z [158652] URL: https://github.com/pytorch/pytorch/pull/158652
2025-08-26T19:34:22.4033595Z [158652] Checking whether to label PR as stale.
2025-08-26T19:34:22.4033957Z [158652] Skipping because PR was updated recently
2025-08-26T19:34:22.4034418Z ##[endgroup]
2025-08-26T19:34:22.4034766Z ##[group]Processing PR #158656
2025-08-26T19:34:22.4035113Z [158656] URL: https://github.com/pytorch/pytorch/pull/158656
2025-08-26T19:34:22.4035685Z [158656] Checking whether to label PR as stale.
2025-08-26T19:34:22.4036072Z [158656] Skipping because PR was updated recently
2025-08-26T19:34:22.4036542Z ##[endgroup]
2025-08-26T19:34:22.4036902Z ##[group]Processing PR #158674
2025-08-26T19:34:22.4037236Z [158674] URL: https://github.com/pytorch/pytorch/pull/158674
2025-08-26T19:34:22.4037642Z [158674] Checking whether to label PR as stale.
2025-08-26T19:34:22.4037989Z [158674] Skipping because PR was updated recently
2025-08-26T19:34:22.4038446Z ##[endgroup]
2025-08-26T19:34:22.4038826Z ##[group]Processing PR #158682
2025-08-26T19:34:22.4039174Z [158682] URL: https://github.com/pytorch/pytorch/pull/158682
2025-08-26T19:34:22.4039564Z [158682] Checking whether to label PR as stale.
2025-08-26T19:34:22.4040077Z [158682] Skipping because PR was updated recently
2025-08-26T19:34:22.4040542Z ##[endgroup]
2025-08-26T19:34:22.4040908Z ##[group]Processing PR #158686
2025-08-26T19:34:22.4041243Z [158686] URL: https://github.com/pytorch/pytorch/pull/158686
2025-08-26T19:34:22.4041649Z [158686] Checking whether to label PR as stale.
2025-08-26T19:34:22.4041999Z [158686] Skipping because PR was updated recently
2025-08-26T19:34:22.4042457Z ##[endgroup]
2025-08-26T19:34:22.4042822Z ##[group]Processing PR #158733
2025-08-26T19:34:22.4043172Z [158733] URL: https://github.com/pytorch/pytorch/pull/158733
2025-08-26T19:34:22.4043560Z [158733] Checking whether to label PR as stale.
2025-08-26T19:34:22.4043917Z [158733] Skipping because PR was updated recently
2025-08-26T19:34:22.4044361Z ##[endgroup]
2025-08-26T19:34:22.4044721Z ##[group]Processing PR #158740
2025-08-26T19:34:22.4045069Z [158740] URL: https://github.com/pytorch/pytorch/pull/158740
2025-08-26T19:34:22.4045453Z [158740] Checking whether to label PR as stale.
2025-08-26T19:34:22.4045815Z [158740] Skipping because PR was updated recently
2025-08-26T19:34:22.4046271Z ##[endgroup]
2025-08-26T19:34:22.4046630Z ##[group]Processing PR #158747
2025-08-26T19:34:22.4046961Z [158747] URL: https://github.com/pytorch/pytorch/pull/158747
2025-08-26T19:34:22.4047360Z [158747] Checking whether to label PR as stale.
2025-08-26T19:34:22.4047782Z [158747] Skipping because PR was updated recently
2025-08-26T19:34:22.4048245Z ##[endgroup]
2025-08-26T19:34:22.4048605Z ##[group]Processing PR #158767
2025-08-26T19:34:22.4048941Z [158767] URL: https://github.com/pytorch/pytorch/pull/158767
2025-08-26T19:34:22.4049341Z [158767] Checking whether to label PR as stale.
2025-08-26T19:34:22.4049697Z [158767] Skipping because PR was updated recently
2025-08-26T19:34:22.4050146Z ##[endgroup]
2025-08-26T19:34:22.4050510Z ##[group]Processing PR #158768
2025-08-26T19:34:22.4050864Z [158768] URL: https://github.com/pytorch/pytorch/pull/158768
2025-08-26T19:34:22.4051256Z [158768] Checking whether to label PR as stale.
2025-08-26T19:34:22.4051617Z [158768] Skipping because PR was updated recently
2025-08-26T19:34:22.4052078Z ##[endgroup]
2025-08-26T19:34:22.4052435Z ##[group]Processing PR #158770
2025-08-26T19:34:22.4052769Z [158770] URL: https://github.com/pytorch/pytorch/pull/158770
2025-08-26T19:34:22.4053170Z [158770] Checking whether to label PR as stale.
2025-08-26T19:34:22.4053515Z [158770] Skipping because PR was updated recently
2025-08-26T19:34:22.4053972Z ##[endgroup]
2025-08-26T19:34:22.4054332Z ##[group]Processing PR #158771
2025-08-26T19:34:22.4054666Z [158771] URL: https://github.com/pytorch/pytorch/pull/158771
2025-08-26T19:34:22.4055066Z [158771] Checking whether to label PR as stale.
2025-08-26T19:34:22.4055424Z [158771] Skipping because PR was updated recently
2025-08-26T19:34:22.4055872Z ##[endgroup]
2025-08-26T19:34:22.4056238Z ##[group]Processing PR #158777
2025-08-26T19:34:22.4056586Z [158777] URL: https://github.com/pytorch/pytorch/pull/158777
2025-08-26T19:34:22.4056981Z [158777] Checking whether to label PR as stale.
2025-08-26T19:34:22.4057339Z [158777] Skipping because PR was updated recently
2025-08-26T19:34:22.4057801Z ##[endgroup]
2025-08-26T19:34:22.4058150Z ##[group]Processing PR #158779
2025-08-26T19:34:22.4058499Z [158779] URL: https://github.com/pytorch/pytorch/pull/158779
2025-08-26T19:34:22.4058897Z [158779] Checking whether to label PR as stale.
2025-08-26T19:34:22.4059243Z [158779] Skipping because PR was updated recently
2025-08-26T19:34:22.4059699Z ##[endgroup]
2025-08-26T19:34:22.4060057Z ##[group]Processing PR #158789
2025-08-26T19:34:22.4060393Z [158789] URL: https://github.com/pytorch/pytorch/pull/158789
2025-08-26T19:34:22.4060791Z [158789] Checking whether to label PR as stale.
2025-08-26T19:34:22.4061135Z [158789] Skipping because PR was updated recently
2025-08-26T19:34:22.4061593Z ##[endgroup]
2025-08-26T19:34:22.4061959Z ##[group]Processing PR #158799
2025-08-26T19:34:22.4062303Z [158799] URL: https://github.com/pytorch/pytorch/pull/158799
2025-08-26T19:34:22.4062765Z [158799] Checking whether to label PR as stale.
2025-08-26T19:34:22.4063121Z [158799] Skipping because PR was updated recently
2025-08-26T19:34:22.4063585Z ##[endgroup]
2025-08-26T19:34:22.4064034Z ##[group]Processing PR #158804
2025-08-26T19:34:22.4064387Z [158804] URL: https://github.com/pytorch/pytorch/pull/158804
2025-08-26T19:34:22.4064792Z [158804] Checking whether to label PR as stale.
2025-08-26T19:34:22.4065136Z [158804] Skipping because PR was updated recently
2025-08-26T19:34:22.4065591Z ##[endgroup]
2025-08-26T19:34:22.4065951Z ##[group]Processing PR #158808
2025-08-26T19:34:22.4066284Z [158808] URL: https://github.com/pytorch/pytorch/pull/158808
2025-08-26T19:34:22.4066683Z [158808] Checking whether to label PR as stale.
2025-08-26T19:34:22.4067029Z [158808] Skipping because PR was updated recently
2025-08-26T19:34:22.4067491Z ##[endgroup]
2025-08-26T19:34:22.4067859Z ##[group]Processing PR #158817
2025-08-26T19:34:22.4068209Z [158817] URL: https://github.com/pytorch/pytorch/pull/158817
2025-08-26T19:34:22.4068602Z [158817] Checking whether to label PR as stale.
2025-08-26T19:34:22.4068954Z [158817] Skipping because PR was updated recently
2025-08-26T19:34:22.4077396Z ##[endgroup]
2025-08-26T19:34:22.4077836Z ##[group]Processing PR #158818
2025-08-26T19:34:22.4078201Z [158818] URL: https://github.com/pytorch/pytorch/pull/158818
2025-08-26T19:34:22.4078742Z [158818] Checking whether to label PR as stale.
2025-08-26T19:34:22.4079102Z [158818] Skipping because PR was updated recently
2025-08-26T19:34:22.4079585Z ##[endgroup]
2025-08-26T19:34:22.4079957Z ##[group]Processing PR #158829
2025-08-26T19:34:22.4080298Z [158829] URL: https://github.com/pytorch/pytorch/pull/158829
2025-08-26T19:34:22.4080705Z [158829] Checking whether to label PR as stale.
2025-08-26T19:34:22.4081071Z [158829] Skipping because PR was updated recently
2025-08-26T19:34:22.4081526Z ##[endgroup]
2025-08-26T19:34:22.4081893Z ##[group]Processing PR #158836
2025-08-26T19:34:22.4082245Z [158836] URL: https://github.com/pytorch/pytorch/pull/158836
2025-08-26T19:34:22.4082645Z [158836] Checking whether to label PR as stale.
2025-08-26T19:34:22.4083009Z [158836] Skipping because PR was updated recently
2025-08-26T19:34:22.4083476Z ##[endgroup]
2025-08-26T19:34:22.4083846Z ##[group]Processing PR #158844
2025-08-26T19:34:22.4084184Z [158844] URL: https://github.com/pytorch/pytorch/pull/158844
2025-08-26T19:34:22.4084594Z [158844] Checking whether to label PR as stale.
2025-08-26T19:34:22.4084944Z [158844] Skipping because PR was updated recently
2025-08-26T19:34:22.4085409Z ##[endgroup]
2025-08-26T19:34:22.4085773Z ##[group]Processing PR #158846
2025-08-26T19:34:22.4086110Z [158846] URL: https://github.com/pytorch/pytorch/pull/158846
2025-08-26T19:34:22.4086513Z [158846] Checking whether to label PR as stale.
2025-08-26T19:34:22.4086869Z [158846] Skipping because PR was updated recently
2025-08-26T19:34:22.4087317Z ##[endgroup]
2025-08-26T19:34:22.4087682Z ##[group]Processing PR #158857
2025-08-26T19:34:22.4088039Z [158857] URL: https://github.com/pytorch/pytorch/pull/158857
2025-08-26T19:34:22.4088429Z [158857] Checking whether to label PR as stale.
2025-08-26T19:34:22.4088785Z [158857] Skipping because PR was updated recently
2025-08-26T19:34:22.4089252Z ##[endgroup]
2025-08-26T19:34:22.4089601Z ##[group]Processing PR #158858
2025-08-26T19:34:22.4089952Z [158858] URL: https://github.com/pytorch/pytorch/pull/158858
2025-08-26T19:34:22.4090363Z [158858] Checking whether to label PR as stale.
2025-08-26T19:34:22.4090709Z [158858] Skipping because PR was updated recently
2025-08-26T19:34:22.4091172Z ##[endgroup]
2025-08-26T19:34:22.4091540Z ##[group]Processing PR #158869
2025-08-26T19:34:22.4091878Z [158869] URL: https://github.com/pytorch/pytorch/pull/158869
2025-08-26T19:34:22.4092283Z [158869] Checking whether to label PR as stale.
2025-08-26T19:34:22.4092631Z [158869] Skipping because PR was updated recently
2025-08-26T19:34:22.4093088Z ##[endgroup]
2025-08-26T19:34:22.4093453Z ##[group]Processing PR #158870
2025-08-26T19:34:22.4093882Z [158870] URL: https://github.com/pytorch/pytorch/pull/158870
2025-08-26T19:34:22.4094273Z [158870] Checking whether to label PR as stale.
2025-08-26T19:34:22.4094636Z [158870] Skipping because PR was updated recently
2025-08-26T19:34:22.4095104Z ##[endgroup]
2025-08-26T19:34:22.4095456Z ##[group]Processing PR #158872
2025-08-26T19:34:22.4095814Z [158872] URL: https://github.com/pytorch/pytorch/pull/158872
2025-08-26T19:34:22.4096217Z [158872] Checking whether to label PR as stale.
2025-08-26T19:34:22.4096563Z [158872] Skipping because PR was updated recently
2025-08-26T19:34:22.4097023Z ##[endgroup]
2025-08-26T19:34:22.4097389Z ##[group]Processing PR #158879
2025-08-26T19:34:22.4097726Z [158879] URL: https://github.com/pytorch/pytorch/pull/158879
2025-08-26T19:34:22.4098134Z [158879] Checking whether to label PR as stale.
2025-08-26T19:34:22.4098480Z [158879] Skipping because PR was updated recently
2025-08-26T19:34:22.4098935Z ##[endgroup]
2025-08-26T19:34:22.4099290Z ##[group]Processing PR #158884
2025-08-26T19:34:22.4099647Z [158884] URL: https://github.com/pytorch/pytorch/pull/158884
2025-08-26T19:34:22.4100039Z [158884] Checking whether to label PR as stale.
2025-08-26T19:34:22.4100401Z [158884] Skipping because PR was updated recently
2025-08-26T19:34:22.4100853Z ##[endgroup]
2025-08-26T19:34:22.4101223Z ##[group]Processing PR #158885
2025-08-26T19:34:22.4101632Z [158885] URL: https://github.com/pytorch/pytorch/pull/158885
2025-08-26T19:34:22.4102024Z [158885] Checking whether to label PR as stale.
2025-08-26T19:34:22.4102382Z [158885] Skipping because PR was updated recently
2025-08-26T19:34:22.4102842Z ##[endgroup]
2025-08-26T19:34:22.4103205Z ##[group]Processing PR #158907
2025-08-26T19:34:22.4103539Z [158907] URL: https://github.com/pytorch/pytorch/pull/158907
2025-08-26T19:34:22.4104047Z [158907] Checking whether to label PR as stale.
2025-08-26T19:34:22.4104399Z [158907] Skipping because PR was updated recently
2025-08-26T19:34:22.4104867Z ##[endgroup]
2025-08-26T19:34:22.4105242Z ##[group]Processing PR #158912
2025-08-26T19:34:22.4105579Z [158912] URL: https://github.com/pytorch/pytorch/pull/158912
2025-08-26T19:34:22.4105983Z [158912] Checking whether to label PR as stale.
2025-08-26T19:34:22.4106343Z [158912] Skipping because PR was updated recently
2025-08-26T19:34:22.4106796Z ##[endgroup]
2025-08-26T19:34:22.4107167Z ##[group]Processing PR #158927
2025-08-26T19:34:22.4107508Z [158927] URL: https://github.com/pytorch/pytorch/pull/158927
2025-08-26T19:34:22.4107908Z [158927] Checking whether to label PR as stale.
2025-08-26T19:34:22.4108268Z [158927] Skipping because PR was updated recently
2025-08-26T19:34:22.4108715Z ##[endgroup]
2025-08-26T19:34:22.4109076Z ##[group]Processing PR #158932
2025-08-26T19:34:22.4109425Z [158932] URL: https://github.com/pytorch/pytorch/pull/158932
2025-08-26T19:34:22.4109814Z [158932] Checking whether to label PR as stale.
2025-08-26T19:34:22.4110167Z [158932] Skipping because PR was updated recently
2025-08-26T19:34:22.4110626Z ##[endgroup]
2025-08-26T19:34:22.4110992Z ##[group]Processing PR #158933
2025-08-26T19:34:22.4111326Z [158933] URL: https://github.com/pytorch/pytorch/pull/158933
2025-08-26T19:34:22.4111725Z [158933] Checking whether to label PR as stale.
2025-08-26T19:34:22.4112070Z [158933] Skipping because PR was updated recently
2025-08-26T19:34:22.4112537Z ##[endgroup]
2025-08-26T19:34:22.4112898Z ##[group]Processing PR #158937
2025-08-26T19:34:22.4113235Z [158937] URL: https://github.com/pytorch/pytorch/pull/158937
2025-08-26T19:34:22.4113633Z [158937] Checking whether to label PR as stale.
2025-08-26T19:34:22.4113987Z [158937] Skipping because PR was updated recently
2025-08-26T19:34:22.4114430Z ##[endgroup]
2025-08-26T19:34:22.4114789Z ##[group]Processing PR #158940
2025-08-26T19:34:22.4115136Z [158940] URL: https://github.com/pytorch/pytorch/pull/158940
2025-08-26T19:34:22.4115524Z [158940] Checking whether to label PR as stale.
2025-08-26T19:34:22.4115881Z [158940] Skipping because PR was updated recently
2025-08-26T19:34:22.4116340Z ##[endgroup]
2025-08-26T19:34:22.4116815Z ##[group]Processing PR #158941
2025-08-26T19:34:22.4117164Z [158941] URL: https://github.com/pytorch/pytorch/pull/158941
2025-08-26T19:34:22.4117568Z [158941] Checking whether to label PR as stale.
2025-08-26T19:34:22.4117913Z [158941] Skipping because PR was updated recently
2025-08-26T19:34:22.4118371Z ##[endgroup]
2025-08-26T19:34:22.4118736Z ##[group]Processing PR #158942
2025-08-26T19:34:22.4119069Z [158942] URL: https://github.com/pytorch/pytorch/pull/158942
2025-08-26T19:34:22.4119465Z [158942] Checking whether to label PR as stale.
2025-08-26T19:34:22.4119810Z [158942] Skipping because PR was updated recently
2025-08-26T19:34:22.4120269Z ##[endgroup]
2025-08-26T19:34:22.4120626Z ##[group]Processing PR #158946
2025-08-26T19:34:22.4120974Z [158946] URL: https://github.com/pytorch/pytorch/pull/158946
2025-08-26T19:34:22.4121365Z [158946] Checking whether to label PR as stale.
2025-08-26T19:34:22.4121724Z [158946] Skipping because PR was updated recently
2025-08-26T19:34:22.4122184Z ##[endgroup]
2025-08-26T19:34:22.4122534Z ##[group]Processing PR #158966
2025-08-26T19:34:22.4122883Z [158966] URL: https://github.com/pytorch/pytorch/pull/158966
2025-08-26T19:34:22.4123271Z [158966] Checking whether to label PR as stale.
2025-08-26T19:34:22.4123627Z [158966] Skipping because PR was updated recently
2025-08-26T19:34:22.4124085Z ##[endgroup]
2025-08-26T19:34:22.4124514Z ##[group]Processing PR #158967
2025-08-26T19:34:22.4124852Z [158967] URL: https://github.com/pytorch/pytorch/pull/158967
2025-08-26T19:34:22.4125255Z [158967] Checking whether to label PR as stale.
2025-08-26T19:34:22.4125603Z [158967] Skipping because PR was updated recently
2025-08-26T19:34:22.4126065Z ##[endgroup]
2025-08-26T19:34:22.4126424Z ##[group]Processing PR #158987
2025-08-26T19:34:22.4126772Z [158987] URL: https://github.com/pytorch/pytorch/pull/158987
2025-08-26T19:34:22.4127157Z [158987] Checking whether to label PR as stale.
2025-08-26T19:34:22.4127511Z [158987] Skipping because PR was updated recently
2025-08-26T19:34:22.4127963Z ##[endgroup]
2025-08-26T19:34:22.4128324Z ##[group]Processing PR #158993
2025-08-26T19:34:22.4128668Z [158993] URL: https://github.com/pytorch/pytorch/pull/158993
2025-08-26T19:34:22.4129053Z [158993] Checking whether to label PR as stale.
2025-08-26T19:34:22.4129404Z [158993] Skipping because PR was updated recently
2025-08-26T19:34:22.4129858Z ##[endgroup]
2025-08-26T19:34:22.4130217Z ##[group]Processing PR #159002
2025-08-26T19:34:22.4130551Z [159002] URL: https://github.com/pytorch/pytorch/pull/159002
2025-08-26T19:34:22.4130949Z [159002] Checking whether to label PR as stale.
2025-08-26T19:34:22.4131292Z [159002] Skipping because PR was updated recently
2025-08-26T19:34:22.4131750Z ##[endgroup]
2025-08-26T19:34:22.4132108Z ##[group]Processing PR #159003
2025-08-26T19:34:22.4132444Z [159003] URL: https://github.com/pytorch/pytorch/pull/159003
2025-08-26T19:34:22.4132845Z [159003] Checking whether to label PR as stale.
2025-08-26T19:34:22.4133204Z [159003] Skipping because PR was updated recently
2025-08-26T19:34:22.4133658Z ##[endgroup]
2025-08-26T19:34:22.4134024Z ##[group]Processing PR #159006
2025-08-26T19:34:22.4134372Z [159006] URL: https://github.com/pytorch/pytorch/pull/159006
2025-08-26T19:34:22.4134757Z [159006] Checking whether to label PR as stale.
2025-08-26T19:34:22.4135113Z [159006] Skipping because PR was updated recently
2025-08-26T19:34:22.4135764Z ##[endgroup]
2025-08-26T19:34:22.4136139Z ##[group]Processing PR #159009
2025-08-26T19:34:22.4136474Z [159009] URL: https://github.com/pytorch/pytorch/pull/159009
2025-08-26T19:34:22.4136877Z [159009] Checking whether to label PR as stale.
2025-08-26T19:34:22.4137222Z [159009] Skipping because PR was updated recently
2025-08-26T19:34:22.4137686Z ##[endgroup]
2025-08-26T19:34:22.4138050Z ##[group]Processing PR #159010
2025-08-26T19:34:22.4138385Z [159010] URL: https://github.com/pytorch/pytorch/pull/159010
2025-08-26T19:34:22.4138785Z [159010] Checking whether to label PR as stale.
2025-08-26T19:34:22.4139296Z [159010] Skipping because PR was updated recently
2025-08-26T19:34:22.4139747Z ##[endgroup]
2025-08-26T19:34:22.4140120Z ##[group]Processing PR #159020
2025-08-26T19:34:22.4140471Z [159020] URL: https://github.com/pytorch/pytorch/pull/159020
2025-08-26T19:34:22.4140859Z [159020] Checking whether to label PR as stale.
2025-08-26T19:34:22.4141214Z [159020] Skipping because PR was updated recently
2025-08-26T19:34:22.4141676Z ##[endgroup]
2025-08-26T19:34:22.4142023Z ##[group]Processing PR #159021
2025-08-26T19:34:22.4142369Z [159021] URL: https://github.com/pytorch/pytorch/pull/159021
2025-08-26T19:34:22.4142770Z [159021] Checking whether to label PR as stale.
2025-08-26T19:34:22.4143114Z [159021] Skipping because PR was updated recently
2025-08-26T19:34:22.4143569Z ##[endgroup]
2025-08-26T19:34:22.4143995Z ##[group]Processing PR #159026
2025-08-26T19:34:22.4144331Z [159026] URL: https://github.com/pytorch/pytorch/pull/159026
2025-08-26T19:34:22.4144730Z [159026] Checking whether to label PR as stale.
2025-08-26T19:34:22.4145077Z [159026] Skipping because PR was updated recently
2025-08-26T19:34:22.4145536Z ##[endgroup]
2025-08-26T19:34:22.4145900Z ##[group]Processing PR #159046
2025-08-26T19:34:22.4146245Z [159046] URL: https://github.com/pytorch/pytorch/pull/159046
2025-08-26T19:34:22.4146630Z [159046] Checking whether to label PR as stale.
2025-08-26T19:34:22.4147073Z [159046] Skipping because PR was updated recently
2025-08-26T19:34:22.4147533Z ##[endgroup]
2025-08-26T19:34:22.4147880Z ##[group]Processing PR #159047
2025-08-26T19:34:22.4148231Z [159047] URL: https://github.com/pytorch/pytorch/pull/159047
2025-08-26T19:34:22.4148631Z [159047] Checking whether to label PR as stale.
2025-08-26T19:34:22.4148974Z [159047] Skipping because PR was updated recently
2025-08-26T19:34:22.4149436Z ##[endgroup]
2025-08-26T19:34:22.4149800Z ##[group]Processing PR #159048
2025-08-26T19:34:22.4150135Z [159048] URL: https://github.com/pytorch/pytorch/pull/159048
2025-08-26T19:34:22.4150534Z [159048] Checking whether to label PR as stale.
2025-08-26T19:34:22.4150883Z [159048] Skipping because PR was updated recently
2025-08-26T19:34:22.4151337Z ##[endgroup]
2025-08-26T19:34:22.4151699Z ##[group]Processing PR #159052
2025-08-26T19:34:22.4152045Z [159052] URL: https://github.com/pytorch/pytorch/pull/159052
2025-08-26T19:34:22.4152434Z [159052] Checking whether to label PR as stale.
2025-08-26T19:34:22.4152792Z [159052] Skipping because PR was updated recently
2025-08-26T19:34:22.4153238Z ##[endgroup]
2025-08-26T19:34:22.4153603Z ##[group]Processing PR #159057
2025-08-26T19:34:22.4153948Z [159057] URL: https://github.com/pytorch/pytorch/pull/159057
2025-08-26T19:34:22.4154335Z [159057] Checking whether to label PR as stale.
2025-08-26T19:34:22.4154692Z [159057] Skipping because PR was updated recently
2025-08-26T19:34:22.4155152Z ##[endgroup]
2025-08-26T19:34:22.4155513Z ##[group]Processing PR #159073
2025-08-26T19:34:22.4155845Z [159073] URL: https://github.com/pytorch/pytorch/pull/159073
2025-08-26T19:34:22.4156243Z [159073] Checking whether to label PR as stale.
2025-08-26T19:34:22.4156589Z [159073] Skipping because PR was updated recently
2025-08-26T19:34:22.4157045Z ##[endgroup]
2025-08-26T19:34:22.4157404Z ##[group]Processing PR #159078
2025-08-26T19:34:22.4157737Z [159078] URL: https://github.com/pytorch/pytorch/pull/159078
2025-08-26T19:34:22.4158136Z [159078] Checking whether to label PR as stale.
2025-08-26T19:34:22.4158497Z [159078] Skipping because PR was updated recently
2025-08-26T19:34:22.4158941Z ##[endgroup]
2025-08-26T19:34:22.4159302Z ##[group]Processing PR #159081
2025-08-26T19:34:22.4159648Z [159081] URL: https://github.com/pytorch/pytorch/pull/159081
2025-08-26T19:34:22.4160150Z [159081] Checking whether to label PR as stale.
2025-08-26T19:34:22.4160563Z [159081] Skipping because PR was updated recently
2025-08-26T19:34:22.4161032Z ##[endgroup]
2025-08-26T19:34:22.4161394Z ##[group]Processing PR #159086
2025-08-26T19:34:22.4161727Z [159086] URL: https://github.com/pytorch/pytorch/pull/159086
2025-08-26T19:34:22.4162213Z [159086] Checking whether to label PR as stale.
2025-08-26T19:34:22.4162556Z [159086] Skipping because PR was updated recently
2025-08-26T19:34:22.4163013Z ##[endgroup]
2025-08-26T19:34:22.4163377Z ##[group]Processing PR #159088
2025-08-26T19:34:22.4163710Z [159088] URL: https://github.com/pytorch/pytorch/pull/159088
2025-08-26T19:34:22.4164108Z [159088] Checking whether to label PR as stale.
2025-08-26T19:34:22.4164469Z [159088] Skipping because PR was updated recently
2025-08-26T19:34:22.4164915Z ##[endgroup]
2025-08-26T19:34:22.4165281Z ##[group]Processing PR #159091
2025-08-26T19:34:22.4165631Z [159091] URL: https://github.com/pytorch/pytorch/pull/159091
2025-08-26T19:34:22.4166018Z [159091] Checking whether to label PR as stale.
2025-08-26T19:34:22.4166374Z [159091] Skipping because PR was updated recently
2025-08-26T19:34:22.4166835Z ##[endgroup]
2025-08-26T19:34:22.4167183Z ##[group]Processing PR #159096
2025-08-26T19:34:22.4167527Z [159096] URL: https://github.com/pytorch/pytorch/pull/159096
2025-08-26T19:34:22.4167929Z [159096] Checking whether to label PR as stale.
2025-08-26T19:34:22.4168273Z [159096] Skipping because PR was updated recently
2025-08-26T19:34:22.4168729Z ##[endgroup]
2025-08-26T19:34:22.4169085Z ##[group]Processing PR #159099
2025-08-26T19:34:22.4169421Z [159099] URL: https://github.com/pytorch/pytorch/pull/159099
2025-08-26T19:34:22.4169877Z [159099] Checking whether to label PR as stale.
2025-08-26T19:34:22.4170225Z [159099] Skipping because PR was updated recently
2025-08-26T19:34:22.4170690Z ##[endgroup]
2025-08-26T19:34:22.4171050Z ##[group]Processing PR #159104
2025-08-26T19:34:22.4171402Z [159104] URL: https://github.com/pytorch/pytorch/pull/159104
2025-08-26T19:34:22.4171800Z [159104] Checking whether to label PR as stale.
2025-08-26T19:34:22.4172155Z [159104] Skipping because PR was updated recently
2025-08-26T19:34:22.4172609Z ##[endgroup]
2025-08-26T19:34:22.4172956Z ##[group]Processing PR #159106
2025-08-26T19:34:22.4173303Z [159106] URL: https://github.com/pytorch/pytorch/pull/159106
2025-08-26T19:34:22.4173703Z [159106] Checking whether to label PR as stale.
2025-08-26T19:34:22.4174046Z [159106] Skipping because PR was updated recently
2025-08-26T19:34:22.4174505Z ##[endgroup]
2025-08-26T19:34:22.4174864Z ##[group]Processing PR #159118
2025-08-26T19:34:22.4175198Z [159118] URL: https://github.com/pytorch/pytorch/pull/159118
2025-08-26T19:34:22.4175602Z [159118] Checking whether to label PR as stale.
2025-08-26T19:34:22.4175945Z [159118] Skipping because PR was updated recently
2025-08-26T19:34:22.4176402Z ##[endgroup]
2025-08-26T19:34:22.4176768Z ##[group]Processing PR #159131
2025-08-26T19:34:22.4177116Z [159131] URL: https://github.com/pytorch/pytorch/pull/159131
2025-08-26T19:34:22.4177505Z [159131] Checking whether to label PR as stale.
2025-08-26T19:34:22.4177861Z [159131] Skipping because PR was updated recently
2025-08-26T19:34:22.4178316Z ##[endgroup]
2025-08-26T19:34:22.4178664Z ##[group]Processing PR #159132
2025-08-26T19:34:22.4179009Z [159132] URL: https://github.com/pytorch/pytorch/pull/159132
2025-08-26T19:34:22.4179415Z [159132] Checking whether to label PR as stale.
2025-08-26T19:34:22.4179761Z [159132] Skipping because PR was updated recently
2025-08-26T19:34:22.4180225Z ##[endgroup]
2025-08-26T19:34:22.4180591Z ##[group]Processing PR #159144
2025-08-26T19:34:22.4180927Z [159144] URL: https://github.com/pytorch/pytorch/pull/159144
2025-08-26T19:34:22.4181332Z [159144] Checking whether to label PR as stale.
2025-08-26T19:34:22.4181676Z [159144] Skipping because PR was updated recently
2025-08-26T19:34:22.4182136Z ##[endgroup]
2025-08-26T19:34:22.4182496Z ##[group]Processing PR #159145
2025-08-26T19:34:22.4182842Z [159145] URL: https://github.com/pytorch/pytorch/pull/159145
2025-08-26T19:34:22.4183228Z [159145] Checking whether to label PR as stale.
2025-08-26T19:34:22.4183583Z [159145] Skipping because PR was updated recently
2025-08-26T19:34:22.4184139Z ##[endgroup]
2025-08-26T19:34:22.4184490Z ##[group]Processing PR #159146
2025-08-26T19:34:22.4184840Z [159146] URL: https://github.com/pytorch/pytorch/pull/159146
2025-08-26T19:34:22.4185304Z [159146] Checking whether to label PR as stale.
2025-08-26T19:34:22.4185663Z [159146] Skipping because PR was updated recently
2025-08-26T19:34:22.4186127Z ##[endgroup]
2025-08-26T19:34:22.4186493Z ##[group]Processing PR #159158
2025-08-26T19:34:22.4186828Z [159158] URL: https://github.com/pytorch/pytorch/pull/159158
2025-08-26T19:34:22.4187234Z [159158] Checking whether to label PR as stale.
2025-08-26T19:34:22.4187578Z [159158] Skipping because PR was updated recently
2025-08-26T19:34:22.4188038Z ##[endgroup]
2025-08-26T19:34:22.4188395Z ##[group]Processing PR #159161
2025-08-26T19:34:22.4188728Z [159161] URL: https://github.com/pytorch/pytorch/pull/159161
2025-08-26T19:34:22.4189125Z [159161] Checking whether to label PR as stale.
2025-08-26T19:34:22.4189480Z [159161] Skipping because PR was updated recently
2025-08-26T19:34:22.4189930Z ##[endgroup]
2025-08-26T19:34:22.4190295Z ##[group]Processing PR #159175
2025-08-26T19:34:22.4190645Z [159175] URL: https://github.com/pytorch/pytorch/pull/159175
2025-08-26T19:34:22.4191035Z [159175] Checking whether to label PR as stale.
2025-08-26T19:34:22.4191394Z [159175] Skipping because PR was updated recently
2025-08-26T19:34:22.4191852Z ##[endgroup]
2025-08-26T19:34:22.4192215Z ##[group]Processing PR #159176
2025-08-26T19:34:22.4192606Z [159176] URL: https://github.com/pytorch/pytorch/pull/159176
2025-08-26T19:34:22.4193007Z [159176] Checking whether to label PR as stale.
2025-08-26T19:34:22.4193351Z [159176] Skipping because PR was updated recently
2025-08-26T19:34:22.4193807Z ##[endgroup]
2025-08-26T19:34:22.4194167Z ##[group]Processing PR #159179
2025-08-26T19:34:22.4194500Z [159179] URL: https://github.com/pytorch/pytorch/pull/159179
2025-08-26T19:34:22.4194900Z [159179] Checking whether to label PR as stale.
2025-08-26T19:34:22.4195254Z [159179] Skipping because PR was updated recently
2025-08-26T19:34:22.4195698Z ##[endgroup]
2025-08-26T19:34:22.4196063Z ##[group]Processing PR #159180
2025-08-26T19:34:22.4196415Z [159180] URL: https://github.com/pytorch/pytorch/pull/159180
2025-08-26T19:34:22.4196805Z [159180] Checking whether to label PR as stale.
2025-08-26T19:34:22.4197163Z [159180] Skipping because PR was updated recently
2025-08-26T19:34:22.4197622Z ##[endgroup]
2025-08-26T19:34:22.4197969Z ##[group]Processing PR #159188
2025-08-26T19:34:22.4198321Z [159188] URL: https://github.com/pytorch/pytorch/pull/159188
2025-08-26T19:34:22.4198722Z [159188] Checking whether to label PR as stale.
2025-08-26T19:34:22.4199064Z [159188] Skipping because PR was updated recently
2025-08-26T19:34:22.4199521Z ##[endgroup]
2025-08-26T19:34:22.4199881Z ##[group]Processing PR #159193
2025-08-26T19:34:22.4200214Z [159193] URL: https://github.com/pytorch/pytorch/pull/159193
2025-08-26T19:34:22.4200614Z [159193] Checking whether to label PR as stale.
2025-08-26T19:34:22.4200960Z [159193] Skipping because PR was updated recently
2025-08-26T19:34:22.4201419Z ##[endgroup]
2025-08-26T19:34:22.4201780Z ##[group]Processing PR #159194
2025-08-26T19:34:22.4202133Z [159194] URL: https://github.com/pytorch/pytorch/pull/159194
2025-08-26T19:34:22.4202518Z [159194] Checking whether to label PR as stale.
2025-08-26T19:34:22.4202874Z [159194] Skipping because PR was updated recently
2025-08-26T19:34:22.4203330Z ##[endgroup]
2025-08-26T19:34:22.4203676Z ##[group]Processing PR #159197
2025-08-26T19:34:22.4204024Z [159197] URL: https://github.com/pytorch/pytorch/pull/159197
2025-08-26T19:34:22.4204421Z [159197] Checking whether to label PR as stale.
2025-08-26T19:34:22.4204764Z [159197] Skipping because PR was updated recently
2025-08-26T19:34:22.4205228Z ##[endgroup]
2025-08-26T19:34:23.5423599Z ##[group]Processing PR #159202
2025-08-26T19:34:23.5424978Z [159202] URL: https://github.com/pytorch/pytorch/pull/159202
2025-08-26T19:34:23.5426085Z [159202] Checking whether to label PR as stale.
2025-08-26T19:34:23.5427072Z [159202] Skipping because PR was updated recently
2025-08-26T19:34:23.5428342Z ##[endgroup]
2025-08-26T19:34:23.5429770Z ##[group]Processing PR #159208
2025-08-26T19:34:23.5430743Z [159208] URL: https://github.com/pytorch/pytorch/pull/159208
2025-08-26T19:34:23.5431667Z [159208] Checking whether to label PR as stale.
2025-08-26T19:34:23.5432721Z [159208] Skipping because PR was updated recently
2025-08-26T19:34:23.5434000Z ##[endgroup]
2025-08-26T19:34:23.5434957Z ##[group]Processing PR #159213
2025-08-26T19:34:23.5439445Z [159213] URL: https://github.com/pytorch/pytorch/pull/159213
2025-08-26T19:34:23.5440410Z [159213] Checking whether to label PR as stale.
2025-08-26T19:34:23.5441079Z [159213] Skipping because PR was updated recently
2025-08-26T19:34:23.5441998Z ##[endgroup]
2025-08-26T19:34:23.5442656Z ##[group]Processing PR #159218
2025-08-26T19:34:23.5443311Z [159218] URL: https://github.com/pytorch/pytorch/pull/159218
2025-08-26T19:34:23.5444065Z [159218] Checking whether to label PR as stale.
2025-08-26T19:34:23.5444695Z [159218] Skipping because PR was updated recently
2025-08-26T19:34:23.5445411Z ##[endgroup]
2025-08-26T19:34:23.5445982Z ##[group]Processing PR #159219
2025-08-26T19:34:23.5446565Z [159219] URL: https://github.com/pytorch/pytorch/pull/159219
2025-08-26T19:34:23.5447197Z [159219] Checking whether to label PR as stale.
2025-08-26T19:34:23.5447731Z [159219] Skipping because PR was updated recently
2025-08-26T19:34:23.5454681Z ##[endgroup]
2025-08-26T19:34:23.5455275Z ##[group]Processing PR #159241
2025-08-26T19:34:23.5456177Z [159241] URL: https://github.com/pytorch/pytorch/pull/159241
2025-08-26T19:34:23.5456845Z [159241] Checking whether to label PR as stale.
2025-08-26T19:34:23.5457373Z [159241] Skipping because PR was updated recently
2025-08-26T19:34:23.5458202Z ##[endgroup]
2025-08-26T19:34:23.5458848Z ##[group]Processing PR #159242
2025-08-26T19:34:23.5459805Z [159242] URL: https://github.com/pytorch/pytorch/pull/159242
2025-08-26T19:34:23.5460556Z [159242] Checking whether to label PR as stale.
2025-08-26T19:34:23.5461122Z [159242] Skipping because PR was updated recently
2025-08-26T19:34:23.5461878Z ##[endgroup]
2025-08-26T19:34:23.5462507Z ##[group]Processing PR #159263
2025-08-26T19:34:23.5463078Z [159263] URL: https://github.com/pytorch/pytorch/pull/159263
2025-08-26T19:34:23.5463820Z [159263] Checking whether to label PR as stale.
2025-08-26T19:34:23.5464384Z [159263] Skipping because PR was updated recently
2025-08-26T19:34:23.5465152Z ##[endgroup]
2025-08-26T19:34:23.5465745Z ##[group]Processing PR #159267
2025-08-26T19:34:23.5466300Z [159267] URL: https://github.com/pytorch/pytorch/pull/159267
2025-08-26T19:34:23.5466920Z [159267] Checking whether to label PR as stale.
2025-08-26T19:34:23.5467513Z [159267] Skipping because PR was updated recently
2025-08-26T19:34:23.5468233Z ##[endgroup]
2025-08-26T19:34:23.5468797Z ##[group]Processing PR #159274
2025-08-26T19:34:23.5469379Z [159274] URL: https://github.com/pytorch/pytorch/pull/159274
2025-08-26T19:34:23.5546448Z [159274] Checking whether to label PR as stale.
2025-08-26T19:34:23.5548871Z [159274] Skipping because PR was updated recently
2025-08-26T19:34:23.5549675Z ##[endgroup]
2025-08-26T19:34:23.5550230Z ##[group]Processing PR #159282
2025-08-26T19:34:23.5550763Z [159282] URL: https://github.com/pytorch/pytorch/pull/159282
2025-08-26T19:34:23.5551399Z [159282] Checking whether to label PR as stale.
2025-08-26T19:34:23.5552021Z [159282] Skipping because PR was updated recently
2025-08-26T19:34:23.5552854Z ##[endgroup]
2025-08-26T19:34:23.5553508Z ##[group]Processing PR #159287
2025-08-26T19:34:23.5554047Z [159287] URL: https://github.com/pytorch/pytorch/pull/159287
2025-08-26T19:34:23.5554703Z [159287] Checking whether to label PR as stale.
2025-08-26T19:34:23.5555284Z [159287] Skipping because PR was updated recently
2025-08-26T19:34:23.5556078Z ##[endgroup]
2025-08-26T19:34:23.5556749Z ##[group]Processing PR #159303
2025-08-26T19:34:23.5557401Z [159303] URL: https://github.com/pytorch/pytorch/pull/159303
2025-08-26T19:34:23.5558151Z [159303] Checking whether to label PR as stale.
2025-08-26T19:34:23.5558827Z [159303] Skipping because PR was updated recently
2025-08-26T19:34:23.5559956Z ##[endgroup]
2025-08-26T19:34:23.5560638Z ##[group]Processing PR #159313
2025-08-26T19:34:23.5561279Z [159313] URL: https://github.com/pytorch/pytorch/pull/159313
2025-08-26T19:34:23.5562041Z [159313] Checking whether to label PR as stale.
2025-08-26T19:34:23.5562707Z [159313] Skipping because PR was updated recently
2025-08-26T19:34:23.5563590Z ##[endgroup]
2025-08-26T19:34:23.5564278Z ##[group]Processing PR #159323
2025-08-26T19:34:23.5564917Z [159323] URL: https://github.com/pytorch/pytorch/pull/159323
2025-08-26T19:34:23.5565682Z [159323] Checking whether to label PR as stale.
2025-08-26T19:34:23.5566355Z [159323] Skipping because PR was updated recently
2025-08-26T19:34:23.5567220Z ##[endgroup]
2025-08-26T19:34:23.5567892Z ##[group]Processing PR #159344
2025-08-26T19:34:23.5568539Z [159344] URL: https://github.com/pytorch/pytorch/pull/159344
2025-08-26T19:34:23.5569285Z [159344] Checking whether to label PR as stale.
2025-08-26T19:34:23.5569949Z [159344] Skipping because PR was updated recently
2025-08-26T19:34:23.5570782Z ##[endgroup]
2025-08-26T19:34:23.5571413Z ##[group]Processing PR #159358
2025-08-26T19:34:23.5572025Z [159358] URL: https://github.com/pytorch/pytorch/pull/159358
2025-08-26T19:34:23.5572669Z [159358] Checking whether to label PR as stale.
2025-08-26T19:34:23.5573236Z [159358] Skipping because PR was updated recently
2025-08-26T19:34:23.5574226Z ##[endgroup]
2025-08-26T19:34:23.5574827Z ##[group]Processing PR #159387
2025-08-26T19:34:23.5575378Z [159387] URL: https://github.com/pytorch/pytorch/pull/159387
2025-08-26T19:34:23.5576040Z [159387] Checking whether to label PR as stale.
2025-08-26T19:34:23.5576582Z [159387] Skipping because PR was updated recently
2025-08-26T19:34:23.5577314Z ##[endgroup]
2025-08-26T19:34:23.5577827Z ##[group]Processing PR #159395
2025-08-26T19:34:23.5578367Z [159395] URL: https://github.com/pytorch/pytorch/pull/159395
2025-08-26T19:34:23.5578987Z [159395] Checking whether to label PR as stale.
2025-08-26T19:34:23.5579540Z [159395] Skipping because PR was updated recently
2025-08-26T19:34:23.5580267Z ##[endgroup]
2025-08-26T19:34:23.5580947Z ##[group]Processing PR #159410
2025-08-26T19:34:23.5581670Z [159410] URL: https://github.com/pytorch/pytorch/pull/159410
2025-08-26T19:34:23.5582503Z [159410] Checking whether to label PR as stale.
2025-08-26T19:34:23.5583232Z [159410] Skipping because PR was updated recently
2025-08-26T19:34:23.5584296Z ##[endgroup]
2025-08-26T19:34:23.5585018Z ##[group]Processing PR #159421
2025-08-26T19:34:23.5585704Z [159421] URL: https://github.com/pytorch/pytorch/pull/159421
2025-08-26T19:34:23.5586514Z [159421] Checking whether to label PR as stale.
2025-08-26T19:34:23.5587217Z [159421] Skipping because PR was updated recently
2025-08-26T19:34:23.5588155Z ##[endgroup]
2025-08-26T19:34:23.5588886Z ##[group]Processing PR #159423
2025-08-26T19:34:23.5589583Z [159423] URL: https://github.com/pytorch/pytorch/pull/159423
2025-08-26T19:34:23.5590381Z [159423] Checking whether to label PR as stale.
2025-08-26T19:34:23.5591115Z [159423] Skipping because PR was updated recently
2025-08-26T19:34:23.5592048Z ##[endgroup]
2025-08-26T19:34:23.5592747Z ##[group]Processing PR #159428
2025-08-26T19:34:23.5593441Z [159428] URL: https://github.com/pytorch/pytorch/pull/159428
2025-08-26T19:34:23.5594235Z [159428] Checking whether to label PR as stale.
2025-08-26T19:34:23.5594961Z [159428] Skipping because PR was updated recently
2025-08-26T19:34:23.5595891Z ##[endgroup]
2025-08-26T19:34:23.5596612Z ##[group]Processing PR #159448
2025-08-26T19:34:23.5597292Z [159448] URL: https://github.com/pytorch/pytorch/pull/159448
2025-08-26T19:34:23.5598097Z [159448] Checking whether to label PR as stale.
2025-08-26T19:34:23.5598798Z [159448] Skipping because PR was updated recently
2025-08-26T19:34:23.5599721Z ##[endgroup]
2025-08-26T19:34:23.5600429Z ##[group]Processing PR #159459
2025-08-26T19:34:23.5601103Z [159459] URL: https://github.com/pytorch/pytorch/pull/159459
2025-08-26T19:34:23.5601908Z [159459] Checking whether to label PR as stale.
2025-08-26T19:34:23.5602809Z [159459] Skipping because PR was updated recently
2025-08-26T19:34:23.5603716Z ##[endgroup]
2025-08-26T19:34:23.5604423Z ##[group]Processing PR #159465
2025-08-26T19:34:23.5605112Z [159465] URL: https://github.com/pytorch/pytorch/pull/159465
2025-08-26T19:34:23.5605901Z [159465] Checking whether to label PR as stale.
2025-08-26T19:34:23.5606629Z [159465] Skipping because PR was updated recently
2025-08-26T19:34:23.5607558Z ##[endgroup]
2025-08-26T19:34:23.5608277Z ##[group]Processing PR #159473
2025-08-26T19:34:23.5608953Z [159473] URL: https://github.com/pytorch/pytorch/pull/159473
2025-08-26T19:34:23.5609756Z [159473] Checking whether to label PR as stale.
2025-08-26T19:34:23.5610467Z [159473] Skipping because PR was updated recently
2025-08-26T19:34:23.5611389Z ##[endgroup]
2025-08-26T19:34:23.5612105Z ##[group]Processing PR #159474
2025-08-26T19:34:23.5612787Z [159474] URL: https://github.com/pytorch/pytorch/pull/159474
2025-08-26T19:34:23.5613597Z [159474] Checking whether to label PR as stale.
2025-08-26T19:34:23.5614322Z [159474] Skipping because PR was updated recently
2025-08-26T19:34:23.5615237Z ##[endgroup]
2025-08-26T19:34:23.5615956Z ##[group]Processing PR #159478
2025-08-26T19:34:23.5616652Z [159478] URL: https://github.com/pytorch/pytorch/pull/159478
2025-08-26T19:34:23.5617448Z [159478] Checking whether to label PR as stale.
2025-08-26T19:34:23.5618294Z [159478] Skipping because PR was updated recently
2025-08-26T19:34:23.5619239Z ##[endgroup]
2025-08-26T19:34:23.5619947Z ##[group]Processing PR #159479
2025-08-26T19:34:23.5620649Z [159479] URL: https://github.com/pytorch/pytorch/pull/159479
2025-08-26T19:34:23.5621466Z [159479] Checking whether to label PR as stale.
2025-08-26T19:34:23.5622174Z [159479] Skipping because PR was updated recently
2025-08-26T19:34:23.5623108Z ##[endgroup]
2025-08-26T19:34:23.5623918Z ##[group]Processing PR #159481
2025-08-26T19:34:23.5624628Z [159481] URL: https://github.com/pytorch/pytorch/pull/159481
2025-08-26T19:34:23.5625488Z [159481] Checking whether to label PR as stale.
2025-08-26T19:34:23.5626216Z [159481] Skipping because PR was updated recently
2025-08-26T19:34:23.5627199Z ##[endgroup]
2025-08-26T19:34:23.5627956Z ##[group]Processing PR #159482
2025-08-26T19:34:23.5628666Z [159482] URL: https://github.com/pytorch/pytorch/pull/159482
2025-08-26T19:34:23.5629494Z [159482] Checking whether to label PR as stale.
2025-08-26T19:34:23.5630251Z [159482] Skipping because PR was updated recently
2025-08-26T19:34:23.5631217Z ##[endgroup]
2025-08-26T19:34:23.5631978Z ##[group]Processing PR #159494
2025-08-26T19:34:23.5632684Z [159494] URL: https://github.com/pytorch/pytorch/pull/159494
2025-08-26T19:34:23.5633539Z [159494] Checking whether to label PR as stale.
2025-08-26T19:34:23.5634275Z [159494] Skipping because PR was updated recently
2025-08-26T19:34:23.5635245Z ##[endgroup]
2025-08-26T19:34:23.5660503Z ##[group]Processing PR #159503
2025-08-26T19:34:23.5661269Z [159503] URL: https://github.com/pytorch/pytorch/pull/159503
2025-08-26T19:34:23.5662230Z [159503] Checking whether to label PR as stale.
2025-08-26T19:34:23.5663066Z [159503] Skipping because PR was updated recently
2025-08-26T19:34:23.5664204Z ##[endgroup]
2025-08-26T19:34:23.5665026Z ##[group]Processing PR #159511
2025-08-26T19:34:23.5665793Z [159511] URL: https://github.com/pytorch/pytorch/pull/159511
2025-08-26T19:34:23.5666689Z [159511] Checking whether to label PR as stale.
2025-08-26T19:34:23.5667493Z [159511] Skipping because PR was updated recently
2025-08-26T19:34:23.5668533Z ##[endgroup]
2025-08-26T19:34:23.5669332Z ##[group]Processing PR #159521
2025-08-26T19:34:23.5670089Z [159521] URL: https://github.com/pytorch/pytorch/pull/159521
2025-08-26T19:34:23.5670987Z [159521] Checking whether to label PR as stale.
2025-08-26T19:34:23.5671765Z [159521] Skipping because PR was updated recently
2025-08-26T19:34:23.5672801Z ##[endgroup]
2025-08-26T19:34:23.5673604Z ##[group]Processing PR #159523
2025-08-26T19:34:23.5674360Z [159523] URL: https://github.com/pytorch/pytorch/pull/159523
2025-08-26T19:34:23.5675497Z [159523] Checking whether to label PR as stale.
2025-08-26T19:34:23.5676292Z [159523] Skipping because PR was updated recently
2025-08-26T19:34:23.5677308Z ##[endgroup]
2025-08-26T19:34:23.5678113Z ##[group]Processing PR #159544
2025-08-26T19:34:23.5678764Z [159544] URL: https://github.com/pytorch/pytorch/pull/159544
2025-08-26T19:34:23.5679510Z [159544] Checking whether to label PR as stale.
2025-08-26T19:34:23.5680166Z [159544] Skipping because PR was updated recently
2025-08-26T19:34:23.5681023Z ##[endgroup]
2025-08-26T19:34:23.5681678Z ##[group]Processing PR #159546
2025-08-26T19:34:23.5682419Z [159546] URL: https://github.com/pytorch/pytorch/pull/159546
2025-08-26T19:34:23.5683345Z [159546] Checking whether to label PR as stale.
2025-08-26T19:34:23.5684148Z [159546] Skipping because PR was updated recently
2025-08-26T19:34:23.5685214Z ##[endgroup]
2025-08-26T19:34:23.5686038Z ##[group]Processing PR #159552
2025-08-26T19:34:23.5686813Z [159552] URL: https://github.com/pytorch/pytorch/pull/159552
2025-08-26T19:34:23.5687745Z [159552] Checking whether to label PR as stale.
2025-08-26T19:34:23.5689406Z [159552] Skipping because PR was updated recently
2025-08-26T19:34:23.5690497Z ##[endgroup]
2025-08-26T19:34:23.5691335Z ##[group]Processing PR #159553
2025-08-26T19:34:23.5692136Z [159553] URL: https://github.com/pytorch/pytorch/pull/159553
2025-08-26T19:34:23.5693256Z [159553] Checking whether to label PR as stale.
2025-08-26T19:34:23.5694007Z [159553] Skipping because PR was updated recently
2025-08-26T19:34:23.5694945Z ##[endgroup]
2025-08-26T19:34:23.5695664Z ##[group]Processing PR #159562
2025-08-26T19:34:23.5696375Z [159562] URL: https://github.com/pytorch/pytorch/pull/159562
2025-08-26T19:34:23.5697174Z [159562] Checking whether to label PR as stale.
2025-08-26T19:34:23.5697910Z [159562] Skipping because PR was updated recently
2025-08-26T19:34:23.5698846Z ##[endgroup]
2025-08-26T19:34:23.5699578Z ##[group]Processing PR #159575
2025-08-26T19:34:23.5700274Z [159575] URL: https://github.com/pytorch/pytorch/pull/159575
2025-08-26T19:34:23.5701096Z [159575] Checking whether to label PR as stale.
2025-08-26T19:34:23.5701801Z [159575] Skipping because PR was updated recently
2025-08-26T19:34:23.5702740Z ##[endgroup]
2025-08-26T19:34:23.5703462Z ##[group]Processing PR #159576
2025-08-26T19:34:23.5704239Z [159576] URL: https://github.com/pytorch/pytorch/pull/159576
2025-08-26T19:34:23.5705045Z [159576] Checking whether to label PR as stale.
2025-08-26T19:34:23.5705768Z [159576] Skipping because PR was updated recently
2025-08-26T19:34:23.5706689Z ##[endgroup]
2025-08-26T19:34:23.5707415Z ##[group]Processing PR #159582
2025-08-26T19:34:23.5708108Z [159582] URL: https://github.com/pytorch/pytorch/pull/159582
2025-08-26T19:34:23.5708904Z [159582] Checking whether to label PR as stale.
2025-08-26T19:34:23.5709627Z [159582] Skipping because PR was updated recently
2025-08-26T19:34:23.5710561Z ##[endgroup]
2025-08-26T19:34:23.5711293Z ##[group]Processing PR #159585
2025-08-26T19:34:23.5711982Z [159585] URL: https://github.com/pytorch/pytorch/pull/159585
2025-08-26T19:34:23.5712795Z [159585] Checking whether to label PR as stale.
2025-08-26T19:34:23.5713501Z [159585] Skipping because PR was updated recently
2025-08-26T19:34:23.5714435Z ##[endgroup]
2025-08-26T19:34:23.5715158Z ##[group]Processing PR #159593
2025-08-26T19:34:23.5715843Z [159593] URL: https://github.com/pytorch/pytorch/pull/159593
2025-08-26T19:34:23.5716655Z [159593] Checking whether to label PR as stale.
2025-08-26T19:34:23.5717375Z [159593] Skipping because PR was updated recently
2025-08-26T19:34:23.5718295Z ##[endgroup]
2025-08-26T19:34:23.5719015Z ##[group]Processing PR #159597
2025-08-26T19:34:23.5719718Z [159597] URL: https://github.com/pytorch/pytorch/pull/159597
2025-08-26T19:34:23.5720521Z [159597] Checking whether to label PR as stale.
2025-08-26T19:34:23.5721243Z [159597] Skipping because PR was updated recently
2025-08-26T19:34:23.5722177Z ##[endgroup]
2025-08-26T19:34:23.5722906Z ##[group]Processing PR #159600
2025-08-26T19:34:23.5723721Z [159600] URL: https://github.com/pytorch/pytorch/pull/159600
2025-08-26T19:34:23.5724541Z [159600] Checking whether to label PR as stale.
2025-08-26T19:34:23.5725254Z [159600] Skipping because PR was updated recently
2025-08-26T19:34:23.5726188Z ##[endgroup]
2025-08-26T19:34:23.5726921Z ##[group]Processing PR #159606
2025-08-26T19:34:23.5727611Z [159606] URL: https://github.com/pytorch/pytorch/pull/159606
2025-08-26T19:34:23.5728427Z [159606] Checking whether to label PR as stale.
2025-08-26T19:34:23.5729155Z [159606] Skipping because PR was updated recently
2025-08-26T19:34:23.5730082Z ##[endgroup]
2025-08-26T19:34:23.5730811Z ##[group]Processing PR #159608
2025-08-26T19:34:23.5731510Z [159608] URL: https://github.com/pytorch/pytorch/pull/159608
2025-08-26T19:34:23.5732310Z [159608] Checking whether to label PR as stale.
2025-08-26T19:34:23.5733042Z [159608] Skipping because PR was updated recently
2025-08-26T19:34:23.5733979Z ##[endgroup]
2025-08-26T19:34:23.5734697Z ##[group]Processing PR #159609
2025-08-26T19:34:23.5735399Z [159609] URL: https://github.com/pytorch/pytorch/pull/159609
2025-08-26T19:34:23.5736425Z [159609] Checking whether to label PR as stale.
2025-08-26T19:34:23.5737126Z [159609] Skipping because PR was updated recently
2025-08-26T19:34:23.5738057Z ##[endgroup]
2025-08-26T19:34:23.5738765Z ##[group]Processing PR #159624
2025-08-26T19:34:23.5739611Z [159624] URL: https://github.com/pytorch/pytorch/pull/159624
2025-08-26T19:34:23.5740420Z [159624] Checking whether to label PR as stale.
2025-08-26T19:34:23.5741116Z [159624] Skipping because PR was updated recently
2025-08-26T19:34:23.5742035Z ##[endgroup]
2025-08-26T19:34:23.5742746Z ##[group]Processing PR #159626
2025-08-26T19:34:23.5743432Z [159626] URL: https://github.com/pytorch/pytorch/pull/159626
2025-08-26T19:34:23.5744259Z [159626] Checking whether to label PR as stale.
2025-08-26T19:34:23.5744972Z [159626] Skipping because PR was updated recently
2025-08-26T19:34:23.5745895Z ##[endgroup]
2025-08-26T19:34:23.5746601Z ##[group]Processing PR #159632
2025-08-26T19:34:23.5747289Z [159632] URL: https://github.com/pytorch/pytorch/pull/159632
2025-08-26T19:34:23.5748090Z [159632] Checking whether to label PR as stale.
2025-08-26T19:34:23.5748789Z [159632] Skipping because PR was updated recently
2025-08-26T19:34:23.5749711Z ##[endgroup]
2025-08-26T19:34:23.5750426Z ##[group]Processing PR #159642
2025-08-26T19:34:23.5751107Z [159642] URL: https://github.com/pytorch/pytorch/pull/159642
2025-08-26T19:34:23.5751914Z [159642] Checking whether to label PR as stale.
2025-08-26T19:34:23.5752611Z [159642] Skipping because PR was updated recently
2025-08-26T19:34:23.5753539Z ##[endgroup]
2025-08-26T19:34:23.5754255Z ##[group]Processing PR #159646
2025-08-26T19:34:23.5754943Z [159646] URL: https://github.com/pytorch/pytorch/pull/159646
2025-08-26T19:34:23.5755732Z [159646] Checking whether to label PR as stale.
2025-08-26T19:34:23.5756448Z [159646] Skipping because PR was updated recently
2025-08-26T19:34:23.5757372Z ##[endgroup]
2025-08-26T19:34:23.5758091Z ##[group]Processing PR #159664
2025-08-26T19:34:23.5758779Z [159664] URL: https://github.com/pytorch/pytorch/pull/159664
2025-08-26T19:34:23.5759571Z [159664] Checking whether to label PR as stale.
2025-08-26T19:34:23.5760203Z [159664] Skipping because PR was updated recently
2025-08-26T19:34:23.5760914Z ##[endgroup]
2025-08-26T19:34:23.5761624Z ##[group]Processing PR #159682
2025-08-26T19:34:23.5762234Z [159682] URL: https://github.com/pytorch/pytorch/pull/159682
2025-08-26T19:34:23.5763007Z [159682] Checking whether to label PR as stale.
2025-08-26T19:34:23.5763681Z [159682] Skipping because PR was updated recently
2025-08-26T19:34:23.5764554Z ##[endgroup]
2025-08-26T19:34:23.5765295Z ##[group]Processing PR #159689
2025-08-26T19:34:23.5766075Z [159689] URL: https://github.com/pytorch/pytorch/pull/159689
2025-08-26T19:34:23.5766996Z [159689] Checking whether to label PR as stale.
2025-08-26T19:34:23.5767824Z [159689] Skipping because PR was updated recently
2025-08-26T19:34:23.5769071Z ##[endgroup]
2025-08-26T19:34:23.5769891Z ##[group]Processing PR #159691
2025-08-26T19:34:23.5770675Z [159691] URL: https://github.com/pytorch/pytorch/pull/159691
2025-08-26T19:34:23.5771579Z [159691] Checking whether to label PR as stale.
2025-08-26T19:34:23.5772396Z [159691] Skipping because PR was updated recently
2025-08-26T19:34:23.5773456Z ##[endgroup]
2025-08-26T19:34:23.5774278Z ##[group]Processing PR #159698
2025-08-26T19:34:23.5775051Z [159698] URL: https://github.com/pytorch/pytorch/pull/159698
2025-08-26T19:34:23.5775970Z [159698] Checking whether to label PR as stale.
2025-08-26T19:34:23.5776771Z [159698] Skipping because PR was updated recently
2025-08-26T19:34:23.5777825Z ##[endgroup]
2025-08-26T19:34:23.5778657Z ##[group]Processing PR #159715
2025-08-26T19:34:23.5779431Z [159715] URL: https://github.com/pytorch/pytorch/pull/159715
2025-08-26T19:34:23.5780357Z [159715] Checking whether to label PR as stale.
2025-08-26T19:34:23.5781171Z [159715] Skipping because PR was updated recently
2025-08-26T19:34:23.5782226Z ##[endgroup]
2025-08-26T19:34:23.5783042Z ##[group]Processing PR #159716
2025-08-26T19:34:23.5783920Z [159716] URL: https://github.com/pytorch/pytorch/pull/159716
2025-08-26T19:34:23.5784793Z [159716] Checking whether to label PR as stale.
2025-08-26T19:34:23.5785589Z [159716] Skipping because PR was updated recently
2025-08-26T19:34:23.5786632Z ##[endgroup]
2025-08-26T19:34:23.5787381Z ##[group]Processing PR #159718
2025-08-26T19:34:23.5788067Z [159718] URL: https://github.com/pytorch/pytorch/pull/159718
2025-08-26T19:34:23.5788868Z [159718] Checking whether to label PR as stale.
2025-08-26T19:34:23.5789670Z [159718] Skipping because PR was updated recently
2025-08-26T19:34:23.5790749Z ##[endgroup]
2025-08-26T19:34:23.5791572Z ##[group]Processing PR #159735
2025-08-26T19:34:23.5792342Z [159735] URL: https://github.com/pytorch/pytorch/pull/159735
2025-08-26T19:34:23.5793263Z [159735] Checking whether to label PR as stale.
2025-08-26T19:34:23.5794068Z [159735] Skipping because PR was updated recently
2025-08-26T19:34:23.5795143Z ##[endgroup]
2025-08-26T19:34:23.5796089Z ##[group]Processing PR #159736
2025-08-26T19:34:23.5796859Z [159736] URL: https://github.com/pytorch/pytorch/pull/159736
2025-08-26T19:34:23.5797773Z [159736] Checking whether to label PR as stale.
2025-08-26T19:34:23.5798571Z [159736] Skipping because PR was updated recently
2025-08-26T19:34:23.5799641Z ##[endgroup]
2025-08-26T19:34:23.5800464Z ##[group]Processing PR #159737
2025-08-26T19:34:23.5801265Z [159737] URL: https://github.com/pytorch/pytorch/pull/159737
2025-08-26T19:34:23.5802164Z [159737] Checking whether to label PR as stale.
2025-08-26T19:34:23.5802982Z [159737] Skipping because PR was updated recently
2025-08-26T19:34:23.5804020Z ##[endgroup]
2025-08-26T19:34:23.5804844Z ##[group]Processing PR #159751
2025-08-26T19:34:23.5805628Z [159751] URL: https://github.com/pytorch/pytorch/pull/159751
2025-08-26T19:34:23.5806519Z [159751] Checking whether to label PR as stale.
2025-08-26T19:34:23.5807345Z [159751] Skipping because PR was updated recently
2025-08-26T19:34:23.5808398Z ##[endgroup]
2025-08-26T19:34:23.5809232Z ##[group]Processing PR #159757
2025-08-26T19:34:23.5810006Z [159757] URL: https://github.com/pytorch/pytorch/pull/159757
2025-08-26T19:34:23.5810923Z [159757] Checking whether to label PR as stale.
2025-08-26T19:34:23.5811726Z [159757] Skipping because PR was updated recently
2025-08-26T19:34:23.5812786Z ##[endgroup]
2025-08-26T19:34:23.5813611Z ##[group]Processing PR #159766
2025-08-26T19:34:23.5814379Z [159766] URL: https://github.com/pytorch/pytorch/pull/159766
2025-08-26T19:34:23.5815301Z [159766] Checking whether to label PR as stale.
2025-08-26T19:34:23.5816123Z [159766] Skipping because PR was updated recently
2025-08-26T19:34:23.5817169Z ##[endgroup]
2025-08-26T19:34:23.5817991Z ##[group]Processing PR #159767
2025-08-26T19:34:23.5818788Z [159767] URL: https://github.com/pytorch/pytorch/pull/159767
2025-08-26T19:34:23.5819687Z [159767] Checking whether to label PR as stale.
2025-08-26T19:34:23.5820663Z [159767] Skipping because PR was updated recently
2025-08-26T19:34:23.5821726Z ##[endgroup]
2025-08-26T19:34:23.5822538Z ##[group]Processing PR #159768
2025-08-26T19:34:23.5823323Z [159768] URL: https://github.com/pytorch/pytorch/pull/159768
2025-08-26T19:34:23.5824316Z [159768] Checking whether to label PR as stale.
2025-08-26T19:34:23.5825107Z [159768] Skipping because PR was updated recently
2025-08-26T19:34:23.5826142Z ##[endgroup]
2025-08-26T19:34:23.5826955Z ##[group]Processing PR #159774
2025-08-26T19:34:23.5827709Z [159774] URL: https://github.com/pytorch/pytorch/pull/159774
2025-08-26T19:34:23.5828548Z [159774] Checking whether to label PR as stale.
2025-08-26T19:34:23.5829257Z [159774] Skipping because PR was updated recently
2025-08-26T19:34:23.5830183Z ##[endgroup]
2025-08-26T19:34:23.5830912Z ##[group]Processing PR #159778
2025-08-26T19:34:23.5831598Z [159778] URL: https://github.com/pytorch/pytorch/pull/159778
2025-08-26T19:34:23.5832393Z [159778] Checking whether to label PR as stale.
2025-08-26T19:34:23.5833111Z [159778] Skipping because PR was updated recently
2025-08-26T19:34:23.5834031Z ##[endgroup]
2025-08-26T19:34:23.5834732Z ##[group]Processing PR #159780
2025-08-26T19:34:23.5835420Z [159780] URL: https://github.com/pytorch/pytorch/pull/159780
2025-08-26T19:34:23.5837715Z [159780] Checking whether to label PR as stale.
2025-08-26T19:34:23.5838614Z [159780] Skipping because PR was updated recently
2025-08-26T19:34:23.5839698Z ##[endgroup]
2025-08-26T19:34:23.5840528Z ##[group]Processing PR #159785
2025-08-26T19:34:23.5841302Z [159785] URL: https://github.com/pytorch/pytorch/pull/159785
2025-08-26T19:34:23.5842228Z [159785] Checking whether to label PR as stale.
2025-08-26T19:34:23.5843028Z [159785] Skipping because PR was updated recently
2025-08-26T19:34:23.5844087Z ##[endgroup]
2025-08-26T19:34:23.5844912Z ##[group]Processing PR #159794
2025-08-26T19:34:23.5845697Z [159794] URL: https://github.com/pytorch/pytorch/pull/159794
2025-08-26T19:34:23.5846599Z [159794] Checking whether to label PR as stale.
2025-08-26T19:34:23.5847425Z [159794] Skipping because PR was updated recently
2025-08-26T19:34:23.5848485Z ##[endgroup]
2025-08-26T19:34:23.5849285Z ##[group]Processing PR #159795
2025-08-26T19:34:23.5850077Z [159795] URL: https://github.com/pytorch/pytorch/pull/159795
2025-08-26T19:34:23.5850973Z [159795] Checking whether to label PR as stale.
2025-08-26T19:34:23.5851800Z [159795] Skipping because PR was updated recently
2025-08-26T19:34:23.5852864Z ##[endgroup]
2025-08-26T19:34:23.5853548Z ##[group]Processing PR #159797
2025-08-26T19:34:23.5854099Z [159797] URL: https://github.com/pytorch/pytorch/pull/159797
2025-08-26T19:34:23.5862469Z [159797] Checking whether to label PR as stale.
2025-08-26T19:34:23.5863403Z [159797] Skipping because PR was updated recently
2025-08-26T19:34:23.5864563Z ##[endgroup]
2025-08-26T19:34:23.5865414Z ##[group]Processing PR #159804
2025-08-26T19:34:23.5866222Z [159804] URL: https://github.com/pytorch/pytorch/pull/159804
2025-08-26T19:34:23.5867157Z [159804] Checking whether to label PR as stale.
2025-08-26T19:34:23.5867977Z [159804] Skipping because PR was updated recently
2025-08-26T19:34:23.5869047Z ##[endgroup]
2025-08-26T19:34:23.5869877Z ##[group]Processing PR #159808
2025-08-26T19:34:23.5870655Z [159808] URL: https://github.com/pytorch/pytorch/pull/159808
2025-08-26T19:34:23.5871595Z [159808] Checking whether to label PR as stale.
2025-08-26T19:34:23.5872411Z [159808] Skipping because PR was updated recently
2025-08-26T19:34:23.5873482Z ##[endgroup]
2025-08-26T19:34:23.5874310Z ##[group]Processing PR #159812
2025-08-26T19:34:23.5875080Z [159812] URL: https://github.com/pytorch/pytorch/pull/159812
2025-08-26T19:34:23.5875997Z [159812] Checking whether to label PR as stale.
2025-08-26T19:34:23.5876820Z [159812] Skipping because PR was updated recently
2025-08-26T19:34:23.5877861Z ##[endgroup]
2025-08-26T19:34:23.5878683Z ##[group]Processing PR #159813
2025-08-26T19:34:23.5879331Z [159813] URL: https://github.com/pytorch/pytorch/pull/159813
2025-08-26T19:34:23.5880464Z [159813] Checking whether to label PR as stale.
2025-08-26T19:34:23.5881279Z [159813] Skipping because PR was updated recently
2025-08-26T19:34:23.5882349Z ##[endgroup]
2025-08-26T19:34:23.5883179Z ##[group]Processing PR #159815
2025-08-26T19:34:23.5883951Z [159815] URL: https://github.com/pytorch/pytorch/pull/159815
2025-08-26T19:34:23.5884885Z [159815] Checking whether to label PR as stale.
2025-08-26T19:34:23.5885686Z [159815] Skipping because PR was updated recently
2025-08-26T19:34:23.5886734Z ##[endgroup]
2025-08-26T19:34:23.5887562Z ##[group]Processing PR #159821
2025-08-26T19:34:23.5888337Z [159821] URL: https://github.com/pytorch/pytorch/pull/159821
2025-08-26T19:34:23.5889264Z [159821] Checking whether to label PR as stale.
2025-08-26T19:34:23.5890068Z [159821] Skipping because PR was updated recently
2025-08-26T19:34:23.5891133Z ##[endgroup]
2025-08-26T19:34:23.5891974Z ##[group]Processing PR #159827
2025-08-26T19:34:23.5892766Z [159827] URL: https://github.com/pytorch/pytorch/pull/159827
2025-08-26T19:34:23.5893669Z [159827] Checking whether to label PR as stale.
2025-08-26T19:34:23.5894491Z [159827] Skipping because PR was updated recently
2025-08-26T19:34:23.5895555Z ##[endgroup]
2025-08-26T19:34:23.5896359Z ##[group]Processing PR #159828
2025-08-26T19:34:23.5897160Z [159828] URL: https://github.com/pytorch/pytorch/pull/159828
2025-08-26T19:34:23.5898188Z [159828] Checking whether to label PR as stale.
2025-08-26T19:34:23.5898992Z [159828] Skipping because PR was updated recently
2025-08-26T19:34:23.5899899Z ##[endgroup]
2025-08-26T19:34:23.5900610Z ##[group]Processing PR #159830
2025-08-26T19:34:23.5901304Z [159830] URL: https://github.com/pytorch/pytorch/pull/159830
2025-08-26T19:34:23.5902221Z [159830] Checking whether to label PR as stale.
2025-08-26T19:34:23.5903026Z [159830] Skipping because PR was updated recently
2025-08-26T19:34:23.5904021Z ##[endgroup]
2025-08-26T19:34:23.5904640Z ##[group]Processing PR #159835
2025-08-26T19:34:23.5905270Z [159835] URL: https://github.com/pytorch/pytorch/pull/159835
2025-08-26T19:34:23.5906018Z [159835] Checking whether to label PR as stale.
2025-08-26T19:34:23.5906455Z [159835] Skipping because PR was updated recently
2025-08-26T19:34:23.5906924Z ##[endgroup]
2025-08-26T19:34:23.5907278Z ##[group]Processing PR #159837
2025-08-26T19:34:23.5907630Z [159837] URL: https://github.com/pytorch/pytorch/pull/159837
2025-08-26T19:34:23.5908030Z [159837] Checking whether to label PR as stale.
2025-08-26T19:34:23.5908392Z [159837] Skipping because PR was updated recently
2025-08-26T19:34:23.5908856Z ##[endgroup]
2025-08-26T19:34:23.5909226Z ##[group]Processing PR #159849
2025-08-26T19:34:23.5909562Z [159849] URL: https://github.com/pytorch/pytorch/pull/159849
2025-08-26T19:34:23.5909970Z [159849] Checking whether to label PR as stale.
2025-08-26T19:34:23.5910317Z [159849] Skipping because PR was updated recently
2025-08-26T19:34:23.5910785Z ##[endgroup]
2025-08-26T19:34:23.5911152Z ##[group]Processing PR #159850
2025-08-26T19:34:23.5911498Z [159850] URL: https://github.com/pytorch/pytorch/pull/159850
2025-08-26T19:34:23.5911892Z [159850] Checking whether to label PR as stale.
2025-08-26T19:34:23.5912254Z [159850] Skipping because PR was updated recently
2025-08-26T19:34:23.5912704Z ##[endgroup]
2025-08-26T19:34:23.5913066Z ##[group]Processing PR #159856
2025-08-26T19:34:23.5913415Z [159856] URL: https://github.com/pytorch/pytorch/pull/159856
2025-08-26T19:34:23.5913807Z [159856] Checking whether to label PR as stale.
2025-08-26T19:34:23.5914167Z [159856] Skipping because PR was updated recently
2025-08-26T19:34:23.5914633Z ##[endgroup]
2025-08-26T19:34:23.5915001Z ##[group]Processing PR #159858
2025-08-26T19:34:23.5915340Z [159858] URL: https://github.com/pytorch/pytorch/pull/159858
2025-08-26T19:34:23.5915746Z [159858] Checking whether to label PR as stale.
2025-08-26T19:34:23.5916092Z [159858] Skipping because PR was updated recently
2025-08-26T19:34:23.5916554Z ##[endgroup]
2025-08-26T19:34:23.5916912Z ##[group]Processing PR #159859
2025-08-26T19:34:23.5917364Z [159859] URL: https://github.com/pytorch/pytorch/pull/159859
2025-08-26T19:34:23.5917768Z [159859] Checking whether to label PR as stale.
2025-08-26T19:34:23.5918114Z [159859] Skipping because PR was updated recently
2025-08-26T19:34:23.5918575Z ##[endgroup]
2025-08-26T19:34:23.5918940Z ##[group]Processing PR #159861
2025-08-26T19:34:23.5919277Z [159861] URL: https://github.com/pytorch/pytorch/pull/159861
2025-08-26T19:34:23.5919676Z [159861] Checking whether to label PR as stale.
2025-08-26T19:34:23.5920036Z [159861] Skipping because PR was updated recently
2025-08-26T19:34:23.5920484Z ##[endgroup]
2025-08-26T19:34:23.5920851Z ##[group]Processing PR #159862
2025-08-26T19:34:23.5921200Z [159862] URL: https://github.com/pytorch/pytorch/pull/159862
2025-08-26T19:34:23.5921588Z [159862] Checking whether to label PR as stale.
2025-08-26T19:34:23.5921946Z [159862] Skipping because PR was updated recently
2025-08-26T19:34:23.5922404Z ##[endgroup]
2025-08-26T19:34:23.5922751Z ##[group]Processing PR #159868
2025-08-26T19:34:23.5923098Z [159868] URL: https://github.com/pytorch/pytorch/pull/159868
2025-08-26T19:34:23.5923495Z [159868] Checking whether to label PR as stale.
2025-08-26T19:34:23.5923836Z [159868] Skipping because PR was updated recently
2025-08-26T19:34:23.5924293Z ##[endgroup]
2025-08-26T19:34:23.5924650Z ##[group]Processing PR #159873
2025-08-26T19:34:23.5925038Z [159873] URL: https://github.com/pytorch/pytorch/pull/159873
2025-08-26T19:34:23.5925441Z [159873] Checking whether to label PR as stale.
2025-08-26T19:34:23.5925786Z [159873] Skipping because PR was updated recently
2025-08-26T19:34:23.5926244Z ##[endgroup]
2025-08-26T19:34:24.5808981Z ##[group]Processing PR #159874
2025-08-26T19:34:24.5809710Z [159874] URL: https://github.com/pytorch/pytorch/pull/159874
2025-08-26T19:34:24.5810455Z [159874] Checking whether to label PR as stale.
2025-08-26T19:34:24.5811140Z [159874] Skipping because PR was updated recently
2025-08-26T19:34:24.5811982Z ##[endgroup]
2025-08-26T19:34:24.5812695Z ##[group]Processing PR #159875
2025-08-26T19:34:24.5813379Z [159875] URL: https://github.com/pytorch/pytorch/pull/159875
2025-08-26T19:34:24.5814310Z [159875] Checking whether to label PR as stale.
2025-08-26T19:34:24.5815041Z [159875] Skipping because PR was updated recently
2025-08-26T19:34:24.5815994Z ##[endgroup]
2025-08-26T19:34:24.5816791Z ##[group]Processing PR #159876
2025-08-26T19:34:24.5817536Z [159876] URL: https://github.com/pytorch/pytorch/pull/159876
2025-08-26T19:34:24.5818338Z [159876] Checking whether to label PR as stale.
2025-08-26T19:34:24.5819067Z [159876] Skipping because PR was updated recently
2025-08-26T19:34:24.5820047Z ##[endgroup]
2025-08-26T19:34:24.5820804Z ##[group]Processing PR #159889
2025-08-26T19:34:24.5821525Z [159889] URL: https://github.com/pytorch/pytorch/pull/159889
2025-08-26T19:34:24.5822363Z [159889] Checking whether to label PR as stale.
2025-08-26T19:34:24.5823092Z [159889] Skipping because PR was updated recently
2025-08-26T19:34:24.5824084Z ##[endgroup]
2025-08-26T19:34:24.5824865Z ##[group]Processing PR #159893
2025-08-26T19:34:24.5825590Z [159893] URL: https://github.com/pytorch/pytorch/pull/159893
2025-08-26T19:34:24.5826415Z [159893] Checking whether to label PR as stale.
2025-08-26T19:34:24.5827135Z [159893] Skipping because PR was updated recently
2025-08-26T19:34:24.5828055Z ##[endgroup]
2025-08-26T19:34:24.5828792Z ##[group]Processing PR #159895
2025-08-26T19:34:24.5829532Z [159895] URL: https://github.com/pytorch/pytorch/pull/159895
2025-08-26T19:34:24.5830371Z [159895] Checking whether to label PR as stale.
2025-08-26T19:34:24.5831103Z [159895] Skipping because PR was updated recently
2025-08-26T19:34:24.5832043Z ##[endgroup]
2025-08-26T19:34:24.5832781Z ##[group]Processing PR #159898
2025-08-26T19:34:24.5833511Z [159898] URL: https://github.com/pytorch/pytorch/pull/159898
2025-08-26T19:34:24.5834326Z [159898] Checking whether to label PR as stale.
2025-08-26T19:34:24.5835059Z [159898] Skipping because PR was updated recently
2025-08-26T19:34:24.5836207Z ##[endgroup]
2025-08-26T19:34:24.5837357Z ##[group]Processing PR #159901
2025-08-26T19:34:24.5838100Z [159901] URL: https://github.com/pytorch/pytorch/pull/159901
2025-08-26T19:34:24.5838920Z [159901] Checking whether to label PR as stale.
2025-08-26T19:34:24.5839652Z [159901] Skipping because PR was updated recently
2025-08-26T19:34:24.5840598Z ##[endgroup]
2025-08-26T19:34:24.5841330Z ##[group]Processing PR #159905
2025-08-26T19:34:24.5842071Z [159905] URL: https://github.com/pytorch/pytorch/pull/159905
2025-08-26T19:34:24.5842906Z [159905] Checking whether to label PR as stale.
2025-08-26T19:34:24.5843629Z [159905] Skipping because PR was updated recently
2025-08-26T19:34:24.5844569Z ##[endgroup]
2025-08-26T19:34:24.5845304Z ##[group]Processing PR #159909
2025-08-26T19:34:24.5846023Z [159909] URL: https://github.com/pytorch/pytorch/pull/159909
2025-08-26T19:34:24.5846835Z [159909] Checking whether to label PR as stale.
2025-08-26T19:34:24.5847576Z [159909] Skipping because PR was updated recently
2025-08-26T19:34:24.5848474Z ##[endgroup]
2025-08-26T19:34:24.5849189Z ##[group]Processing PR #159919
2025-08-26T19:34:24.5849835Z [159919] URL: https://github.com/pytorch/pytorch/pull/159919
2025-08-26T19:34:24.5850578Z [159919] Checking whether to label PR as stale.
2025-08-26T19:34:24.5851243Z [159919] Skipping because PR was updated recently
2025-08-26T19:34:24.5852163Z ##[endgroup]
2025-08-26T19:34:24.5853066Z ##[group]Processing PR #159923
2025-08-26T19:34:24.5853776Z [159923] URL: https://github.com/pytorch/pytorch/pull/159923
2025-08-26T19:34:24.5854518Z [159923] Checking whether to label PR as stale.
2025-08-26T19:34:24.5855268Z [159923] Skipping because PR was updated recently
2025-08-26T19:34:24.5856127Z ##[endgroup]
2025-08-26T19:34:24.5856831Z ##[group]Processing PR #159934
2025-08-26T19:34:24.5857485Z [159934] URL: https://github.com/pytorch/pytorch/pull/159934
2025-08-26T19:34:24.5858236Z [159934] Checking whether to label PR as stale.
2025-08-26T19:34:24.5858930Z [159934] Skipping because PR was updated recently
2025-08-26T19:34:24.5859823Z ##[endgroup]
2025-08-26T19:34:24.5860534Z ##[group]Processing PR #159936
2025-08-26T19:34:24.5861236Z [159936] URL: https://github.com/pytorch/pytorch/pull/159936
2025-08-26T19:34:24.5862006Z [159936] Checking whether to label PR as stale.
2025-08-26T19:34:24.5862722Z [159936] Skipping because PR was updated recently
2025-08-26T19:34:24.5863722Z ##[endgroup]
2025-08-26T19:34:24.5864455Z ##[group]Processing PR #159937
2025-08-26T19:34:24.5865112Z [159937] URL: https://github.com/pytorch/pytorch/pull/159937
2025-08-26T19:34:24.5865791Z [159937] Checking whether to label PR as stale.
2025-08-26T19:34:24.5866578Z [159937] Skipping because PR was updated recently
2025-08-26T19:34:24.5867425Z ##[endgroup]
2025-08-26T19:34:24.5873612Z ##[group]Processing PR #159944
2025-08-26T19:34:24.5874267Z [159944] URL: https://github.com/pytorch/pytorch/pull/159944
2025-08-26T19:34:24.5875026Z [159944] Checking whether to label PR as stale.
2025-08-26T19:34:24.5875646Z [159944] Skipping because PR was updated recently
2025-08-26T19:34:24.5876512Z ##[endgroup]
2025-08-26T19:34:24.5877184Z ##[group]Processing PR #159946
2025-08-26T19:34:24.5877811Z [159946] URL: https://github.com/pytorch/pytorch/pull/159946
2025-08-26T19:34:24.5878905Z [159946] Checking whether to label PR as stale.
2025-08-26T19:34:24.5879576Z [159946] Skipping because PR was updated recently
2025-08-26T19:34:24.5880428Z ##[endgroup]
2025-08-26T19:34:24.5881106Z ##[group]Processing PR #159964
2025-08-26T19:34:24.5881744Z [159964] URL: https://github.com/pytorch/pytorch/pull/159964
2025-08-26T19:34:24.5882463Z [159964] Checking whether to label PR as stale.
2025-08-26T19:34:24.5883115Z [159964] Skipping because PR was updated recently
2025-08-26T19:34:24.5883958Z ##[endgroup]
2025-08-26T19:34:24.5884611Z ##[group]Processing PR #159966
2025-08-26T19:34:24.5885268Z [159966] URL: https://github.com/pytorch/pytorch/pull/159966
2025-08-26T19:34:24.5886001Z [159966] Checking whether to label PR as stale.
2025-08-26T19:34:24.5886646Z [159966] Skipping because PR was updated recently
2025-08-26T19:34:24.5887706Z ##[endgroup]
2025-08-26T19:34:24.5888368Z ##[group]Processing PR #159967
2025-08-26T19:34:24.5888971Z [159967] URL: https://github.com/pytorch/pytorch/pull/159967
2025-08-26T19:34:24.5889723Z [159967] Checking whether to label PR as stale.
2025-08-26T19:34:24.5890364Z [159967] Skipping because PR was updated recently
2025-08-26T19:34:24.5891243Z ##[endgroup]
2025-08-26T19:34:24.5891888Z ##[group]Processing PR #159971
2025-08-26T19:34:24.5892523Z [159971] URL: https://github.com/pytorch/pytorch/pull/159971
2025-08-26T19:34:24.5893254Z [159971] Checking whether to label PR as stale.
2025-08-26T19:34:24.5893898Z [159971] Skipping because PR was updated recently
2025-08-26T19:34:24.5894739Z ##[endgroup]
2025-08-26T19:34:24.5895391Z ##[group]Processing PR #160003
2025-08-26T19:34:24.5896020Z [160003] URL: https://github.com/pytorch/pytorch/pull/160003
2025-08-26T19:34:24.5896750Z [160003] Checking whether to label PR as stale.
2025-08-26T19:34:24.5897401Z [160003] Skipping because PR was updated recently
2025-08-26T19:34:24.5898274Z ##[endgroup]
2025-08-26T19:34:24.5898949Z ##[group]Processing PR #160017
2025-08-26T19:34:24.5899573Z [160017] URL: https://github.com/pytorch/pytorch/pull/160017
2025-08-26T19:34:24.5900311Z [160017] Checking whether to label PR as stale.
2025-08-26T19:34:24.5900934Z [160017] Skipping because PR was updated recently
2025-08-26T19:34:24.5901911Z ##[endgroup]
2025-08-26T19:34:24.5902477Z ##[group]Processing PR #160045
2025-08-26T19:34:24.5903031Z [160045] URL: https://github.com/pytorch/pytorch/pull/160045
2025-08-26T19:34:24.5903577Z [160045] Checking whether to label PR as stale.
2025-08-26T19:34:24.5904179Z [160045] Skipping because PR was updated recently
2025-08-26T19:34:24.5904958Z ##[endgroup]
2025-08-26T19:34:24.5905545Z ##[group]Processing PR #160055
2025-08-26T19:34:24.5906108Z [160055] URL: https://github.com/pytorch/pytorch/pull/160055
2025-08-26T19:34:24.5906788Z [160055] Checking whether to label PR as stale.
2025-08-26T19:34:24.5907382Z [160055] Skipping because PR was updated recently
2025-08-26T19:34:24.5908187Z ##[endgroup]
2025-08-26T19:34:24.5908797Z ##[group]Processing PR #160058
2025-08-26T19:34:24.5909366Z [160058] URL: https://github.com/pytorch/pytorch/pull/160058
2025-08-26T19:34:24.5910048Z [160058] Checking whether to label PR as stale.
2025-08-26T19:34:24.5910648Z [160058] Skipping because PR was updated recently
2025-08-26T19:34:24.5911397Z ##[endgroup]
2025-08-26T19:34:24.5911956Z ##[group]Processing PR #160061
2025-08-26T19:34:24.5912492Z [160061] URL: https://github.com/pytorch/pytorch/pull/160061
2025-08-26T19:34:24.5913101Z [160061] Checking whether to label PR as stale.
2025-08-26T19:34:24.5913674Z [160061] Skipping because PR was updated recently
2025-08-26T19:34:24.5914427Z ##[endgroup]
2025-08-26T19:34:24.5915019Z ##[group]Processing PR #160063
2025-08-26T19:34:24.5915609Z [160063] URL: https://github.com/pytorch/pytorch/pull/160063
2025-08-26T19:34:24.5916274Z [160063] Checking whether to label PR as stale.
2025-08-26T19:34:24.5916909Z [160063] Skipping because PR was updated recently
2025-08-26T19:34:24.5917735Z ##[endgroup]
2025-08-26T19:34:24.5918377Z ##[group]Processing PR #160067
2025-08-26T19:34:24.5918985Z [160067] URL: https://github.com/pytorch/pytorch/pull/160067
2025-08-26T19:34:24.5919696Z [160067] Checking whether to label PR as stale.
2025-08-26T19:34:24.5920350Z [160067] Skipping because PR was updated recently
2025-08-26T19:34:24.5921181Z ##[endgroup]
2025-08-26T19:34:24.5921837Z ##[group]Processing PR #160073
2025-08-26T19:34:24.5922446Z [160073] URL: https://github.com/pytorch/pytorch/pull/160073
2025-08-26T19:34:24.5923161Z [160073] Checking whether to label PR as stale.
2025-08-26T19:34:24.5923815Z [160073] Skipping because PR was updated recently
2025-08-26T19:34:24.5924642Z ##[endgroup]
2025-08-26T19:34:24.5925297Z ##[group]Processing PR #160076
2025-08-26T19:34:24.5925909Z [160076] URL: https://github.com/pytorch/pytorch/pull/160076
2025-08-26T19:34:24.5926625Z [160076] Checking whether to label PR as stale.
2025-08-26T19:34:24.5927455Z [160076] Skipping because PR was updated recently
2025-08-26T19:34:24.5928310Z ##[endgroup]
2025-08-26T19:34:24.5928957Z ##[group]Processing PR #160078
2025-08-26T19:34:24.5929570Z [160078] URL: https://github.com/pytorch/pytorch/pull/160078
2025-08-26T19:34:24.5930296Z [160078] Checking whether to label PR as stale.
2025-08-26T19:34:24.5930922Z [160078] Skipping because PR was updated recently
2025-08-26T19:34:24.5931747Z ##[endgroup]
2025-08-26T19:34:24.5932411Z ##[group]Processing PR #160079
2025-08-26T19:34:24.5933025Z [160079] URL: https://github.com/pytorch/pytorch/pull/160079
2025-08-26T19:34:24.5933745Z [160079] Checking whether to label PR as stale.
2025-08-26T19:34:24.5934406Z [160079] Skipping because PR was updated recently
2025-08-26T19:34:24.5935207Z ##[endgroup]
2025-08-26T19:34:24.5936073Z ##[group]Processing PR #160080
2025-08-26T19:34:24.5936664Z [160080] URL: https://github.com/pytorch/pytorch/pull/160080
2025-08-26T19:34:24.5937357Z [160080] Checking whether to label PR as stale.
2025-08-26T19:34:24.5937979Z [160080] Skipping because PR was updated recently
2025-08-26T19:34:24.5938734Z ##[endgroup]
2025-08-26T19:34:24.5939303Z ##[group]Processing PR #160082
2025-08-26T19:34:24.5939876Z [160082] URL: https://github.com/pytorch/pytorch/pull/160082
2025-08-26T19:34:24.5940548Z [160082] Checking whether to label PR as stale.
2025-08-26T19:34:24.5941298Z [160082] Skipping because PR was updated recently
2025-08-26T19:34:24.5942088Z ##[endgroup]
2025-08-26T19:34:24.5942689Z ##[group]Processing PR #160090
2025-08-26T19:34:24.5943276Z [160090] URL: https://github.com/pytorch/pytorch/pull/160090
2025-08-26T19:34:24.5944062Z [160090] Checking whether to label PR as stale.
2025-08-26T19:34:24.5944672Z [160090] Skipping because PR was updated recently
2025-08-26T19:34:24.5945512Z ##[endgroup]
2025-08-26T19:34:24.5946146Z ##[group]Processing PR #160091
2025-08-26T19:34:24.5946758Z [160091] URL: https://github.com/pytorch/pytorch/pull/160091
2025-08-26T19:34:24.5947457Z [160091] Checking whether to label PR as stale.
2025-08-26T19:34:24.5948068Z [160091] Skipping because PR was updated recently
2025-08-26T19:34:24.5948827Z ##[endgroup]
2025-08-26T19:34:24.5949407Z ##[group]Processing PR #160096
2025-08-26T19:34:24.5949999Z [160096] URL: https://github.com/pytorch/pytorch/pull/160096
2025-08-26T19:34:24.5950712Z [160096] Checking whether to label PR as stale.
2025-08-26T19:34:24.5951330Z [160096] Skipping because PR was updated recently
2025-08-26T19:34:24.5952157Z ##[endgroup]
2025-08-26T19:34:24.5952806Z ##[group]Processing PR #160099
2025-08-26T19:34:24.5953395Z [160099] URL: https://github.com/pytorch/pytorch/pull/160099
2025-08-26T19:34:24.5954065Z [160099] Checking whether to label PR as stale.
2025-08-26T19:34:24.5954631Z [160099] Skipping because PR was updated recently
2025-08-26T19:34:24.5955417Z ##[endgroup]
2025-08-26T19:34:24.5956053Z ##[group]Processing PR #160100
2025-08-26T19:34:24.5956660Z [160100] URL: https://github.com/pytorch/pytorch/pull/160100
2025-08-26T19:34:24.5957396Z [160100] Checking whether to label PR as stale.
2025-08-26T19:34:24.5958030Z [160100] Skipping because PR was updated recently
2025-08-26T19:34:24.5958852Z ##[endgroup]
2025-08-26T19:34:24.5959488Z ##[group]Processing PR #160101
2025-08-26T19:34:24.5960115Z [160101] URL: https://github.com/pytorch/pytorch/pull/160101
2025-08-26T19:34:24.5960772Z [160101] Checking whether to label PR as stale.
2025-08-26T19:34:24.5961430Z [160101] Skipping because PR was updated recently
2025-08-26T19:34:24.5962253Z ##[endgroup]
2025-08-26T19:34:24.5962630Z ##[group]Processing PR #160105
2025-08-26T19:34:24.5962972Z [160105] URL: https://github.com/pytorch/pytorch/pull/160105
2025-08-26T19:34:24.5963376Z [160105] Checking whether to label PR as stale.
2025-08-26T19:34:24.5963722Z [160105] Skipping because PR was updated recently
2025-08-26T19:34:24.5964182Z ##[endgroup]
2025-08-26T19:34:24.5964543Z ##[group]Processing PR #160111
2025-08-26T19:34:24.5964877Z [160111] URL: https://github.com/pytorch/pytorch/pull/160111
2025-08-26T19:34:24.5965467Z [160111] Checking whether to label PR as stale.
2025-08-26T19:34:24.5965826Z [160111] Skipping because PR was updated recently
2025-08-26T19:34:24.5966280Z ##[endgroup]
2025-08-26T19:34:24.5966669Z ##[group]Processing PR #160117
2025-08-26T19:34:24.5967023Z [160117] URL: https://github.com/pytorch/pytorch/pull/160117
2025-08-26T19:34:24.5967418Z [160117] Checking whether to label PR as stale.
2025-08-26T19:34:24.5967780Z [160117] Skipping because PR was updated recently
2025-08-26T19:34:24.5968249Z ##[endgroup]
2025-08-26T19:34:24.5968606Z ##[group]Processing PR #160126
2025-08-26T19:34:24.5968962Z [160126] URL: https://github.com/pytorch/pytorch/pull/160126
2025-08-26T19:34:24.5969371Z [160126] Checking whether to label PR as stale.
2025-08-26T19:34:24.5969721Z [160126] Skipping because PR was updated recently
2025-08-26T19:34:24.5970187Z ##[endgroup]
2025-08-26T19:34:24.5970563Z ##[group]Processing PR #160127
2025-08-26T19:34:24.5970906Z [160127] URL: https://github.com/pytorch/pytorch/pull/160127
2025-08-26T19:34:24.5971310Z [160127] Checking whether to label PR as stale.
2025-08-26T19:34:24.5971654Z [160127] Skipping because PR was updated recently
2025-08-26T19:34:24.5972115Z ##[endgroup]
2025-08-26T19:34:24.5972479Z ##[group]Processing PR #160129
2025-08-26T19:34:24.5972890Z [160129] URL: https://github.com/pytorch/pytorch/pull/160129
2025-08-26T19:34:24.5973279Z [160129] Checking whether to label PR as stale.
2025-08-26T19:34:24.5973632Z [160129] Skipping because PR was updated recently
2025-08-26T19:34:24.5974095Z ##[endgroup]
2025-08-26T19:34:24.5974443Z ##[group]Processing PR #160131
2025-08-26T19:34:24.5974789Z [160131] URL: https://github.com/pytorch/pytorch/pull/160131
2025-08-26T19:34:24.5975175Z [160131] Checking whether to label PR as stale.
2025-08-26T19:34:24.5975532Z [160131] Skipping because PR was updated recently
2025-08-26T19:34:24.5975990Z ##[endgroup]
2025-08-26T19:34:24.5976350Z ##[group]Processing PR #160136
2025-08-26T19:34:24.5976689Z [160136] URL: https://github.com/pytorch/pytorch/pull/160136
2025-08-26T19:34:24.5977089Z [160136] Checking whether to label PR as stale.
2025-08-26T19:34:24.5977434Z [160136] Skipping because PR was updated recently
2025-08-26T19:34:24.5977904Z ##[endgroup]
2025-08-26T19:34:24.5978268Z ##[group]Processing PR #160139
2025-08-26T19:34:24.5978609Z [160139] URL: https://github.com/pytorch/pytorch/pull/160139
2025-08-26T19:34:24.5979010Z [160139] Checking whether to label PR as stale.
2025-08-26T19:34:24.5979371Z [160139] Skipping because PR was updated recently
2025-08-26T19:34:24.5979818Z ##[endgroup]
2025-08-26T19:34:24.5980179Z ##[group]Processing PR #160146
2025-08-26T19:34:24.5980527Z [160146] URL: https://github.com/pytorch/pytorch/pull/160146
2025-08-26T19:34:24.5980916Z [160146] Checking whether to label PR as stale.
2025-08-26T19:34:24.5981272Z [160146] Skipping because PR was updated recently
2025-08-26T19:34:24.5981727Z ##[endgroup]
2025-08-26T19:34:24.5982087Z ##[group]Processing PR #160147
2025-08-26T19:34:24.5982428Z [160147] URL: https://github.com/pytorch/pytorch/pull/160147
2025-08-26T19:34:24.5982831Z [160147] Checking whether to label PR as stale.
2025-08-26T19:34:24.5983177Z [160147] Skipping because PR was updated recently
2025-08-26T19:34:24.5983728Z ##[endgroup]
2025-08-26T19:34:24.5984104Z ##[group]Processing PR #160151
2025-08-26T19:34:24.5984446Z [160151] URL: https://github.com/pytorch/pytorch/pull/160151
2025-08-26T19:34:24.5984852Z [160151] Checking whether to label PR as stale.
2025-08-26T19:34:24.5985212Z [160151] Skipping because PR was updated recently
2025-08-26T19:34:24.5985663Z ##[endgroup]
2025-08-26T19:34:24.5986023Z ##[group]Processing PR #160152
2025-08-26T19:34:24.5986368Z [160152] URL: https://github.com/pytorch/pytorch/pull/160152
2025-08-26T19:34:24.5986754Z [160152] Checking whether to label PR as stale.
2025-08-26T19:34:24.5987105Z [160152] Skipping because PR was updated recently
2025-08-26T19:34:24.5987560Z ##[endgroup]
2025-08-26T19:34:24.5988022Z ##[group]Processing PR #160154
2025-08-26T19:34:24.5988372Z [160154] URL: https://github.com/pytorch/pytorch/pull/160154
2025-08-26T19:34:24.5988780Z [160154] Checking whether to label PR as stale.
2025-08-26T19:34:24.5989125Z [160154] Skipping because PR was updated recently
2025-08-26T19:34:24.5989585Z ##[endgroup]
2025-08-26T19:34:24.5989948Z ##[group]Processing PR #160156
2025-08-26T19:34:24.5990395Z [160156] URL: https://github.com/pytorch/pytorch/pull/160156
2025-08-26T19:34:24.5990796Z [160156] Checking whether to label PR as stale.
2025-08-26T19:34:24.5991139Z [160156] Skipping because PR was updated recently
2025-08-26T19:34:24.5991599Z ##[endgroup]
2025-08-26T19:34:24.5991962Z ##[group]Processing PR #160158
2025-08-26T19:34:24.5992314Z [160158] URL: https://github.com/pytorch/pytorch/pull/160158
2025-08-26T19:34:24.5992703Z [160158] Checking whether to label PR as stale.
2025-08-26T19:34:24.5993060Z [160158] Skipping because PR was updated recently
2025-08-26T19:34:24.5993520Z ##[endgroup]
2025-08-26T19:34:24.5993872Z ##[group]Processing PR #160161
2025-08-26T19:34:24.5994219Z [160161] URL: https://github.com/pytorch/pytorch/pull/160161
2025-08-26T19:34:24.5994621Z [160161] Checking whether to label PR as stale.
2025-08-26T19:34:24.5994965Z [160161] Skipping because PR was updated recently
2025-08-26T19:34:24.5995424Z ##[endgroup]
2025-08-26T19:34:24.5995783Z ##[group]Processing PR #160166
2025-08-26T19:34:24.5996205Z [160166] URL: https://github.com/pytorch/pytorch/pull/160166
2025-08-26T19:34:24.5996609Z [160166] Checking whether to label PR as stale.
2025-08-26T19:34:24.5996954Z [160166] Skipping because PR was updated recently
2025-08-26T19:34:24.5997413Z ##[endgroup]
2025-08-26T19:34:24.5997780Z ##[group]Processing PR #160168
2025-08-26T19:34:24.5998131Z [160168] URL: https://github.com/pytorch/pytorch/pull/160168
2025-08-26T19:34:24.5998520Z [160168] Checking whether to label PR as stale.
2025-08-26T19:34:24.5998875Z [160168] Skipping because PR was updated recently
2025-08-26T19:34:24.5999342Z ##[endgroup]
2025-08-26T19:34:24.5999693Z ##[group]Processing PR #160174
2025-08-26T19:34:24.6000081Z [160174] URL: https://github.com/pytorch/pytorch/pull/160174
2025-08-26T19:34:24.6000498Z [160174] Checking whether to label PR as stale.
2025-08-26T19:34:24.6000934Z [160174] Skipping because PR was updated recently
2025-08-26T19:34:24.6001458Z ##[endgroup]
2025-08-26T19:34:24.6001825Z ##[group]Processing PR #160178
2025-08-26T19:34:24.6002159Z [160178] URL: https://github.com/pytorch/pytorch/pull/160178
2025-08-26T19:34:24.6002560Z [160178] Checking whether to label PR as stale.
2025-08-26T19:34:24.6002906Z [160178] Skipping because PR was updated recently
2025-08-26T19:34:24.6003365Z ##[endgroup]
2025-08-26T19:34:24.6003723Z ##[group]Processing PR #160180
2025-08-26T19:34:24.6004056Z [160180] URL: https://github.com/pytorch/pytorch/pull/160180
2025-08-26T19:34:24.6004455Z [160180] Checking whether to label PR as stale.
2025-08-26T19:34:24.6004810Z [160180] Skipping because PR was updated recently
2025-08-26T19:34:24.6005260Z ##[endgroup]
2025-08-26T19:34:24.6005619Z ##[group]Processing PR #160181
2025-08-26T19:34:24.6005969Z [160181] URL: https://github.com/pytorch/pytorch/pull/160181
2025-08-26T19:34:24.6006354Z [160181] Checking whether to label PR as stale.
2025-08-26T19:34:24.6006712Z [160181] Skipping because PR was updated recently
2025-08-26T19:34:24.6007165Z ##[endgroup]
2025-08-26T19:34:24.6007526Z ##[group]Processing PR #160182
2025-08-26T19:34:24.6007857Z [160182] URL: https://github.com/pytorch/pytorch/pull/160182
2025-08-26T19:34:24.6008254Z [160182] Checking whether to label PR as stale.
2025-08-26T19:34:24.6008597Z [160182] Skipping because PR was updated recently
2025-08-26T19:34:24.6009051Z ##[endgroup]
2025-08-26T19:34:24.6009409Z ##[group]Processing PR #160184
2025-08-26T19:34:24.6009741Z [160184] URL: https://github.com/pytorch/pytorch/pull/160184
2025-08-26T19:34:24.6010138Z [160184] Checking whether to label PR as stale.
2025-08-26T19:34:24.6010496Z [160184] Skipping because PR was updated recently
2025-08-26T19:34:24.6011025Z ##[endgroup]
2025-08-26T19:34:24.6011383Z ##[group]Processing PR #160185
2025-08-26T19:34:24.6011728Z [160185] URL: https://github.com/pytorch/pytorch/pull/160185
2025-08-26T19:34:24.6012120Z [160185] Checking whether to label PR as stale.
2025-08-26T19:34:24.6012476Z [160185] Skipping because PR was updated recently
2025-08-26T19:34:24.6012936Z ##[endgroup]
2025-08-26T19:34:24.6013288Z ##[group]Processing PR #160186
2025-08-26T19:34:24.6013634Z [160186] URL: https://github.com/pytorch/pytorch/pull/160186
2025-08-26T19:34:24.6014034Z [160186] Checking whether to label PR as stale.
2025-08-26T19:34:24.6014377Z [160186] Skipping because PR was updated recently
2025-08-26T19:34:24.6014839Z ##[endgroup]
2025-08-26T19:34:24.6015207Z ##[group]Processing PR #160189
2025-08-26T19:34:24.6015542Z [160189] URL: https://github.com/pytorch/pytorch/pull/160189
2025-08-26T19:34:24.6015942Z [160189] Checking whether to label PR as stale.
2025-08-26T19:34:24.6016288Z [160189] Skipping because PR was updated recently
2025-08-26T19:34:24.6016751Z ##[endgroup]
2025-08-26T19:34:24.6017114Z ##[group]Processing PR #160190
2025-08-26T19:34:24.6017462Z [160190] URL: https://github.com/pytorch/pytorch/pull/160190
2025-08-26T19:34:24.6017847Z [160190] Checking whether to label PR as stale.
2025-08-26T19:34:24.6018204Z [160190] Skipping because PR was updated recently
2025-08-26T19:34:24.6018719Z ##[endgroup]
2025-08-26T19:34:24.6019067Z ##[group]Processing PR #160198
2025-08-26T19:34:24.6019412Z [160198] URL: https://github.com/pytorch/pytorch/pull/160198
2025-08-26T19:34:24.6019810Z [160198] Checking whether to label PR as stale.
2025-08-26T19:34:24.6020150Z [160198] Skipping because PR was updated recently
2025-08-26T19:34:24.6020605Z ##[endgroup]
2025-08-26T19:34:24.6020967Z ##[group]Processing PR #160207
2025-08-26T19:34:24.6021302Z [160207] URL: https://github.com/pytorch/pytorch/pull/160207
2025-08-26T19:34:24.6021700Z [160207] Checking whether to label PR as stale.
2025-08-26T19:34:24.6022045Z [160207] Skipping because PR was updated recently
2025-08-26T19:34:24.6022502Z ##[endgroup]
2025-08-26T19:34:24.6022857Z ##[group]Processing PR #160209
2025-08-26T19:34:24.6023200Z [160209] URL: https://github.com/pytorch/pytorch/pull/160209
2025-08-26T19:34:24.6023586Z [160209] Checking whether to label PR as stale.
2025-08-26T19:34:24.6024035Z [160209] Skipping because PR was updated recently
2025-08-26T19:34:24.6024501Z ##[endgroup]
2025-08-26T19:34:24.6024848Z ##[group]Processing PR #160215
2025-08-26T19:34:24.6025196Z [160215] URL: https://github.com/pytorch/pytorch/pull/160215
2025-08-26T19:34:24.6025587Z [160215] Checking whether to label PR as stale.
2025-08-26T19:34:24.6025947Z [160215] Skipping because PR was updated recently
2025-08-26T19:34:24.6026407Z ##[endgroup]
2025-08-26T19:34:24.6026773Z ##[group]Processing PR #160218
2025-08-26T19:34:24.6027109Z [160218] URL: https://github.com/pytorch/pytorch/pull/160218
2025-08-26T19:34:24.6027513Z [160218] Checking whether to label PR as stale.
2025-08-26T19:34:24.6027864Z [160218] Skipping because PR was updated recently
2025-08-26T19:34:24.6028323Z ##[endgroup]
2025-08-26T19:34:24.6028684Z ##[group]Processing PR #160219
2025-08-26T19:34:24.6029035Z [160219] URL: https://github.com/pytorch/pytorch/pull/160219
2025-08-26T19:34:24.6029425Z [160219] Checking whether to label PR as stale.
2025-08-26T19:34:24.6029785Z [160219] Skipping because PR was updated recently
2025-08-26T19:34:24.6030231Z ##[endgroup]
2025-08-26T19:34:24.6030592Z ##[group]Processing PR #160224
2025-08-26T19:34:24.6030949Z [160224] URL: https://github.com/pytorch/pytorch/pull/160224
2025-08-26T19:34:24.6031341Z [160224] Checking whether to label PR as stale.
2025-08-26T19:34:24.6031703Z [160224] Skipping because PR was updated recently
2025-08-26T19:34:24.6032168Z ##[endgroup]
2025-08-26T19:34:24.6032537Z ##[group]Processing PR #160226
2025-08-26T19:34:24.6032873Z [160226] URL: https://github.com/pytorch/pytorch/pull/160226
2025-08-26T19:34:24.6033283Z [160226] Checking whether to label PR as stale.
2025-08-26T19:34:24.6033701Z [160226] Skipping because PR was updated recently
2025-08-26T19:34:24.6034167Z ##[endgroup]
2025-08-26T19:34:24.6034540Z ##[group]Processing PR #160229
2025-08-26T19:34:24.6034877Z [160229] URL: https://github.com/pytorch/pytorch/pull/160229
2025-08-26T19:34:24.6035284Z [160229] Checking whether to label PR as stale.
2025-08-26T19:34:24.6035874Z [160229] Skipping because PR was updated recently
2025-08-26T19:34:24.6036326Z ##[endgroup]
2025-08-26T19:34:24.6036692Z ##[group]Processing PR #160236
2025-08-26T19:34:24.6037040Z [160236] URL: https://github.com/pytorch/pytorch/pull/160236
2025-08-26T19:34:24.6037428Z [160236] Checking whether to label PR as stale.
2025-08-26T19:34:24.6037789Z [160236] Skipping because PR was updated recently
2025-08-26T19:34:24.6038244Z ##[endgroup]
2025-08-26T19:34:24.6038591Z ##[group]Processing PR #160239
2025-08-26T19:34:24.6038934Z [160239] URL: https://github.com/pytorch/pytorch/pull/160239
2025-08-26T19:34:24.6039334Z [160239] Checking whether to label PR as stale.
2025-08-26T19:34:24.6039682Z [160239] Skipping because PR was updated recently
2025-08-26T19:34:24.6040139Z ##[endgroup]
2025-08-26T19:34:24.6040500Z ##[group]Processing PR #160256
2025-08-26T19:34:24.6040830Z [160256] URL: https://github.com/pytorch/pytorch/pull/160256
2025-08-26T19:34:24.6041229Z [160256] Checking whether to label PR as stale.
2025-08-26T19:34:24.6041687Z [160256] Skipping because PR was updated recently
2025-08-26T19:34:24.6042149Z ##[endgroup]
2025-08-26T19:34:24.6042509Z ##[group]Processing PR #160258
2025-08-26T19:34:24.6042858Z [160258] URL: https://github.com/pytorch/pytorch/pull/160258
2025-08-26T19:34:24.6043244Z [160258] Checking whether to label PR as stale.
2025-08-26T19:34:24.6043600Z [160258] Skipping because PR was updated recently
2025-08-26T19:34:24.6044062Z ##[endgroup]
2025-08-26T19:34:24.6044410Z ##[group]Processing PR #160264
2025-08-26T19:34:24.6044758Z [160264] URL: https://github.com/pytorch/pytorch/pull/160264
2025-08-26T19:34:24.6045162Z [160264] Checking whether to label PR as stale.
2025-08-26T19:34:24.6045507Z [160264] Skipping because PR was updated recently
2025-08-26T19:34:24.6045966Z ##[endgroup]
2025-08-26T19:34:24.6046325Z ##[group]Processing PR #160266
2025-08-26T19:34:24.6046658Z [160266] URL: https://github.com/pytorch/pytorch/pull/160266
2025-08-26T19:34:24.6047058Z [160266] Checking whether to label PR as stale.
2025-08-26T19:34:24.6047405Z [160266] Skipping because PR was updated recently
2025-08-26T19:34:24.6047865Z ##[endgroup]
2025-08-26T19:34:24.6048229Z ##[group]Processing PR #160279
2025-08-26T19:34:24.6048578Z [160279] URL: https://github.com/pytorch/pytorch/pull/160279
2025-08-26T19:34:24.6048965Z [160279] Checking whether to label PR as stale.
2025-08-26T19:34:24.6049322Z [160279] Skipping because PR was updated recently
2025-08-26T19:34:24.6049782Z ##[endgroup]
2025-08-26T19:34:24.6050132Z ##[group]Processing PR #160282
2025-08-26T19:34:24.6050477Z [160282] URL: https://github.com/pytorch/pytorch/pull/160282
2025-08-26T19:34:24.6050865Z [160282] Checking whether to label PR as stale.
2025-08-26T19:34:24.6051222Z [160282] Skipping because PR was updated recently
2025-08-26T19:34:24.6051679Z ##[endgroup]
2025-08-26T19:34:24.6052038Z ##[group]Processing PR #160284
2025-08-26T19:34:24.6052368Z [160284] URL: https://github.com/pytorch/pytorch/pull/160284
2025-08-26T19:34:24.6052772Z [160284] Checking whether to label PR as stale.
2025-08-26T19:34:24.6053114Z [160284] Skipping because PR was updated recently
2025-08-26T19:34:24.6053574Z ##[endgroup]
2025-08-26T19:34:24.6053933Z ##[group]Processing PR #160288
2025-08-26T19:34:24.6054278Z [160288] URL: https://github.com/pytorch/pytorch/pull/160288
2025-08-26T19:34:24.6054666Z [160288] Checking whether to label PR as stale.
2025-08-26T19:34:24.6055019Z [160288] Skipping because PR was updated recently
2025-08-26T19:34:24.6055467Z ##[endgroup]
2025-08-26T19:34:24.6055828Z ##[group]Processing PR #160298
2025-08-26T19:34:24.6056173Z [160298] URL: https://github.com/pytorch/pytorch/pull/160298
2025-08-26T19:34:24.6056654Z [160298] Checking whether to label PR as stale.
2025-08-26T19:34:24.6057012Z [160298] Skipping because PR was updated recently
2025-08-26T19:34:24.6057472Z ##[endgroup]
2025-08-26T19:34:24.6057835Z ##[group]Processing PR #160299
2025-08-26T19:34:24.6058168Z [160299] URL: https://github.com/pytorch/pytorch/pull/160299
2025-08-26T19:34:24.6058576Z [160299] Checking whether to label PR as stale.
2025-08-26T19:34:24.6058921Z [160299] Skipping because PR was updated recently
2025-08-26T19:34:24.6059458Z ##[endgroup]
2025-08-26T19:34:24.6059826Z ##[group]Processing PR #160301
2025-08-26T19:34:24.6060161Z [160301] URL: https://github.com/pytorch/pytorch/pull/160301
2025-08-26T19:34:24.6060562Z [160301] Checking whether to label PR as stale.
2025-08-26T19:34:24.6060917Z [160301] Skipping because PR was updated recently
2025-08-26T19:34:24.6061362Z ##[endgroup]
2025-08-26T19:34:24.6061722Z ##[group]Processing PR #160315
2025-08-26T19:34:24.6062068Z [160315] URL: https://github.com/pytorch/pytorch/pull/160315
2025-08-26T19:34:24.6062458Z [160315] Checking whether to label PR as stale.
2025-08-26T19:34:24.6062815Z [160315] Skipping because PR was updated recently
2025-08-26T19:34:24.6063272Z ##[endgroup]
2025-08-26T19:34:24.6063723Z ##[group]Processing PR #160316
2025-08-26T19:34:24.6064069Z [160316] URL: https://github.com/pytorch/pytorch/pull/160316
2025-08-26T19:34:24.6064540Z [160316] Checking whether to label PR as stale.
2025-08-26T19:34:24.6064885Z [160316] Skipping because PR was updated recently
2025-08-26T19:34:24.6065357Z ##[endgroup]
2025-08-26T19:34:24.6065726Z ##[group]Processing PR #160318
2025-08-26T19:34:24.6066063Z [160318] URL: https://github.com/pytorch/pytorch/pull/160318
2025-08-26T19:34:24.6066470Z [160318] Checking whether to label PR as stale.
2025-08-26T19:34:24.6066820Z [160318] Skipping because PR was updated recently
2025-08-26T19:34:24.6067287Z ##[endgroup]
2025-08-26T19:34:24.6067652Z ##[group]Processing PR #160319
2025-08-26T19:34:24.6068011Z [160319] URL: https://github.com/pytorch/pytorch/pull/160319
2025-08-26T19:34:24.6068401Z [160319] Checking whether to label PR as stale.
2025-08-26T19:34:24.6068759Z [160319] Skipping because PR was updated recently
2025-08-26T19:34:24.6069223Z ##[endgroup]
2025-08-26T19:34:24.6069571Z ##[group]Processing PR #160323
2025-08-26T19:34:24.6069916Z [160323] URL: https://github.com/pytorch/pytorch/pull/160323
2025-08-26T19:34:24.6070320Z [160323] Checking whether to label PR as stale.
2025-08-26T19:34:24.6070660Z [160323] Skipping because PR was updated recently
2025-08-26T19:34:24.6071117Z ##[endgroup]
2025-08-26T19:34:24.6071477Z ##[group]Processing PR #160324
2025-08-26T19:34:24.6071809Z [160324] URL: https://github.com/pytorch/pytorch/pull/160324
2025-08-26T19:34:24.6072207Z [160324] Checking whether to label PR as stale.
2025-08-26T19:34:24.6072548Z [160324] Skipping because PR was updated recently
2025-08-26T19:34:24.6073004Z ##[endgroup]
2025-08-26T19:34:24.6073365Z ##[group]Processing PR #160325
2025-08-26T19:34:24.6073715Z [160325] URL: https://github.com/pytorch/pytorch/pull/160325
2025-08-26T19:34:24.6074102Z [160325] Checking whether to label PR as stale.
2025-08-26T19:34:24.6074457Z [160325] Skipping because PR was updated recently
2025-08-26T19:34:24.6074918Z ##[endgroup]
2025-08-26T19:34:24.6075269Z ##[group]Processing PR #160326
2025-08-26T19:34:24.6075622Z [160326] URL: https://github.com/pytorch/pytorch/pull/160326
2025-08-26T19:34:24.6076018Z [160326] Checking whether to label PR as stale.
2025-08-26T19:34:24.6076377Z [160326] Skipping because PR was updated recently
2025-08-26T19:34:24.6076837Z ##[endgroup]
2025-08-26T19:34:25.8037268Z ##[group]Processing PR #160327
2025-08-26T19:34:25.8037986Z [160327] URL: https://github.com/pytorch/pytorch/pull/160327
2025-08-26T19:34:25.8038742Z [160327] Checking whether to label PR as stale.
2025-08-26T19:34:25.8039407Z [160327] Skipping because PR was updated recently
2025-08-26T19:34:25.8040343Z ##[endgroup]
2025-08-26T19:34:25.8041246Z ##[group]Processing PR #160328
2025-08-26T19:34:25.8042449Z [160328] URL: https://github.com/pytorch/pytorch/pull/160328
2025-08-26T19:34:25.8043280Z [160328] Checking whether to label PR as stale.
2025-08-26T19:34:25.8044018Z [160328] Skipping because PR was updated recently
2025-08-26T19:34:25.8044968Z ##[endgroup]
2025-08-26T19:34:25.8045702Z ##[group]Processing PR #160329
2025-08-26T19:34:25.8046443Z [160329] URL: https://github.com/pytorch/pytorch/pull/160329
2025-08-26T19:34:25.8047265Z [160329] Checking whether to label PR as stale.
2025-08-26T19:34:25.8047919Z [160329] Skipping because PR was updated recently
2025-08-26T19:34:25.8048843Z ##[endgroup]
2025-08-26T19:34:25.8049596Z ##[group]Processing PR #160338
2025-08-26T19:34:25.8050321Z [160338] URL: https://github.com/pytorch/pytorch/pull/160338
2025-08-26T19:34:25.8051125Z [160338] Checking whether to label PR as stale.
2025-08-26T19:34:25.8051854Z [160338] Skipping because PR was updated recently
2025-08-26T19:34:25.8052800Z ##[endgroup]
2025-08-26T19:34:25.8053567Z ##[group]Processing PR #160339
2025-08-26T19:34:25.8054267Z [160339] URL: https://github.com/pytorch/pytorch/pull/160339
2025-08-26T19:34:25.8055108Z [160339] Checking whether to label PR as stale.
2025-08-26T19:34:25.8055837Z [160339] Skipping because PR was updated recently
2025-08-26T19:34:25.8056785Z ##[endgroup]
2025-08-26T19:34:25.8057539Z ##[group]Processing PR #160342
2025-08-26T19:34:25.8058480Z [160342] URL: https://github.com/pytorch/pytorch/pull/160342
2025-08-26T19:34:25.8059327Z [160342] Checking whether to label PR as stale.
2025-08-26T19:34:25.8060065Z [160342] Skipping because PR was updated recently
2025-08-26T19:34:25.8060996Z ##[endgroup]
2025-08-26T19:34:25.8061687Z ##[group]Processing PR #160344
2025-08-26T19:34:25.8062383Z [160344] URL: https://github.com/pytorch/pytorch/pull/160344
2025-08-26T19:34:25.8063204Z [160344] Checking whether to label PR as stale.
2025-08-26T19:34:25.8063999Z [160344] Skipping because PR was updated recently
2025-08-26T19:34:25.8064928Z ##[endgroup]
2025-08-26T19:34:25.8065665Z ##[group]Processing PR #160351
2025-08-26T19:34:25.8066278Z [160351] URL: https://github.com/pytorch/pytorch/pull/160351
2025-08-26T19:34:25.8083307Z [160351] Checking whether to label PR as stale.
2025-08-26T19:34:25.8083915Z [160351] Skipping because PR was updated recently
2025-08-26T19:34:25.8084618Z ##[endgroup]
2025-08-26T19:34:25.8085178Z ##[group]Processing PR #160353
2025-08-26T19:34:25.8085724Z [160353] URL: https://github.com/pytorch/pytorch/pull/160353
2025-08-26T19:34:25.8086276Z [160353] Checking whether to label PR as stale.
2025-08-26T19:34:25.8086811Z [160353] Skipping because PR was updated recently
2025-08-26T19:34:25.8087464Z ##[endgroup]
2025-08-26T19:34:25.8088007Z ##[group]Processing PR #160371
2025-08-26T19:34:25.8088508Z [160371] URL: https://github.com/pytorch/pytorch/pull/160371
2025-08-26T19:34:25.8089064Z [160371] Checking whether to label PR as stale.
2025-08-26T19:34:25.8089576Z [160371] Skipping because PR was updated recently
2025-08-26T19:34:25.8090230Z ##[endgroup]
2025-08-26T19:34:25.8090775Z ##[group]Processing PR #160372
2025-08-26T19:34:25.8091289Z [160372] URL: https://github.com/pytorch/pytorch/pull/160372
2025-08-26T19:34:25.8091823Z [160372] Checking whether to label PR as stale.
2025-08-26T19:34:25.8092349Z [160372] Skipping because PR was updated recently
2025-08-26T19:34:25.8092996Z ##[endgroup]
2025-08-26T19:34:25.8093539Z ##[group]Processing PR #160380
2025-08-26T19:34:25.8094394Z [160380] URL: https://github.com/pytorch/pytorch/pull/160380
2025-08-26T19:34:25.8094934Z [160380] Checking whether to label PR as stale.
2025-08-26T19:34:25.8095414Z [160380] Skipping because PR was updated recently
2025-08-26T19:34:25.8096110Z ##[endgroup]
2025-08-26T19:34:25.8096676Z ##[group]Processing PR #160381
2025-08-26T19:34:25.8097231Z [160381] URL: https://github.com/pytorch/pytorch/pull/160381
2025-08-26T19:34:25.8097923Z [160381] Checking whether to label PR as stale.
2025-08-26T19:34:25.8098454Z [160381] Skipping because PR was updated recently
2025-08-26T19:34:25.8099598Z ##[endgroup]
2025-08-26T19:34:25.8100157Z ##[group]Processing PR #160390
2025-08-26T19:34:25.8100697Z [160390] URL: https://github.com/pytorch/pytorch/pull/160390
2025-08-26T19:34:25.8101315Z [160390] Checking whether to label PR as stale.
2025-08-26T19:34:25.8101834Z [160390] Skipping because PR was updated recently
2025-08-26T19:34:25.8102552Z ##[endgroup]
2025-08-26T19:34:25.8102947Z ##[group]Processing PR #160401
2025-08-26T19:34:25.8103287Z [160401] URL: https://github.com/pytorch/pytorch/pull/160401
2025-08-26T19:34:25.8103782Z [160401] Checking whether to label PR as stale.
2025-08-26T19:34:25.8104133Z [160401] Skipping because PR was updated recently
2025-08-26T19:34:25.8104601Z ##[endgroup]
2025-08-26T19:34:25.8104971Z ##[group]Processing PR #160402
2025-08-26T19:34:25.8105329Z [160402] URL: https://github.com/pytorch/pytorch/pull/160402
2025-08-26T19:34:25.8105723Z [160402] Checking whether to label PR as stale.
2025-08-26T19:34:25.8106082Z [160402] Skipping because PR was updated recently
2025-08-26T19:34:25.8106552Z ##[endgroup]
2025-08-26T19:34:25.8106907Z ##[group]Processing PR #160406
2025-08-26T19:34:25.8107254Z [160406] URL: https://github.com/pytorch/pytorch/pull/160406
2025-08-26T19:34:25.8107658Z [160406] Checking whether to label PR as stale.
2025-08-26T19:34:25.8108004Z [160406] Skipping because PR was updated recently
2025-08-26T19:34:25.8108496Z ##[endgroup]
2025-08-26T19:34:25.8109051Z ##[group]Processing PR #160408
2025-08-26T19:34:25.8109392Z [160408] URL: https://github.com/pytorch/pytorch/pull/160408
2025-08-26T19:34:25.8109800Z [160408] Checking whether to label PR as stale.
2025-08-26T19:34:25.8110147Z [160408] Skipping because PR was updated recently
2025-08-26T19:34:25.8110612Z ##[endgroup]
2025-08-26T19:34:25.8110978Z ##[group]Processing PR #160412
2025-08-26T19:34:25.8111329Z [160412] URL: https://github.com/pytorch/pytorch/pull/160412
2025-08-26T19:34:25.8111714Z [160412] Checking whether to label PR as stale.
2025-08-26T19:34:25.8112068Z [160412] Skipping because PR was updated recently
2025-08-26T19:34:25.8112532Z ##[endgroup]
2025-08-26T19:34:25.8112879Z ##[group]Processing PR #160417
2025-08-26T19:34:25.8113225Z [160417] URL: https://github.com/pytorch/pytorch/pull/160417
2025-08-26T19:34:25.8113609Z [160417] Checking whether to label PR as stale.
2025-08-26T19:34:25.8113966Z [160417] Skipping because PR was updated recently
2025-08-26T19:34:25.8114426Z ##[endgroup]
2025-08-26T19:34:25.8114786Z ##[group]Processing PR #160418
2025-08-26T19:34:25.8115117Z [160418] URL: https://github.com/pytorch/pytorch/pull/160418
2025-08-26T19:34:25.8115513Z [160418] Checking whether to label PR as stale.
2025-08-26T19:34:25.8115859Z [160418] Skipping because PR was updated recently
2025-08-26T19:34:25.8116315Z ##[endgroup]
2025-08-26T19:34:25.8116675Z ##[group]Processing PR #160429
2025-08-26T19:34:25.8117355Z [160429] URL: https://github.com/pytorch/pytorch/pull/160429
2025-08-26T19:34:25.8117933Z [160429] Checking whether to label PR as stale.
2025-08-26T19:34:25.8118550Z [160429] Skipping because PR was updated recently
2025-08-26T19:34:25.8119194Z ##[endgroup]
2025-08-26T19:34:25.8119717Z ##[group]Processing PR #160431
2025-08-26T19:34:25.8120236Z [160431] URL: https://github.com/pytorch/pytorch/pull/160431
2025-08-26T19:34:25.8120785Z [160431] Checking whether to label PR as stale.
2025-08-26T19:34:25.8127724Z [160431] Skipping because PR was updated recently
2025-08-26T19:34:25.8128620Z ##[endgroup]
2025-08-26T19:34:25.8129190Z ##[group]Processing PR #160434
2025-08-26T19:34:25.8129730Z [160434] URL: https://github.com/pytorch/pytorch/pull/160434
2025-08-26T19:34:25.8130295Z [160434] Checking whether to label PR as stale.
2025-08-26T19:34:25.8130814Z [160434] Skipping because PR was updated recently
2025-08-26T19:34:25.8131468Z ##[endgroup]
2025-08-26T19:34:25.8132009Z ##[group]Processing PR #160441
2025-08-26T19:34:25.8132528Z [160441] URL: https://github.com/pytorch/pytorch/pull/160441
2025-08-26T19:34:25.8133086Z [160441] Checking whether to label PR as stale.
2025-08-26T19:34:25.8133745Z [160441] Skipping because PR was updated recently
2025-08-26T19:34:25.8134392Z ##[endgroup]
2025-08-26T19:34:25.8134919Z ##[group]Processing PR #160443
2025-08-26T19:34:25.8135432Z [160443] URL: https://github.com/pytorch/pytorch/pull/160443
2025-08-26T19:34:25.8136371Z [160443] Checking whether to label PR as stale.
2025-08-26T19:34:25.8136982Z [160443] Skipping because PR was updated recently
2025-08-26T19:34:25.8137644Z ##[endgroup]
2025-08-26T19:34:25.8138194Z ##[group]Processing PR #160448
2025-08-26T19:34:25.8138714Z [160448] URL: https://github.com/pytorch/pytorch/pull/160448
2025-08-26T19:34:25.8139255Z [160448] Checking whether to label PR as stale.
2025-08-26T19:34:25.8139786Z [160448] Skipping because PR was updated recently
2025-08-26T19:34:25.8140427Z ##[endgroup]
2025-08-26T19:34:25.8140948Z ##[group]Processing PR #160449
2025-08-26T19:34:25.8141462Z [160449] URL: https://github.com/pytorch/pytorch/pull/160449
2025-08-26T19:34:25.8142012Z [160449] Checking whether to label PR as stale.
2025-08-26T19:34:25.8142529Z [160449] Skipping because PR was updated recently
2025-08-26T19:34:25.8143177Z ##[endgroup]
2025-08-26T19:34:25.8143769Z ##[group]Processing PR #160452
2025-08-26T19:34:25.8144294Z [160452] URL: https://github.com/pytorch/pytorch/pull/160452
2025-08-26T19:34:25.8144829Z [160452] Checking whether to label PR as stale.
2025-08-26T19:34:25.8145522Z [160452] Skipping because PR was updated recently
2025-08-26T19:34:25.8146176Z ##[endgroup]
2025-08-26T19:34:25.8146716Z ##[group]Processing PR #160456
2025-08-26T19:34:25.8147218Z [160456] URL: https://github.com/pytorch/pytorch/pull/160456
2025-08-26T19:34:25.8147762Z [160456] Checking whether to label PR as stale.
2025-08-26T19:34:25.8148273Z [160456] Skipping because PR was updated recently
2025-08-26T19:34:25.8148937Z ##[endgroup]
2025-08-26T19:34:25.8149472Z ##[group]Processing PR #160457
2025-08-26T19:34:25.8149990Z [160457] URL: https://github.com/pytorch/pytorch/pull/160457
2025-08-26T19:34:25.8150524Z [160457] Checking whether to label PR as stale.
2025-08-26T19:34:25.8151059Z [160457] Skipping because PR was updated recently
2025-08-26T19:34:25.8151700Z ##[endgroup]
2025-08-26T19:34:25.8152235Z ##[group]Processing PR #160461
2025-08-26T19:34:25.8152737Z [160461] URL: https://github.com/pytorch/pytorch/pull/160461
2025-08-26T19:34:25.8153284Z [160461] Checking whether to label PR as stale.
2025-08-26T19:34:25.8153824Z [160461] Skipping because PR was updated recently
2025-08-26T19:34:25.8154448Z ##[endgroup]
2025-08-26T19:34:25.8154982Z ##[group]Processing PR #160464
2025-08-26T19:34:25.8155497Z [160464] URL: https://github.com/pytorch/pytorch/pull/160464
2025-08-26T19:34:25.8156031Z [160464] Checking whether to label PR as stale.
2025-08-26T19:34:25.8156562Z [160464] Skipping because PR was updated recently
2025-08-26T19:34:25.8157212Z ##[endgroup]
2025-08-26T19:34:25.8157745Z ##[group]Processing PR #160467
2025-08-26T19:34:25.8158246Z [160467] URL: https://github.com/pytorch/pytorch/pull/160467
2025-08-26T19:34:25.8158796Z [160467] Checking whether to label PR as stale.
2025-08-26T19:34:25.8159333Z [160467] Skipping because PR was updated recently
2025-08-26T19:34:25.8159962Z ##[endgroup]
2025-08-26T19:34:25.8160497Z ##[group]Processing PR #160468
2025-08-26T19:34:25.8161015Z [160468] URL: https://github.com/pytorch/pytorch/pull/160468
2025-08-26T19:34:25.8161570Z [160468] Checking whether to label PR as stale.
2025-08-26T19:34:25.8162089Z [160468] Skipping because PR was updated recently
2025-08-26T19:34:25.8162731Z ##[endgroup]
2025-08-26T19:34:25.8163267Z ##[group]Processing PR #160470
2025-08-26T19:34:25.8163765Z [160470] URL: https://github.com/pytorch/pytorch/pull/160470
2025-08-26T19:34:25.8164317Z [160470] Checking whether to label PR as stale.
2025-08-26T19:34:25.8164848Z [160470] Skipping because PR was updated recently
2025-08-26T19:34:25.8165492Z ##[endgroup]
2025-08-26T19:34:25.8166015Z ##[group]Processing PR #160473
2025-08-26T19:34:25.8166528Z [160473] URL: https://github.com/pytorch/pytorch/pull/160473
2025-08-26T19:34:25.8167202Z [160473] Checking whether to label PR as stale.
2025-08-26T19:34:25.8167734Z [160473] Skipping because PR was updated recently
2025-08-26T19:34:25.8168381Z ##[endgroup]
2025-08-26T19:34:25.8168918Z ##[group]Processing PR #160474
2025-08-26T19:34:25.8169435Z [160474] URL: https://github.com/pytorch/pytorch/pull/160474
2025-08-26T19:34:25.8169977Z [160474] Checking whether to label PR as stale.
2025-08-26T19:34:25.8170502Z [160474] Skipping because PR was updated recently
2025-08-26T19:34:25.8171148Z ##[endgroup]
2025-08-26T19:34:25.8171682Z ##[group]Processing PR #160475
2025-08-26T19:34:25.8172195Z [160475] URL: https://github.com/pytorch/pytorch/pull/160475
2025-08-26T19:34:25.8172729Z [160475] Checking whether to label PR as stale.
2025-08-26T19:34:25.8173253Z [160475] Skipping because PR was updated recently
2025-08-26T19:34:25.8173903Z ##[endgroup]
2025-08-26T19:34:25.8174438Z ##[group]Processing PR #160476
2025-08-26T19:34:25.8174938Z [160476] URL: https://github.com/pytorch/pytorch/pull/160476
2025-08-26T19:34:25.8175490Z [160476] Checking whether to label PR as stale.
2025-08-26T19:34:25.8176020Z [160476] Skipping because PR was updated recently
2025-08-26T19:34:25.8176649Z ##[endgroup]
2025-08-26T19:34:25.8177183Z ##[group]Processing PR #160480
2025-08-26T19:34:25.8177703Z [160480] URL: https://github.com/pytorch/pytorch/pull/160480
2025-08-26T19:34:25.8178334Z [160480] Checking whether to label PR as stale.
2025-08-26T19:34:25.8178848Z [160480] Skipping because PR was updated recently
2025-08-26T19:34:25.8179490Z ##[endgroup]
2025-08-26T19:34:25.8180019Z ##[group]Processing PR #160483
2025-08-26T19:34:25.8180509Z [160483] URL: https://github.com/pytorch/pytorch/pull/160483
2025-08-26T19:34:25.8181102Z [160483] Checking whether to label PR as stale.
2025-08-26T19:34:25.8181630Z [160483] Skipping because PR was updated recently
2025-08-26T19:34:25.8182266Z ##[endgroup]
2025-08-26T19:34:25.8182786Z ##[group]Processing PR #160486
2025-08-26T19:34:25.8183300Z [160486] URL: https://github.com/pytorch/pytorch/pull/160486
2025-08-26T19:34:25.8183925Z [160486] Checking whether to label PR as stale.
2025-08-26T19:34:25.8184453Z [160486] Skipping because PR was updated recently
2025-08-26T19:34:25.8185099Z ##[endgroup]
2025-08-26T19:34:25.8185635Z ##[group]Processing PR #160488
2025-08-26T19:34:25.8186156Z [160488] URL: https://github.com/pytorch/pytorch/pull/160488
2025-08-26T19:34:25.8186690Z [160488] Checking whether to label PR as stale.
2025-08-26T19:34:25.8187220Z [160488] Skipping because PR was updated recently
2025-08-26T19:34:25.8187864Z ##[endgroup]
2025-08-26T19:34:25.8188382Z ##[group]Processing PR #160496
2025-08-26T19:34:25.8188896Z [160496] URL: https://github.com/pytorch/pytorch/pull/160496
2025-08-26T19:34:25.8189449Z [160496] Checking whether to label PR as stale.
2025-08-26T19:34:25.8189954Z [160496] Skipping because PR was updated recently
2025-08-26T19:34:25.8190599Z ##[endgroup]
2025-08-26T19:34:25.8191128Z ##[group]Processing PR #160503
2025-08-26T19:34:25.8191641Z [160503] URL: https://github.com/pytorch/pytorch/pull/160503
2025-08-26T19:34:25.8192177Z [160503] Checking whether to label PR as stale.
2025-08-26T19:34:25.8192709Z [160503] Skipping because PR was updated recently
2025-08-26T19:34:25.8193353Z ##[endgroup]
2025-08-26T19:34:25.8193883Z ##[group]Processing PR #160509
2025-08-26T19:34:25.8194385Z [160509] URL: https://github.com/pytorch/pytorch/pull/160509
2025-08-26T19:34:25.8194941Z [160509] Checking whether to label PR as stale.
2025-08-26T19:34:25.8195449Z [160509] Skipping because PR was updated recently
2025-08-26T19:34:25.8196096Z ##[endgroup]
2025-08-26T19:34:25.8196627Z ##[group]Processing PR #160510
2025-08-26T19:34:25.8197138Z [160510] URL: https://github.com/pytorch/pytorch/pull/160510
2025-08-26T19:34:25.8197669Z [160510] Checking whether to label PR as stale.
2025-08-26T19:34:25.8198197Z [160510] Skipping because PR was updated recently
2025-08-26T19:34:25.8198842Z ##[endgroup]
2025-08-26T19:34:25.8199372Z ##[group]Processing PR #160516
2025-08-26T19:34:25.8199973Z [160516] URL: https://github.com/pytorch/pytorch/pull/160516
2025-08-26T19:34:25.8200519Z [160516] Checking whether to label PR as stale.
2025-08-26T19:34:25.8201037Z [160516] Skipping because PR was updated recently
2025-08-26T19:34:25.8201676Z ##[endgroup]
2025-08-26T19:34:25.8202203Z ##[group]Processing PR #160519
2025-08-26T19:34:25.8202718Z [160519] URL: https://github.com/pytorch/pytorch/pull/160519
2025-08-26T19:34:25.8203253Z [160519] Checking whether to label PR as stale.
2025-08-26T19:34:25.8203779Z [160519] Skipping because PR was updated recently
2025-08-26T19:34:25.8204420Z ##[endgroup]
2025-08-26T19:34:25.8204961Z ##[group]Processing PR #160527
2025-08-26T19:34:25.8205463Z [160527] URL: https://github.com/pytorch/pytorch/pull/160527
2025-08-26T19:34:25.8206010Z [160527] Checking whether to label PR as stale.
2025-08-26T19:34:25.8206540Z [160527] Skipping because PR was updated recently
2025-08-26T19:34:25.8207169Z ##[endgroup]
2025-08-26T19:34:25.8207702Z ##[group]Processing PR #160532
2025-08-26T19:34:25.8208225Z [160532] URL: https://github.com/pytorch/pytorch/pull/160532
2025-08-26T19:34:25.8208775Z [160532] Checking whether to label PR as stale.
2025-08-26T19:34:25.8209288Z [160532] Skipping because PR was updated recently
2025-08-26T19:34:25.8209932Z ##[endgroup]
2025-08-26T19:34:25.8210461Z ##[group]Processing PR #160533
2025-08-26T19:34:25.8211064Z [160533] URL: https://github.com/pytorch/pytorch/pull/160533
2025-08-26T19:34:25.8211629Z [160533] Checking whether to label PR as stale.
2025-08-26T19:34:25.8212161Z [160533] Skipping because PR was updated recently
2025-08-26T19:34:25.8212806Z ##[endgroup]
2025-08-26T19:34:25.8213328Z ##[group]Processing PR #160536
2025-08-26T19:34:25.8213840Z [160536] URL: https://github.com/pytorch/pytorch/pull/160536
2025-08-26T19:34:25.8214389Z [160536] Checking whether to label PR as stale.
2025-08-26T19:34:25.8214904Z [160536] Skipping because PR was updated recently
2025-08-26T19:34:25.8215543Z ##[endgroup]
2025-08-26T19:34:25.8216082Z ##[group]Processing PR #160538
2025-08-26T19:34:25.8216601Z [160538] URL: https://github.com/pytorch/pytorch/pull/160538
2025-08-26T19:34:25.8217132Z [160538] Checking whether to label PR as stale.
2025-08-26T19:34:25.8217663Z [160538] Skipping because PR was updated recently
2025-08-26T19:34:25.8218301Z ##[endgroup]
2025-08-26T19:34:25.8218834Z ##[group]Processing PR #160539
2025-08-26T19:34:25.8219335Z [160539] URL: https://github.com/pytorch/pytorch/pull/160539
2025-08-26T19:34:25.8219890Z [160539] Checking whether to label PR as stale.
2025-08-26T19:34:25.8220401Z [160539] Skipping because PR was updated recently
2025-08-26T19:34:25.8221047Z ##[endgroup]
2025-08-26T19:34:25.8221568Z ##[group]Processing PR #160545
2025-08-26T19:34:25.8222082Z [160545] URL: https://github.com/pytorch/pytorch/pull/160545
2025-08-26T19:34:25.8222615Z [160545] Checking whether to label PR as stale.
2025-08-26T19:34:25.8223139Z [160545] Skipping because PR was updated recently
2025-08-26T19:34:25.8223932Z ##[endgroup]
2025-08-26T19:34:25.8224482Z ##[group]Processing PR #160555
2025-08-26T19:34:25.8224981Z [160555] URL: https://github.com/pytorch/pytorch/pull/160555
2025-08-26T19:34:25.8225526Z [160555] Checking whether to label PR as stale.
2025-08-26T19:34:25.8226040Z [160555] Skipping because PR was updated recently
2025-08-26T19:34:25.8226682Z ##[endgroup]
2025-08-26T19:34:25.8227210Z ##[group]Processing PR #160561
2025-08-26T19:34:25.8227728Z [160561] URL: https://github.com/pytorch/pytorch/pull/160561
2025-08-26T19:34:25.8228260Z [160561] Checking whether to label PR as stale.
2025-08-26T19:34:25.8228793Z [160561] Skipping because PR was updated recently
2025-08-26T19:34:25.8229440Z ##[endgroup]
2025-08-26T19:34:25.8229970Z ##[group]Processing PR #160563
2025-08-26T19:34:25.8230472Z [160563] URL: https://github.com/pytorch/pytorch/pull/160563
2025-08-26T19:34:25.8231025Z [160563] Checking whether to label PR as stale.
2025-08-26T19:34:25.8231557Z [160563] Skipping because PR was updated recently
2025-08-26T19:34:25.8232179Z ##[endgroup]
2025-08-26T19:34:25.8232816Z ##[group]Processing PR #160573
2025-08-26T19:34:25.8233332Z [160573] URL: https://github.com/pytorch/pytorch/pull/160573
2025-08-26T19:34:25.8233861Z [160573] Checking whether to label PR as stale.
2025-08-26T19:34:25.8234388Z [160573] Skipping because PR was updated recently
2025-08-26T19:34:25.8235032Z ##[endgroup]
2025-08-26T19:34:25.8235758Z ##[group]Processing PR #160576
2025-08-26T19:34:25.8236286Z [160576] URL: https://github.com/pytorch/pytorch/pull/160576
2025-08-26T19:34:25.8236870Z [160576] Checking whether to label PR as stale.
2025-08-26T19:34:25.8237404Z [160576] Skipping because PR was updated recently
2025-08-26T19:34:25.8238036Z ##[endgroup]
2025-08-26T19:34:25.8238569Z ##[group]Processing PR #160580
2025-08-26T19:34:25.8239088Z [160580] URL: https://github.com/pytorch/pytorch/pull/160580
2025-08-26T19:34:25.8239643Z [160580] Checking whether to label PR as stale.
2025-08-26T19:34:25.8240156Z [160580] Skipping because PR was updated recently
2025-08-26T19:34:25.8240877Z ##[endgroup]
2025-08-26T19:34:25.8241423Z ##[group]Processing PR #160581
2025-08-26T19:34:25.8241925Z [160581] URL: https://github.com/pytorch/pytorch/pull/160581
2025-08-26T19:34:25.8242469Z [160581] Checking whether to label PR as stale.
2025-08-26T19:34:25.8243013Z [160581] Skipping because PR was updated recently
2025-08-26T19:34:25.8243654Z ##[endgroup]
2025-08-26T19:34:25.8244299Z ##[group]Processing PR #160582
2025-08-26T19:34:25.8244819Z [160582] URL: https://github.com/pytorch/pytorch/pull/160582
2025-08-26T19:34:25.8245372Z [160582] Checking whether to label PR as stale.
2025-08-26T19:34:25.8245885Z [160582] Skipping because PR was updated recently
2025-08-26T19:34:25.8246526Z ##[endgroup]
2025-08-26T19:34:25.8247054Z ##[group]Processing PR #160584
2025-08-26T19:34:25.8247568Z [160584] URL: https://github.com/pytorch/pytorch/pull/160584
2025-08-26T19:34:25.8248103Z [160584] Checking whether to label PR as stale.
2025-08-26T19:34:25.8248626Z [160584] Skipping because PR was updated recently
2025-08-26T19:34:25.8249309Z ##[endgroup]
2025-08-26T19:34:25.8249845Z ##[group]Processing PR #160585
2025-08-26T19:34:25.8250345Z [160585] URL: https://github.com/pytorch/pytorch/pull/160585
2025-08-26T19:34:25.8250891Z [160585] Checking whether to label PR as stale.
2025-08-26T19:34:25.8251398Z [160585] Skipping because PR was updated recently
2025-08-26T19:34:25.8252044Z ##[endgroup]
2025-08-26T19:34:25.8252585Z ##[group]Processing PR #160587
2025-08-26T19:34:25.8253105Z [160587] URL: https://github.com/pytorch/pytorch/pull/160587
2025-08-26T19:34:25.8253640Z [160587] Checking whether to label PR as stale.
2025-08-26T19:34:25.8254167Z [160587] Skipping because PR was updated recently
2025-08-26T19:34:25.8254805Z ##[endgroup]
2025-08-26T19:34:25.8255336Z ##[group]Processing PR #160588
2025-08-26T19:34:25.8255835Z [160588] URL: https://github.com/pytorch/pytorch/pull/160588
2025-08-26T19:34:25.8256379Z [160588] Checking whether to label PR as stale.
2025-08-26T19:34:25.8256894Z [160588] Skipping because PR was updated recently
2025-08-26T19:34:25.8257537Z ##[endgroup]
2025-08-26T19:34:25.8258067Z ##[group]Processing PR #160590
2025-08-26T19:34:25.8258579Z [160590] URL: https://github.com/pytorch/pytorch/pull/160590
2025-08-26T19:34:25.8259108Z [160590] Checking whether to label PR as stale.
2025-08-26T19:34:25.8259636Z [160590] Skipping because PR was updated recently
2025-08-26T19:34:25.8260339Z ##[endgroup]
2025-08-26T19:34:25.8260876Z ##[group]Processing PR #160601
2025-08-26T19:34:25.8261376Z [160601] URL: https://github.com/pytorch/pytorch/pull/160601
2025-08-26T19:34:25.8261915Z [160601] Checking whether to label PR as stale.
2025-08-26T19:34:25.8262464Z [160601] Skipping because PR was updated recently
2025-08-26T19:34:25.8263085Z ##[endgroup]
2025-08-26T19:34:25.8263616Z ##[group]Processing PR #160609
2025-08-26T19:34:25.8264219Z [160609] URL: https://github.com/pytorch/pytorch/pull/160609
2025-08-26T19:34:25.8264766Z [160609] Checking whether to label PR as stale.
2025-08-26T19:34:25.8265280Z [160609] Skipping because PR was updated recently
2025-08-26T19:34:25.8266059Z ##[endgroup]
2025-08-26T19:34:25.8266589Z ##[group]Processing PR #160610
2025-08-26T19:34:25.8267087Z [160610] URL: https://github.com/pytorch/pytorch/pull/160610
2025-08-26T19:34:25.8267637Z [160610] Checking whether to label PR as stale.
2025-08-26T19:34:25.8268166Z [160610] Skipping because PR was updated recently
2025-08-26T19:34:25.8268806Z ##[endgroup]
2025-08-26T19:34:25.8269323Z ##[group]Processing PR #160611
2025-08-26T19:34:25.8269832Z [160611] URL: https://github.com/pytorch/pytorch/pull/160611
2025-08-26T19:34:25.8270383Z [160611] Checking whether to label PR as stale.
2025-08-26T19:34:25.8270890Z [160611] Skipping because PR was updated recently
2025-08-26T19:34:25.8271528Z ##[endgroup]
2025-08-26T19:34:25.8272057Z ##[group]Processing PR #160613
2025-08-26T19:34:25.8272572Z [160613] URL: https://github.com/pytorch/pytorch/pull/160613
2025-08-26T19:34:25.8273107Z [160613] Checking whether to label PR as stale.
2025-08-26T19:34:25.8273638Z [160613] Skipping because PR was updated recently
2025-08-26T19:34:25.8274279Z ##[endgroup]
2025-08-26T19:34:25.8274851Z ##[group]Processing PR #160618
2025-08-26T19:34:25.8275358Z [160618] URL: https://github.com/pytorch/pytorch/pull/160618
2025-08-26T19:34:25.8275903Z [160618] Checking whether to label PR as stale.
2025-08-26T19:34:25.8276411Z [160618] Skipping because PR was updated recently
2025-08-26T19:34:25.8277133Z ##[endgroup]
2025-08-26T19:34:25.8277675Z ##[group]Processing PR #160619
2025-08-26T19:34:25.8278195Z [160619] URL: https://github.com/pytorch/pytorch/pull/160619
2025-08-26T19:34:25.8278729Z [160619] Checking whether to label PR as stale.
2025-08-26T19:34:25.8279259Z [160619] Skipping because PR was updated recently
2025-08-26T19:34:25.8279902Z ##[endgroup]
2025-08-26T19:34:25.8280434Z ##[group]Processing PR #160624
2025-08-26T19:34:25.8280935Z [160624] URL: https://github.com/pytorch/pytorch/pull/160624
2025-08-26T19:34:25.8281481Z [160624] Checking whether to label PR as stale.
2025-08-26T19:34:25.8282001Z [160624] Skipping because PR was updated recently
2025-08-26T19:34:25.8282641Z ##[endgroup]
2025-08-26T19:34:25.8283168Z ##[group]Processing PR #160638
2025-08-26T19:34:25.8283677Z [160638] URL: https://github.com/pytorch/pytorch/pull/160638
2025-08-26T19:34:25.8284208Z [160638] Checking whether to label PR as stale.
2025-08-26T19:34:25.8284739Z [160638] Skipping because PR was updated recently
2025-08-26T19:34:25.8285379Z ##[endgroup]
2025-08-26T19:34:25.8285908Z ##[group]Processing PR #160639
2025-08-26T19:34:25.8286411Z [160639] URL: https://github.com/pytorch/pytorch/pull/160639
2025-08-26T19:34:25.8286956Z [160639] Checking whether to label PR as stale.
2025-08-26T19:34:25.8287479Z [160639] Skipping because PR was updated recently
2025-08-26T19:34:25.8288108Z ##[endgroup]
2025-08-26T19:34:25.8288639Z ##[group]Processing PR #160641
2025-08-26T19:34:25.8289157Z [160641] URL: https://github.com/pytorch/pytorch/pull/160641
2025-08-26T19:34:25.8289691Z [160641] Checking whether to label PR as stale.
2025-08-26T19:34:25.8290222Z [160641] Skipping because PR was updated recently
2025-08-26T19:34:25.8290864Z ##[endgroup]
2025-08-26T19:34:25.8291393Z ##[group]Processing PR #160644
2025-08-26T19:34:25.8291891Z [160644] URL: https://github.com/pytorch/pytorch/pull/160644
2025-08-26T19:34:25.8292415Z [160644] Checking whether to label PR as stale.
2025-08-26T19:34:25.8293004Z [160644] Skipping because PR was updated recently
2025-08-26T19:34:25.8293639Z ##[endgroup]
2025-08-26T19:34:25.8294162Z ##[group]Processing PR #160653
2025-08-26T19:34:25.8294673Z [160653] URL: https://github.com/pytorch/pytorch/pull/160653
2025-08-26T19:34:25.8295222Z [160653] Checking whether to label PR as stale.
2025-08-26T19:34:25.8295729Z [160653] Skipping because PR was updated recently
2025-08-26T19:34:25.8296367Z ##[endgroup]
2025-08-26T19:34:25.8296898Z ##[group]Processing PR #160655
2025-08-26T19:34:25.8297416Z [160655] URL: https://github.com/pytorch/pytorch/pull/160655
2025-08-26T19:34:25.8297947Z [160655] Checking whether to label PR as stale.
2025-08-26T19:34:25.8298570Z [160655] Skipping because PR was updated recently
2025-08-26T19:34:25.8299209Z ##[endgroup]
2025-08-26T19:34:25.8299733Z ##[group]Processing PR #160659
2025-08-26T19:34:25.8300250Z [160659] URL: https://github.com/pytorch/pytorch/pull/160659
2025-08-26T19:34:25.8300833Z [160659] Checking whether to label PR as stale.
2025-08-26T19:34:25.8301351Z [160659] Skipping because PR was updated recently
2025-08-26T19:34:25.8301985Z ##[endgroup]
2025-08-26T19:34:25.8302514Z ##[group]Processing PR #160666
2025-08-26T19:34:25.8303024Z [160666] URL: https://github.com/pytorch/pytorch/pull/160666
2025-08-26T19:34:25.8303555Z [160666] Checking whether to label PR as stale.
2025-08-26T19:34:25.8304174Z [160666] Skipping because PR was updated recently
2025-08-26T19:34:25.8304823Z ##[endgroup]
2025-08-26T19:34:25.8305349Z ##[group]Processing PR #160667
2025-08-26T19:34:25.8305845Z [160667] URL: https://github.com/pytorch/pytorch/pull/160667
2025-08-26T19:34:25.8306399Z [160667] Checking whether to label PR as stale.
2025-08-26T19:34:25.8306910Z [160667] Skipping because PR was updated recently
2025-08-26T19:34:25.8307556Z ##[endgroup]
2025-08-26T19:34:25.8308085Z ##[group]Processing PR #160669
2025-08-26T19:34:25.8308598Z [160669] URL: https://github.com/pytorch/pytorch/pull/160669
2025-08-26T19:34:25.8309129Z [160669] Checking whether to label PR as stale.
2025-08-26T19:34:25.8309794Z [160669] Skipping because PR was updated recently
2025-08-26T19:34:25.8310429Z ##[endgroup]
2025-08-26T19:34:25.8310941Z ##[group]Processing PR #160670
2025-08-26T19:34:25.8311450Z [160670] URL: https://github.com/pytorch/pytorch/pull/160670
2025-08-26T19:34:25.8311992Z [160670] Checking whether to label PR as stale.
2025-08-26T19:34:25.8312496Z [160670] Skipping because PR was updated recently
2025-08-26T19:34:25.8313134Z ##[endgroup]
2025-08-26T19:34:25.8313652Z ##[group]Processing PR #160671
2025-08-26T19:34:25.8314158Z [160671] URL: https://github.com/pytorch/pytorch/pull/160671
2025-08-26T19:34:25.8314697Z [160671] Checking whether to label PR as stale.
2025-08-26T19:34:25.8315216Z [160671] Skipping because PR was updated recently
2025-08-26T19:34:25.8315852Z ##[endgroup]
2025-08-26T19:34:25.8316368Z ##[group]Processing PR #160674
2025-08-26T19:34:25.8316869Z [160674] URL: https://github.com/pytorch/pytorch/pull/160674
2025-08-26T19:34:25.8317417Z [160674] Checking whether to label PR as stale.
2025-08-26T19:34:25.8317921Z [160674] Skipping because PR was updated recently
2025-08-26T19:34:25.8318555Z ##[endgroup]
2025-08-26T19:34:25.8319086Z ##[group]Processing PR #160676
2025-08-26T19:34:25.8319596Z [160676] URL: https://github.com/pytorch/pytorch/pull/160676
2025-08-26T19:34:25.8320126Z [160676] Checking whether to label PR as stale.
2025-08-26T19:34:25.8320643Z [160676] Skipping because PR was updated recently
2025-08-26T19:34:25.8321269Z ##[endgroup]
2025-08-26T19:34:25.8321784Z ##[group]Processing PR #160677
2025-08-26T19:34:25.8322279Z [160677] URL: https://github.com/pytorch/pytorch/pull/160677
2025-08-26T19:34:25.8322812Z [160677] Checking whether to label PR as stale.
2025-08-26T19:34:25.8323326Z [160677] Skipping because PR was updated recently
2025-08-26T19:34:25.8323945Z ##[endgroup]
2025-08-26T19:34:25.8324459Z ##[group]Processing PR #160679
2025-08-26T19:34:25.8324964Z [160679] URL: https://github.com/pytorch/pytorch/pull/160679
2025-08-26T19:34:25.8325494Z [160679] Checking whether to label PR as stale.
2025-08-26T19:34:25.8326051Z [160679] Skipping because PR was updated recently
2025-08-26T19:34:25.8326682Z ##[endgroup]
2025-08-26T19:34:25.8327200Z ##[group]Processing PR #160680
2025-08-26T19:34:25.8327692Z [160680] URL: https://github.com/pytorch/pytorch/pull/160680
2025-08-26T19:34:25.8328230Z [160680] Checking whether to label PR as stale.
2025-08-26T19:34:25.8328755Z [160680] Skipping because PR was updated recently
2025-08-26T19:34:25.8329370Z ##[endgroup]
2025-08-26T19:34:25.8329890Z ##[group]Processing PR #160681
2025-08-26T19:34:25.8330402Z [160681] URL: https://github.com/pytorch/pytorch/pull/160681
2025-08-26T19:34:25.8331035Z [160681] Checking whether to label PR as stale.
2025-08-26T19:34:25.8331545Z [160681] Skipping because PR was updated recently
2025-08-26T19:34:25.8332188Z ##[endgroup]
2025-08-26T19:34:25.8332714Z ##[group]Processing PR #160682
2025-08-26T19:34:25.8333209Z [160682] URL: https://github.com/pytorch/pytorch/pull/160682
2025-08-26T19:34:25.8333767Z [160682] Checking whether to label PR as stale.
2025-08-26T19:34:25.8334286Z [160682] Skipping because PR was updated recently
2025-08-26T19:34:25.8334922Z ##[endgroup]
2025-08-26T19:34:25.8335435Z ##[group]Processing PR #160685
2025-08-26T19:34:25.8336116Z [160685] URL: https://github.com/pytorch/pytorch/pull/160685
2025-08-26T19:34:25.8336671Z [160685] Checking whether to label PR as stale.
2025-08-26T19:34:25.8337191Z [160685] Skipping because PR was updated recently
2025-08-26T19:34:25.8337827Z ##[endgroup]
2025-08-26T19:34:25.8338346Z ##[group]Processing PR #160686
2025-08-26T19:34:25.8338856Z [160686] URL: https://github.com/pytorch/pytorch/pull/160686
2025-08-26T19:34:25.8339386Z [160686] Checking whether to label PR as stale.
2025-08-26T19:34:25.8339911Z [160686] Skipping because PR was updated recently
2025-08-26T19:34:25.8340546Z ##[endgroup]
2025-08-26T19:34:25.8341073Z ##[group]Processing PR #160687
2025-08-26T19:34:25.8341571Z [160687] URL: https://github.com/pytorch/pytorch/pull/160687
2025-08-26T19:34:25.8342254Z [160687] Checking whether to label PR as stale.
2025-08-26T19:34:25.8342755Z [160687] Skipping because PR was updated recently
2025-08-26T19:34:25.8343319Z ##[endgroup]
2025-08-26T19:34:26.6577023Z ##[group]Processing PR #160688
2025-08-26T19:34:26.6578220Z [160688] URL: https://github.com/pytorch/pytorch/pull/160688
2025-08-26T19:34:26.6579405Z [160688] Checking whether to label PR as stale.
2025-08-26T19:34:26.6580286Z [160688] Skipping because PR was updated recently
2025-08-26T19:34:26.6581404Z ##[endgroup]
2025-08-26T19:34:26.6582266Z ##[group]Processing PR #160690
2025-08-26T19:34:26.6583159Z [160690] URL: https://github.com/pytorch/pytorch/pull/160690
2025-08-26T19:34:26.6584102Z [160690] Checking whether to label PR as stale.
2025-08-26T19:34:26.6584987Z [160690] Skipping because PR was updated recently
2025-08-26T19:34:26.6586071Z ##[endgroup]
2025-08-26T19:34:26.6586859Z ##[group]Processing PR #160692
2025-08-26T19:34:26.6587769Z [160692] URL: https://github.com/pytorch/pytorch/pull/160692
2025-08-26T19:34:26.6588487Z [160692] Checking whether to label PR as stale.
2025-08-26T19:34:26.6589102Z [160692] Skipping because PR was updated recently
2025-08-26T19:34:26.6590106Z ##[endgroup]
2025-08-26T19:34:26.6590768Z ##[group]Processing PR #160704
2025-08-26T19:34:26.6591377Z [160704] URL: https://github.com/pytorch/pytorch/pull/160704
2025-08-26T19:34:26.6592118Z [160704] Checking whether to label PR as stale.
2025-08-26T19:34:26.6592757Z [160704] Skipping because PR was updated recently
2025-08-26T19:34:26.6593590Z ##[endgroup]
2025-08-26T19:34:26.6594256Z ##[group]Processing PR #160706
2025-08-26T19:34:26.6594967Z [160706] URL: https://github.com/pytorch/pytorch/pull/160706
2025-08-26T19:34:26.6595702Z [160706] Checking whether to label PR as stale.
2025-08-26T19:34:26.6596339Z [160706] Skipping because PR was updated recently
2025-08-26T19:34:26.6597147Z ##[endgroup]
2025-08-26T19:34:26.6597723Z ##[group]Processing PR #160708
2025-08-26T19:34:26.6598374Z [160708] URL: https://github.com/pytorch/pytorch/pull/160708
2025-08-26T19:34:26.6599105Z [160708] Checking whether to label PR as stale.
2025-08-26T19:34:26.6599759Z [160708] Skipping because PR was updated recently
2025-08-26T19:34:26.6601305Z ##[endgroup]
2025-08-26T19:34:26.6602001Z ##[group]Processing PR #160711
2025-08-26T19:34:26.6602615Z [160711] URL: https://github.com/pytorch/pytorch/pull/160711
2025-08-26T19:34:26.6603286Z [160711] Checking whether to label PR as stale.
2025-08-26T19:34:26.6603949Z [160711] Skipping because PR was updated recently
2025-08-26T19:34:26.6604817Z ##[endgroup]
2025-08-26T19:34:26.6605868Z ##[group]Processing PR #160712
2025-08-26T19:34:26.6606496Z [160712] URL: https://github.com/pytorch/pytorch/pull/160712
2025-08-26T19:34:26.6607240Z [160712] Checking whether to label PR as stale.
2025-08-26T19:34:26.6607881Z [160712] Skipping because PR was updated recently
2025-08-26T19:34:26.6608733Z ##[endgroup]
2025-08-26T19:34:26.6609404Z ##[group]Processing PR #160720
2025-08-26T19:34:26.6610037Z [160720] URL: https://github.com/pytorch/pytorch/pull/160720
2025-08-26T19:34:26.6610754Z [160720] Checking whether to label PR as stale.
2025-08-26T19:34:26.6611400Z [160720] Skipping because PR was updated recently
2025-08-26T19:34:26.6612238Z ##[endgroup]
2025-08-26T19:34:26.6612912Z ##[group]Processing PR #160729
2025-08-26T19:34:26.6613510Z [160729] URL: https://github.com/pytorch/pytorch/pull/160729
2025-08-26T19:34:26.6614240Z [160729] Checking whether to label PR as stale.
2025-08-26T19:34:26.6614846Z [160729] Skipping because PR was updated recently
2025-08-26T19:34:26.6615713Z ##[endgroup]
2025-08-26T19:34:26.6616312Z ##[group]Processing PR #160733
2025-08-26T19:34:26.6616916Z [160733] URL: https://github.com/pytorch/pytorch/pull/160733
2025-08-26T19:34:26.6617665Z [160733] Checking whether to label PR as stale.
2025-08-26T19:34:26.6618313Z [160733] Skipping because PR was updated recently
2025-08-26T19:34:26.6619145Z ##[endgroup]
2025-08-26T19:34:26.6619811Z ##[group]Processing PR #160735
2025-08-26T19:34:26.6620649Z [160735] URL: https://github.com/pytorch/pytorch/pull/160735
2025-08-26T19:34:26.6621391Z [160735] Checking whether to label PR as stale.
2025-08-26T19:34:26.6621962Z [160735] Skipping because PR was updated recently
2025-08-26T19:34:26.6622831Z ##[endgroup]
2025-08-26T19:34:26.6623498Z ##[group]Processing PR #160741
2025-08-26T19:34:26.6624218Z [160741] URL: https://github.com/pytorch/pytorch/pull/160741
2025-08-26T19:34:26.6624891Z [160741] Checking whether to label PR as stale.
2025-08-26T19:34:26.6625631Z [160741] Skipping because PR was updated recently
2025-08-26T19:34:26.6626510Z ##[endgroup]
2025-08-26T19:34:26.6627149Z ##[group]Processing PR #160745
2025-08-26T19:34:26.6627716Z [160745] URL: https://github.com/pytorch/pytorch/pull/160745
2025-08-26T19:34:26.6628452Z [160745] Checking whether to label PR as stale.
2025-08-26T19:34:26.6629094Z [160745] Skipping because PR was updated recently
2025-08-26T19:34:26.6629946Z ##[endgroup]
2025-08-26T19:34:26.6630571Z ##[group]Processing PR #160748
2025-08-26T19:34:26.6631205Z [160748] URL: https://github.com/pytorch/pytorch/pull/160748
2025-08-26T19:34:26.6631945Z [160748] Checking whether to label PR as stale.
2025-08-26T19:34:26.6632596Z [160748] Skipping because PR was updated recently
2025-08-26T19:34:26.6633450Z ##[endgroup]
2025-08-26T19:34:26.6634109Z ##[group]Processing PR #160750
2025-08-26T19:34:26.6634749Z [160750] URL: https://github.com/pytorch/pytorch/pull/160750
2025-08-26T19:34:26.6635466Z [160750] Checking whether to label PR as stale.
2025-08-26T19:34:26.6636418Z [160750] Skipping because PR was updated recently
2025-08-26T19:34:26.6637292Z ##[endgroup]
2025-08-26T19:34:26.6637936Z ##[group]Processing PR #160753
2025-08-26T19:34:26.6638480Z [160753] URL: https://github.com/pytorch/pytorch/pull/160753
2025-08-26T19:34:26.6639205Z [160753] Checking whether to label PR as stale.
2025-08-26T19:34:26.6639868Z [160753] Skipping because PR was updated recently
2025-08-26T19:34:26.6640725Z ##[endgroup]
2025-08-26T19:34:26.6641360Z ##[group]Processing PR #160758
2025-08-26T19:34:26.6641988Z [160758] URL: https://github.com/pytorch/pytorch/pull/160758
2025-08-26T19:34:26.6642735Z [160758] Checking whether to label PR as stale.
2025-08-26T19:34:26.6643382Z [160758] Skipping because PR was updated recently
2025-08-26T19:34:26.6644191Z ##[endgroup]
2025-08-26T19:34:26.6644887Z ##[group]Processing PR #160763
2025-08-26T19:34:26.6645511Z [160763] URL: https://github.com/pytorch/pytorch/pull/160763
2025-08-26T19:34:26.6646249Z [160763] Checking whether to label PR as stale.
2025-08-26T19:34:26.6646884Z [160763] Skipping because PR was updated recently
2025-08-26T19:34:26.6647990Z ##[endgroup]
2025-08-26T19:34:26.6648660Z ##[group]Processing PR #160767
2025-08-26T19:34:26.6649262Z [160767] URL: https://github.com/pytorch/pytorch/pull/160767
2025-08-26T19:34:26.6650544Z [160767] Checking whether to label PR as stale.
2025-08-26T19:34:26.6651205Z [160767] Skipping because PR was updated recently
2025-08-26T19:34:26.6652026Z ##[endgroup]
2025-08-26T19:34:26.6652705Z ##[group]Processing PR #160769
2025-08-26T19:34:26.6653348Z [160769] URL: https://github.com/pytorch/pytorch/pull/160769
2025-08-26T19:34:26.6654051Z [160769] Checking whether to label PR as stale.
2025-08-26T19:34:26.6654707Z [160769] Skipping because PR was updated recently
2025-08-26T19:34:26.6655569Z ##[endgroup]
2025-08-26T19:34:26.6656217Z ##[group]Processing PR #160772
2025-08-26T19:34:26.6656813Z [160772] URL: https://github.com/pytorch/pytorch/pull/160772
2025-08-26T19:34:26.6657540Z [160772] Checking whether to label PR as stale.
2025-08-26T19:34:26.6658185Z [160772] Skipping because PR was updated recently
2025-08-26T19:34:26.6659062Z ##[endgroup]
2025-08-26T19:34:26.6659704Z ##[group]Processing PR #160776
2025-08-26T19:34:26.6660321Z [160776] URL: https://github.com/pytorch/pytorch/pull/160776
2025-08-26T19:34:26.6661053Z [160776] Checking whether to label PR as stale.
2025-08-26T19:34:26.6661693Z [160776] Skipping because PR was updated recently
2025-08-26T19:34:26.6662730Z ##[endgroup]
2025-08-26T19:34:26.6663397Z ##[group]Processing PR #160781
2025-08-26T19:34:26.6664107Z [160781] URL: https://github.com/pytorch/pytorch/pull/160781
2025-08-26T19:34:26.6664791Z [160781] Checking whether to label PR as stale.
2025-08-26T19:34:26.6665443Z [160781] Skipping because PR was updated recently
2025-08-26T19:34:26.6666294Z ##[endgroup]
2025-08-26T19:34:26.6666945Z ##[group]Processing PR #160792
2025-08-26T19:34:26.6667543Z [160792] URL: https://github.com/pytorch/pytorch/pull/160792
2025-08-26T19:34:26.6668290Z [160792] Checking whether to label PR as stale.
2025-08-26T19:34:26.6668945Z [160792] Skipping because PR was updated recently
2025-08-26T19:34:26.6669775Z ##[endgroup]
2025-08-26T19:34:26.6670404Z ##[group]Processing PR #160794
2025-08-26T19:34:26.6671024Z [160794] URL: https://github.com/pytorch/pytorch/pull/160794
2025-08-26T19:34:26.6671767Z [160794] Checking whether to label PR as stale.
2025-08-26T19:34:26.6672413Z [160794] Skipping because PR was updated recently
2025-08-26T19:34:26.6673254Z ##[endgroup]
2025-08-26T19:34:26.6673915Z ##[group]Processing PR #160798
2025-08-26T19:34:26.6674551Z [160798] URL: https://github.com/pytorch/pytorch/pull/160798
2025-08-26T19:34:26.6675256Z [160798] Checking whether to label PR as stale.
2025-08-26T19:34:26.6675920Z [160798] Skipping because PR was updated recently
2025-08-26T19:34:26.6676780Z ##[endgroup]
2025-08-26T19:34:26.6677431Z ##[group]Processing PR #160801
2025-08-26T19:34:26.6678040Z [160801] URL: https://github.com/pytorch/pytorch/pull/160801
2025-08-26T19:34:26.6678767Z [160801] Checking whether to label PR as stale.
2025-08-26T19:34:26.6679443Z [160801] Skipping because PR was updated recently
2025-08-26T19:34:26.6680274Z ##[endgroup]
2025-08-26T19:34:26.6680933Z ##[group]Processing PR #160807
2025-08-26T19:34:26.6681555Z [160807] URL: https://github.com/pytorch/pytorch/pull/160807
2025-08-26T19:34:26.6682305Z [160807] Checking whether to label PR as stale.
2025-08-26T19:34:26.6682922Z [160807] Skipping because PR was updated recently
2025-08-26T19:34:26.6683763Z ##[endgroup]
2025-08-26T19:34:26.6684434Z ##[group]Processing PR #160822
2025-08-26T19:34:26.6685049Z [160822] URL: https://github.com/pytorch/pytorch/pull/160822
2025-08-26T19:34:26.6685764Z [160822] Checking whether to label PR as stale.
2025-08-26T19:34:26.6686387Z [160822] Skipping because PR was updated recently
2025-08-26T19:34:26.6687203Z ##[endgroup]
2025-08-26T19:34:26.6687846Z ##[group]Processing PR #160824
2025-08-26T19:34:26.6688485Z [160824] URL: https://github.com/pytorch/pytorch/pull/160824
2025-08-26T19:34:26.6689208Z [160824] Checking whether to label PR as stale.
2025-08-26T19:34:26.6690047Z [160824] Skipping because PR was updated recently
2025-08-26T19:34:26.6690866Z ##[endgroup]
2025-08-26T19:34:26.6691499Z ##[group]Processing PR #160825
2025-08-26T19:34:26.6692093Z [160825] URL: https://github.com/pytorch/pytorch/pull/160825
2025-08-26T19:34:26.6692833Z [160825] Checking whether to label PR as stale.
2025-08-26T19:34:26.6693485Z [160825] Skipping because PR was updated recently
2025-08-26T19:34:26.6694347Z ##[endgroup]
2025-08-26T19:34:26.6694972Z ##[group]Processing PR #160836
2025-08-26T19:34:26.6695576Z [160836] URL: https://github.com/pytorch/pytorch/pull/160836
2025-08-26T19:34:26.6696292Z [160836] Checking whether to label PR as stale.
2025-08-26T19:34:26.6696937Z [160836] Skipping because PR was updated recently
2025-08-26T19:34:26.6697780Z ##[endgroup]
2025-08-26T19:34:26.6698443Z ##[group]Processing PR #160837
2025-08-26T19:34:26.6699065Z [160837] URL: https://github.com/pytorch/pytorch/pull/160837
2025-08-26T19:34:26.6699764Z [160837] Checking whether to label PR as stale.
2025-08-26T19:34:26.6700418Z [160837] Skipping because PR was updated recently
2025-08-26T19:34:26.6701247Z ##[endgroup]
2025-08-26T19:34:26.6701896Z ##[group]Processing PR #160839
2025-08-26T19:34:26.6702535Z [160839] URL: https://github.com/pytorch/pytorch/pull/160839
2025-08-26T19:34:26.6703277Z [160839] Checking whether to label PR as stale.
2025-08-26T19:34:26.6704100Z [160839] Skipping because PR was updated recently
2025-08-26T19:34:26.6704928Z ##[endgroup]
2025-08-26T19:34:26.6705571Z ##[group]Processing PR #160842
2025-08-26T19:34:26.6706179Z [160842] URL: https://github.com/pytorch/pytorch/pull/160842
2025-08-26T19:34:26.6706927Z [160842] Checking whether to label PR as stale.
2025-08-26T19:34:26.6707576Z [160842] Skipping because PR was updated recently
2025-08-26T19:34:26.6708396Z ##[endgroup]
2025-08-26T19:34:26.6709045Z ##[group]Processing PR #160843
2025-08-26T19:34:26.6709662Z [160843] URL: https://github.com/pytorch/pytorch/pull/160843
2025-08-26T19:34:26.6710380Z [160843] Checking whether to label PR as stale.
2025-08-26T19:34:26.6711047Z [160843] Skipping because PR was updated recently
2025-08-26T19:34:26.6711906Z ##[endgroup]
2025-08-26T19:34:26.6712548Z ##[group]Processing PR #160844
2025-08-26T19:34:26.6713145Z [160844] URL: https://github.com/pytorch/pytorch/pull/160844
2025-08-26T19:34:26.6713868Z [160844] Checking whether to label PR as stale.
2025-08-26T19:34:26.6714504Z [160844] Skipping because PR was updated recently
2025-08-26T19:34:26.6715346Z ##[endgroup]
2025-08-26T19:34:26.6716022Z ##[group]Processing PR #160851
2025-08-26T19:34:26.6716644Z [160851] URL: https://github.com/pytorch/pytorch/pull/160851
2025-08-26T19:34:26.6717355Z [160851] Checking whether to label PR as stale.
2025-08-26T19:34:26.6717988Z [160851] Skipping because PR was updated recently
2025-08-26T19:34:26.6718819Z ##[endgroup]
2025-08-26T19:34:26.6719461Z ##[group]Processing PR #160853
2025-08-26T19:34:26.6720101Z [160853] URL: https://github.com/pytorch/pytorch/pull/160853
2025-08-26T19:34:26.6720826Z [160853] Checking whether to label PR as stale.
2025-08-26T19:34:26.6721474Z [160853] Skipping because PR was updated recently
2025-08-26T19:34:26.6722272Z ##[endgroup]
2025-08-26T19:34:26.6722836Z ##[group]Processing PR #160858
2025-08-26T19:34:26.6723442Z [160858] URL: https://github.com/pytorch/pytorch/pull/160858
2025-08-26T19:34:26.6724149Z [160858] Checking whether to label PR as stale.
2025-08-26T19:34:26.6724810Z [160858] Skipping because PR was updated recently
2025-08-26T19:34:26.6725670Z ##[endgroup]
2025-08-26T19:34:26.6726297Z ##[group]Processing PR #160860
2025-08-26T19:34:26.6726893Z [160860] URL: https://github.com/pytorch/pytorch/pull/160860
2025-08-26T19:34:26.6727606Z [160860] Checking whether to label PR as stale.
2025-08-26T19:34:26.6728215Z [160860] Skipping because PR was updated recently
2025-08-26T19:34:26.6729070Z ##[endgroup]
2025-08-26T19:34:26.6729734Z ##[group]Processing PR #160861
2025-08-26T19:34:26.6730369Z [160861] URL: https://github.com/pytorch/pytorch/pull/160861
2025-08-26T19:34:26.6731254Z [160861] Checking whether to label PR as stale.
2025-08-26T19:34:26.6731893Z [160861] Skipping because PR was updated recently
2025-08-26T19:34:26.6732713Z ##[endgroup]
2025-08-26T19:34:26.6733386Z ##[group]Processing PR #160865
2025-08-26T19:34:26.6734025Z [160865] URL: https://github.com/pytorch/pytorch/pull/160865
2025-08-26T19:34:26.6734760Z [160865] Checking whether to label PR as stale.
2025-08-26T19:34:26.6735393Z [160865] Skipping because PR was updated recently
2025-08-26T19:34:26.6736493Z ##[endgroup]
2025-08-26T19:34:26.6737129Z ##[group]Processing PR #160866
2025-08-26T19:34:26.6737762Z [160866] URL: https://github.com/pytorch/pytorch/pull/160866
2025-08-26T19:34:26.6738504Z [160866] Checking whether to label PR as stale.
2025-08-26T19:34:26.6739156Z [160866] Skipping because PR was updated recently
2025-08-26T19:34:26.6739958Z ##[endgroup]
2025-08-26T19:34:26.6740507Z ##[group]Processing PR #160867
2025-08-26T19:34:26.6740999Z [160867] URL: https://github.com/pytorch/pytorch/pull/160867
2025-08-26T19:34:26.6741631Z [160867] Checking whether to label PR as stale.
2025-08-26T19:34:26.6742233Z [160867] Skipping because PR was updated recently
2025-08-26T19:34:26.6742972Z ##[endgroup]
2025-08-26T19:34:26.6743573Z ##[group]Processing PR #160869
2025-08-26T19:34:26.6744183Z [160869] URL: https://github.com/pytorch/pytorch/pull/160869
2025-08-26T19:34:26.6745068Z [160869] Checking whether to label PR as stale.
2025-08-26T19:34:26.6745640Z [160869] Skipping because PR was updated recently
2025-08-26T19:34:26.6746404Z ##[endgroup]
2025-08-26T19:34:26.6746988Z ##[group]Processing PR #160872
2025-08-26T19:34:26.6747534Z [160872] URL: https://github.com/pytorch/pytorch/pull/160872
2025-08-26T19:34:26.6748174Z [160872] Checking whether to label PR as stale.
2025-08-26T19:34:26.6748649Z [160872] Skipping because PR was updated recently
2025-08-26T19:34:26.6749353Z ##[endgroup]
2025-08-26T19:34:26.6749929Z ##[group]Processing PR #160878
2025-08-26T19:34:26.6750566Z [160878] URL: https://github.com/pytorch/pytorch/pull/160878
2025-08-26T19:34:26.6751336Z [160878] Checking whether to label PR as stale.
2025-08-26T19:34:26.6752108Z [160878] Skipping because PR was updated recently
2025-08-26T19:34:26.6752595Z ##[endgroup]
2025-08-26T19:34:26.6752969Z ##[group]Processing PR #160883
2025-08-26T19:34:26.6753322Z [160883] URL: https://github.com/pytorch/pytorch/pull/160883
2025-08-26T19:34:26.6753717Z [160883] Checking whether to label PR as stale.
2025-08-26T19:34:26.6754081Z [160883] Skipping because PR was updated recently
2025-08-26T19:34:26.6754539Z ##[endgroup]
2025-08-26T19:34:26.6754887Z ##[group]Processing PR #160885
2025-08-26T19:34:26.6755237Z [160885] URL: https://github.com/pytorch/pytorch/pull/160885
2025-08-26T19:34:26.6755638Z [160885] Checking whether to label PR as stale.
2025-08-26T19:34:26.6755984Z [160885] Skipping because PR was updated recently
2025-08-26T19:34:26.6756440Z ##[endgroup]
2025-08-26T19:34:26.6756813Z ##[group]Processing PR #160887
2025-08-26T19:34:26.6757159Z [160887] URL: https://github.com/pytorch/pytorch/pull/160887
2025-08-26T19:34:26.6757564Z [160887] Checking whether to label PR as stale.
2025-08-26T19:34:26.6757915Z [160887] Skipping because PR was updated recently
2025-08-26T19:34:26.6758383Z ##[endgroup]
2025-08-26T19:34:26.6758748Z ##[group]Processing PR #160888
2025-08-26T19:34:26.6759106Z [160888] URL: https://github.com/pytorch/pytorch/pull/160888
2025-08-26T19:34:26.6759498Z [160888] Checking whether to label PR as stale.
2025-08-26T19:34:26.6759860Z [160888] Skipping because PR was updated recently
2025-08-26T19:34:26.6760326Z ##[endgroup]
2025-08-26T19:34:26.6760681Z ##[group]Processing PR #160890
2025-08-26T19:34:26.6761115Z [160890] URL: https://github.com/pytorch/pytorch/pull/160890
2025-08-26T19:34:26.6761793Z [160890] Checking whether to label PR as stale.
2025-08-26T19:34:26.6762142Z [160890] Skipping because PR was updated recently
2025-08-26T19:34:26.6762609Z ##[endgroup]
2025-08-26T19:34:26.6762977Z ##[group]Processing PR #160893
2025-08-26T19:34:26.6763483Z [160893] URL: https://github.com/pytorch/pytorch/pull/160893
2025-08-26T19:34:26.6763886Z [160893] Checking whether to label PR as stale.
2025-08-26T19:34:26.6764231Z [160893] Skipping because PR was updated recently
2025-08-26T19:34:26.6764699Z ##[endgroup]
2025-08-26T19:34:26.6765056Z ##[group]Processing PR #160897
2025-08-26T19:34:26.6765406Z [160897] URL: https://github.com/pytorch/pytorch/pull/160897
2025-08-26T19:34:26.6765791Z [160897] Checking whether to label PR as stale.
2025-08-26T19:34:26.6766143Z [160897] Skipping because PR was updated recently
2025-08-26T19:34:26.6766599Z ##[endgroup]
2025-08-26T19:34:26.6766947Z ##[group]Processing PR #160903
2025-08-26T19:34:26.6767294Z [160903] URL: https://github.com/pytorch/pytorch/pull/160903
2025-08-26T19:34:26.6767679Z [160903] Checking whether to label PR as stale.
2025-08-26T19:34:26.6768036Z [160903] Skipping because PR was updated recently
2025-08-26T19:34:26.6768499Z ##[endgroup]
2025-08-26T19:34:26.6768862Z ##[group]Processing PR #160907
2025-08-26T19:34:26.6769201Z [160907] URL: https://github.com/pytorch/pytorch/pull/160907
2025-08-26T19:34:26.6769600Z [160907] Checking whether to label PR as stale.
2025-08-26T19:34:26.6769943Z [160907] Skipping because PR was updated recently
2025-08-26T19:34:26.6770400Z ##[endgroup]
2025-08-26T19:34:26.6770757Z ##[group]Processing PR #160908
2025-08-26T19:34:26.6771156Z [160908] URL: https://github.com/pytorch/pytorch/pull/160908
2025-08-26T19:34:26.6771560Z [160908] Checking whether to label PR as stale.
2025-08-26T19:34:26.6771918Z [160908] Skipping because PR was updated recently
2025-08-26T19:34:26.6772367Z ##[endgroup]
2025-08-26T19:34:26.6772735Z ##[group]Processing PR #160913
2025-08-26T19:34:26.6773086Z [160913] URL: https://github.com/pytorch/pytorch/pull/160913
2025-08-26T19:34:26.6773475Z [160913] Checking whether to label PR as stale.
2025-08-26T19:34:26.6773833Z [160913] Skipping because PR was updated recently
2025-08-26T19:34:26.6774294Z ##[endgroup]
2025-08-26T19:34:26.6774664Z ##[group]Processing PR #160914
2025-08-26T19:34:26.6774998Z [160914] URL: https://github.com/pytorch/pytorch/pull/160914
2025-08-26T19:34:26.6775396Z [160914] Checking whether to label PR as stale.
2025-08-26T19:34:26.6775738Z [160914] Skipping because PR was updated recently
2025-08-26T19:34:26.6776195Z ##[endgroup]
2025-08-26T19:34:26.6776553Z ##[group]Processing PR #160915
2025-08-26T19:34:26.6776891Z [160915] URL: https://github.com/pytorch/pytorch/pull/160915
2025-08-26T19:34:26.6777290Z [160915] Checking whether to label PR as stale.
2025-08-26T19:34:26.6777645Z [160915] Skipping because PR was updated recently
2025-08-26T19:34:26.6778087Z ##[endgroup]
2025-08-26T19:34:26.6778447Z ##[group]Processing PR #160920
2025-08-26T19:34:26.6778793Z [160920] URL: https://github.com/pytorch/pytorch/pull/160920
2025-08-26T19:34:26.6779182Z [160920] Checking whether to label PR as stale.
2025-08-26T19:34:26.6779538Z [160920] Skipping because PR was updated recently
2025-08-26T19:34:26.6779995Z ##[endgroup]
2025-08-26T19:34:26.6780344Z ##[group]Processing PR #160925
2025-08-26T19:34:26.6780688Z [160925] URL: https://github.com/pytorch/pytorch/pull/160925
2025-08-26T19:34:26.6781088Z [160925] Checking whether to label PR as stale.
2025-08-26T19:34:26.6781430Z [160925] Skipping because PR was updated recently
2025-08-26T19:34:26.6781886Z ##[endgroup]
2025-08-26T19:34:26.6782250Z ##[group]Processing PR #160928
2025-08-26T19:34:26.6782591Z [160928] URL: https://github.com/pytorch/pytorch/pull/160928
2025-08-26T19:34:26.6782996Z [160928] Checking whether to label PR as stale.
2025-08-26T19:34:26.6783340Z [160928] Skipping because PR was updated recently
2025-08-26T19:34:26.6783902Z ##[endgroup]
2025-08-26T19:34:26.6784270Z ##[group]Processing PR #160931
2025-08-26T19:34:26.6784618Z [160931] URL: https://github.com/pytorch/pytorch/pull/160931
2025-08-26T19:34:26.6785006Z [160931] Checking whether to label PR as stale.
2025-08-26T19:34:26.6785365Z [160931] Skipping because PR was updated recently
2025-08-26T19:34:26.6785905Z ##[endgroup]
2025-08-26T19:34:26.6786256Z ##[group]Processing PR #160936
2025-08-26T19:34:26.6786605Z [160936] URL: https://github.com/pytorch/pytorch/pull/160936
2025-08-26T19:34:26.6787006Z [160936] Checking whether to label PR as stale.
2025-08-26T19:34:26.6795350Z [160936] Skipping because PR was updated recently
2025-08-26T19:34:26.6796027Z ##[endgroup]
2025-08-26T19:34:26.6796426Z ##[group]Processing PR #160938
2025-08-26T19:34:26.6796791Z [160938] URL: https://github.com/pytorch/pytorch/pull/160938
2025-08-26T19:34:26.6797192Z [160938] Checking whether to label PR as stale.
2025-08-26T19:34:26.6797558Z [160938] Skipping because PR was updated recently
2025-08-26T19:34:26.6798029Z ##[endgroup]
2025-08-26T19:34:26.6798388Z ##[group]Processing PR #160940
2025-08-26T19:34:26.6798747Z [160940] URL: https://github.com/pytorch/pytorch/pull/160940
2025-08-26T19:34:26.6799144Z [160940] Checking whether to label PR as stale.
2025-08-26T19:34:26.6799508Z [160940] Skipping because PR was updated recently
2025-08-26T19:34:26.6799978Z ##[endgroup]
2025-08-26T19:34:26.6800346Z ##[group]Processing PR #160941
2025-08-26T19:34:26.6800684Z [160941] URL: https://github.com/pytorch/pytorch/pull/160941
2025-08-26T19:34:26.6801091Z [160941] Checking whether to label PR as stale.
2025-08-26T19:34:26.6801440Z [160941] Skipping because PR was updated recently
2025-08-26T19:34:26.6801905Z ##[endgroup]
2025-08-26T19:34:26.6802393Z ##[group]Processing PR #160943
2025-08-26T19:34:26.6802748Z [160943] URL: https://github.com/pytorch/pytorch/pull/160943
2025-08-26T19:34:26.6803144Z [160943] Checking whether to label PR as stale.
2025-08-26T19:34:26.6803506Z [160943] Skipping because PR was updated recently
2025-08-26T19:34:26.6803955Z ##[endgroup]
2025-08-26T19:34:26.6804320Z ##[group]Processing PR #160945
2025-08-26T19:34:26.6804673Z [160945] URL: https://github.com/pytorch/pytorch/pull/160945
2025-08-26T19:34:26.6805063Z [160945] Checking whether to label PR as stale.
2025-08-26T19:34:26.6805422Z [160945] Skipping because PR was updated recently
2025-08-26T19:34:26.6805891Z ##[endgroup]
2025-08-26T19:34:26.6806257Z ##[group]Processing PR #160952
2025-08-26T19:34:26.6806593Z [160952] URL: https://github.com/pytorch/pytorch/pull/160952
2025-08-26T19:34:26.6806994Z [160952] Checking whether to label PR as stale.
2025-08-26T19:34:26.6807338Z [160952] Skipping because PR was updated recently
2025-08-26T19:34:26.6807801Z ##[endgroup]
2025-08-26T19:34:26.6808173Z ##[group]Processing PR #160953
2025-08-26T19:34:26.6808508Z [160953] URL: https://github.com/pytorch/pytorch/pull/160953
2025-08-26T19:34:26.6808911Z [160953] Checking whether to label PR as stale.
2025-08-26T19:34:26.6809273Z [160953] Skipping because PR was updated recently
2025-08-26T19:34:26.6809722Z ##[endgroup]
2025-08-26T19:34:26.6810085Z ##[group]Processing PR #160958
2025-08-26T19:34:26.6810433Z [160958] URL: https://github.com/pytorch/pytorch/pull/160958
2025-08-26T19:34:26.6810823Z [160958] Checking whether to label PR as stale.
2025-08-26T19:34:26.6811183Z [160958] Skipping because PR was updated recently
2025-08-26T19:34:26.6811647Z ##[endgroup]
2025-08-26T19:34:26.6812000Z ##[group]Processing PR #160961
2025-08-26T19:34:26.6812352Z [160961] URL: https://github.com/pytorch/pytorch/pull/160961
2025-08-26T19:34:26.6812757Z [160961] Checking whether to label PR as stale.
2025-08-26T19:34:26.6813103Z [160961] Skipping because PR was updated recently
2025-08-26T19:34:26.6813568Z ##[endgroup]
2025-08-26T19:34:26.6813937Z ##[group]Processing PR #160965
2025-08-26T19:34:26.6814272Z [160965] URL: https://github.com/pytorch/pytorch/pull/160965
2025-08-26T19:34:26.6814674Z [160965] Checking whether to label PR as stale.
2025-08-26T19:34:26.6815020Z [160965] Skipping because PR was updated recently
2025-08-26T19:34:26.6815477Z ##[endgroup]
2025-08-26T19:34:26.6815840Z ##[group]Processing PR #160977
2025-08-26T19:34:26.6816190Z [160977] URL: https://github.com/pytorch/pytorch/pull/160977
2025-08-26T19:34:26.6816580Z [160977] Checking whether to label PR as stale.
2025-08-26T19:34:26.6817015Z [160977] Skipping because PR was updated recently
2025-08-26T19:34:26.6817481Z ##[endgroup]
2025-08-26T19:34:26.6817838Z ##[group]Processing PR #160985
2025-08-26T19:34:26.6818191Z [160985] URL: https://github.com/pytorch/pytorch/pull/160985
2025-08-26T19:34:26.6818592Z [160985] Checking whether to label PR as stale.
2025-08-26T19:34:26.6818940Z [160985] Skipping because PR was updated recently
2025-08-26T19:34:26.6819408Z ##[endgroup]
2025-08-26T19:34:26.6819772Z ##[group]Processing PR #160991
2025-08-26T19:34:26.6820107Z [160991] URL: https://github.com/pytorch/pytorch/pull/160991
2025-08-26T19:34:26.6820512Z [160991] Checking whether to label PR as stale.
2025-08-26T19:34:26.6820855Z [160991] Skipping because PR was updated recently
2025-08-26T19:34:26.6821314Z ##[endgroup]
2025-08-26T19:34:26.6821675Z ##[group]Processing PR #160992
2025-08-26T19:34:26.6822023Z [160992] URL: https://github.com/pytorch/pytorch/pull/160992
2025-08-26T19:34:26.6822410Z [160992] Checking whether to label PR as stale.
2025-08-26T19:34:26.6822775Z [160992] Skipping because PR was updated recently
2025-08-26T19:34:26.6823231Z ##[endgroup]
2025-08-26T19:34:26.6823582Z ##[group]Processing PR #160997
2025-08-26T19:34:26.6824042Z [160997] URL: https://github.com/pytorch/pytorch/pull/160997
2025-08-26T19:34:26.6824436Z [160997] Checking whether to label PR as stale.
2025-08-26T19:34:26.6824860Z [160997] Skipping because PR was updated recently
2025-08-26T19:34:26.6825326Z ##[endgroup]
2025-08-26T19:34:26.6825682Z ##[group]Processing PR #161000
2025-08-26T19:34:26.6826028Z [161000] URL: https://github.com/pytorch/pytorch/pull/161000
2025-08-26T19:34:26.6826415Z [161000] Checking whether to label PR as stale.
2025-08-26T19:34:26.6826771Z [161000] Skipping because PR was updated recently
2025-08-26T19:34:26.6827229Z ##[endgroup]
2025-08-26T19:34:26.6827588Z ##[group]Processing PR #161003
2025-08-26T19:34:26.6827922Z [161003] URL: https://github.com/pytorch/pytorch/pull/161003
2025-08-26T19:34:26.6828323Z [161003] Checking whether to label PR as stale.
2025-08-26T19:34:26.6828670Z [161003] Skipping because PR was updated recently
2025-08-26T19:34:26.6829129Z ##[endgroup]
2025-08-26T19:34:26.6829500Z ##[group]Processing PR #161004
2025-08-26T19:34:26.6829838Z [161004] URL: https://github.com/pytorch/pytorch/pull/161004
2025-08-26T19:34:26.6830241Z [161004] Checking whether to label PR as stale.
2025-08-26T19:34:26.6830601Z [161004] Skipping because PR was updated recently
2025-08-26T19:34:26.6831045Z ##[endgroup]
2025-08-26T19:34:26.6831400Z ##[group]Processing PR #161008
2025-08-26T19:34:26.6831744Z [161008] URL: https://github.com/pytorch/pytorch/pull/161008
2025-08-26T19:34:26.6832129Z [161008] Checking whether to label PR as stale.
2025-08-26T19:34:26.6832483Z [161008] Skipping because PR was updated recently
2025-08-26T19:34:26.6832935Z ##[endgroup]
2025-08-26T19:34:26.6833292Z ##[group]Processing PR #161013
2025-08-26T19:34:26.6833626Z [161013] URL: https://github.com/pytorch/pytorch/pull/161013
2025-08-26T19:34:26.6834023Z [161013] Checking whether to label PR as stale.
2025-08-26T19:34:26.6834372Z [161013] Skipping because PR was updated recently
2025-08-26T19:34:26.6834839Z ##[endgroup]
2025-08-26T19:34:26.6835202Z ##[group]Processing PR #161015
2025-08-26T19:34:26.6835744Z [161015] URL: https://github.com/pytorch/pytorch/pull/161015
2025-08-26T19:34:26.6836191Z [161015] Checking whether to label PR as stale.
2025-08-26T19:34:26.6836552Z [161015] Skipping because PR was updated recently
2025-08-26T19:34:26.6837001Z ##[endgroup]
2025-08-26T19:34:26.6837366Z ##[group]Processing PR #161016
2025-08-26T19:34:26.6837713Z [161016] URL: https://github.com/pytorch/pytorch/pull/161016
2025-08-26T19:34:26.6838100Z [161016] Checking whether to label PR as stale.
2025-08-26T19:34:26.6838454Z [161016] Skipping because PR was updated recently
2025-08-26T19:34:26.6838915Z ##[endgroup]
2025-08-26T19:34:26.6839266Z ##[group]Processing PR #161017
2025-08-26T19:34:26.6839613Z [161017] URL: https://github.com/pytorch/pytorch/pull/161017
2025-08-26T19:34:26.6840147Z [161017] Checking whether to label PR as stale.
2025-08-26T19:34:26.6840497Z [161017] Skipping because PR was updated recently
2025-08-26T19:34:26.6840959Z ##[endgroup]
2025-08-26T19:34:26.6841322Z ##[group]Processing PR #161023
2025-08-26T19:34:26.6841656Z [161023] URL: https://github.com/pytorch/pytorch/pull/161023
2025-08-26T19:34:26.6842056Z [161023] Checking whether to label PR as stale.
2025-08-26T19:34:26.6842402Z [161023] Skipping because PR was updated recently
2025-08-26T19:34:26.6842860Z ##[endgroup]
2025-08-26T19:34:26.6843219Z ##[group]Processing PR #161026
2025-08-26T19:34:26.6843564Z [161026] URL: https://github.com/pytorch/pytorch/pull/161026
2025-08-26T19:34:26.6843948Z [161026] Checking whether to label PR as stale.
2025-08-26T19:34:26.6844303Z [161026] Skipping because PR was updated recently
2025-08-26T19:34:26.6844758Z ##[endgroup]
2025-08-26T19:34:26.6845105Z ##[group]Processing PR #161028
2025-08-26T19:34:26.6845452Z [161028] URL: https://github.com/pytorch/pytorch/pull/161028
2025-08-26T19:34:26.6845854Z [161028] Checking whether to label PR as stale.
2025-08-26T19:34:26.6846196Z [161028] Skipping because PR was updated recently
2025-08-26T19:34:26.6846657Z ##[endgroup]
2025-08-26T19:34:26.6847015Z ##[group]Processing PR #161032
2025-08-26T19:34:26.6847350Z [161032] URL: https://github.com/pytorch/pytorch/pull/161032
2025-08-26T19:34:26.6847979Z [161032] Checking whether to label PR as stale.
2025-08-26T19:34:26.6848325Z [161032] Skipping because PR was updated recently
2025-08-26T19:34:26.6848780Z ##[endgroup]
2025-08-26T19:34:26.6849142Z ##[group]Processing PR #161033
2025-08-26T19:34:26.6849487Z [161033] URL: https://github.com/pytorch/pytorch/pull/161033
2025-08-26T19:34:26.6849875Z [161033] Checking whether to label PR as stale.
2025-08-26T19:34:26.6850227Z [161033] Skipping because PR was updated recently
2025-08-26T19:34:26.6850686Z ##[endgroup]
2025-08-26T19:34:26.6851034Z ##[group]Processing PR #161035
2025-08-26T19:34:26.6851385Z [161035] URL: https://github.com/pytorch/pytorch/pull/161035
2025-08-26T19:34:26.6851778Z [161035] Checking whether to label PR as stale.
2025-08-26T19:34:26.6852137Z [161035] Skipping because PR was updated recently
2025-08-26T19:34:26.6852594Z ##[endgroup]
2025-08-26T19:34:26.6852954Z ##[group]Processing PR #161037
2025-08-26T19:34:26.6853286Z [161037] URL: https://github.com/pytorch/pytorch/pull/161037
2025-08-26T19:34:26.6853689Z [161037] Checking whether to label PR as stale.
2025-08-26T19:34:26.6854036Z [161037] Skipping because PR was updated recently
2025-08-26T19:34:26.6854499Z ##[endgroup]
2025-08-26T19:34:26.6854859Z ##[group]Processing PR #161040
2025-08-26T19:34:26.6855205Z [161040] URL: https://github.com/pytorch/pytorch/pull/161040
2025-08-26T19:34:26.6855595Z [161040] Checking whether to label PR as stale.
2025-08-26T19:34:26.6855950Z [161040] Skipping because PR was updated recently
2025-08-26T19:34:26.6856397Z ##[endgroup]
2025-08-26T19:34:26.6856761Z ##[group]Processing PR #161041
2025-08-26T19:34:26.6857109Z [161041] URL: https://github.com/pytorch/pytorch/pull/161041
2025-08-26T19:34:26.6857502Z [161041] Checking whether to label PR as stale.
2025-08-26T19:34:26.6857858Z [161041] Skipping because PR was updated recently
2025-08-26T19:34:26.6858312Z ##[endgroup]
2025-08-26T19:34:26.6858671Z ##[group]Processing PR #161044
2025-08-26T19:34:26.6859003Z [161044] URL: https://github.com/pytorch/pytorch/pull/161044
2025-08-26T19:34:26.6859406Z [161044] Checking whether to label PR as stale.
2025-08-26T19:34:26.6859747Z [161044] Skipping because PR was updated recently
2025-08-26T19:34:26.6860200Z ##[endgroup]
2025-08-26T19:34:27.6096583Z ##[group]Processing PR #161045
2025-08-26T19:34:27.6097304Z [161045] URL: https://github.com/pytorch/pytorch/pull/161045
2025-08-26T19:34:27.6098052Z [161045] Checking whether to label PR as stale.
2025-08-26T19:34:27.6098718Z [161045] Skipping because PR was updated recently
2025-08-26T19:34:27.6099639Z ##[endgroup]
2025-08-26T19:34:27.6100312Z ##[group]Processing PR #161049
2025-08-26T19:34:27.6101676Z [161049] URL: https://github.com/pytorch/pytorch/pull/161049
2025-08-26T19:34:27.6102514Z [161049] Checking whether to label PR as stale.
2025-08-26T19:34:27.6103256Z [161049] Skipping because PR was updated recently
2025-08-26T19:34:27.6104325Z ##[endgroup]
2025-08-26T19:34:27.6105102Z ##[group]Processing PR #161052
2025-08-26T19:34:27.6105869Z [161052] URL: https://github.com/pytorch/pytorch/pull/161052
2025-08-26T19:34:27.6106707Z [161052] Checking whether to label PR as stale.
2025-08-26T19:34:27.6107436Z [161052] Skipping because PR was updated recently
2025-08-26T19:34:27.6108375Z ##[endgroup]
2025-08-26T19:34:27.6109135Z ##[group]Processing PR #161055
2025-08-26T19:34:27.6109848Z [161055] URL: https://github.com/pytorch/pytorch/pull/161055
2025-08-26T19:34:27.6110673Z [161055] Checking whether to label PR as stale.
2025-08-26T19:34:27.6111404Z [161055] Skipping because PR was updated recently
2025-08-26T19:34:27.6112343Z ##[endgroup]
2025-08-26T19:34:27.6113084Z ##[group]Processing PR #161058
2025-08-26T19:34:27.6113826Z [161058] URL: https://github.com/pytorch/pytorch/pull/161058
2025-08-26T19:34:27.6114620Z [161058] Checking whether to label PR as stale.
2025-08-26T19:34:27.6115346Z [161058] Skipping because PR was updated recently
2025-08-26T19:34:27.6116310Z ##[endgroup]
2025-08-26T19:34:27.6117065Z ##[group]Processing PR #161062
2025-08-26T19:34:27.6117996Z [161062] URL: https://github.com/pytorch/pytorch/pull/161062
2025-08-26T19:34:27.6118861Z [161062] Checking whether to label PR as stale.
2025-08-26T19:34:27.6119565Z [161062] Skipping because PR was updated recently
2025-08-26T19:34:27.6120381Z ##[endgroup]
2025-08-26T19:34:27.6126464Z ##[group]Processing PR #161069
2025-08-26T19:34:27.6127141Z [161069] URL: https://github.com/pytorch/pytorch/pull/161069
2025-08-26T19:34:27.6127880Z [161069] Checking whether to label PR as stale.
2025-08-26T19:34:27.6128547Z [161069] Skipping because PR was updated recently
2025-08-26T19:34:27.6129411Z ##[endgroup]
2025-08-26T19:34:27.6129961Z ##[group]Processing PR #161072
2025-08-26T19:34:27.6130571Z [161072] URL: https://github.com/pytorch/pytorch/pull/161072
2025-08-26T19:34:27.6131159Z [161072] Checking whether to label PR as stale.
2025-08-26T19:34:27.6132001Z [161072] Skipping because PR was updated recently
2025-08-26T19:34:27.6132906Z ##[endgroup]
2025-08-26T19:34:27.6133605Z ##[group]Processing PR #161085
2025-08-26T19:34:27.6134277Z [161085] URL: https://github.com/pytorch/pytorch/pull/161085
2025-08-26T19:34:27.6135015Z [161085] Checking whether to label PR as stale.
2025-08-26T19:34:27.6135856Z [161085] Skipping because PR was updated recently
2025-08-26T19:34:27.6136735Z ##[endgroup]
2025-08-26T19:34:27.6137430Z ##[group]Processing PR #161090
2025-08-26T19:34:27.6138096Z [161090] URL: https://github.com/pytorch/pytorch/pull/161090
2025-08-26T19:34:27.6138840Z [161090] Checking whether to label PR as stale.
2025-08-26T19:34:27.6139515Z [161090] Skipping because PR was updated recently
2025-08-26T19:34:27.6140400Z ##[endgroup]
2025-08-26T19:34:27.6141101Z ##[group]Processing PR #161092
2025-08-26T19:34:27.6141765Z [161092] URL: https://github.com/pytorch/pytorch/pull/161092
2025-08-26T19:34:27.6142395Z [161092] Checking whether to label PR as stale.
2025-08-26T19:34:27.6143200Z [161092] Skipping because PR was updated recently
2025-08-26T19:34:27.6144106Z ##[endgroup]
2025-08-26T19:34:27.6144685Z ##[group]Processing PR #161093
2025-08-26T19:34:27.6145210Z [161093] URL: https://github.com/pytorch/pytorch/pull/161093
2025-08-26T19:34:27.6145766Z [161093] Checking whether to label PR as stale.
2025-08-26T19:34:27.6146286Z [161093] Skipping because PR was updated recently
2025-08-26T19:34:27.6146943Z ##[endgroup]
2025-08-26T19:34:27.6147481Z ##[group]Processing PR #161094
2025-08-26T19:34:27.6147996Z [161094] URL: https://github.com/pytorch/pytorch/pull/161094
2025-08-26T19:34:27.6148529Z [161094] Checking whether to label PR as stale.
2025-08-26T19:34:27.6149059Z [161094] Skipping because PR was updated recently
2025-08-26T19:34:27.6149706Z ##[endgroup]
2025-08-26T19:34:27.6150444Z ##[group]Processing PR #161097
2025-08-26T19:34:27.6150948Z [161097] URL: https://github.com/pytorch/pytorch/pull/161097
2025-08-26T19:34:27.6151581Z [161097] Checking whether to label PR as stale.
2025-08-26T19:34:27.6152110Z [161097] Skipping because PR was updated recently
2025-08-26T19:34:27.6152751Z ##[endgroup]
2025-08-26T19:34:27.6153281Z ##[group]Processing PR #161098
2025-08-26T19:34:27.6153808Z [161098] URL: https://github.com/pytorch/pytorch/pull/161098
2025-08-26T19:34:27.6154360Z [161098] Checking whether to label PR as stale.
2025-08-26T19:34:27.6154835Z [161098] Skipping because PR was updated recently
2025-08-26T19:34:27.6155625Z ##[endgroup]
2025-08-26T19:34:27.6156162Z ##[group]Processing PR #161100
2025-08-26T19:34:27.6156675Z [161100] URL: https://github.com/pytorch/pytorch/pull/161100
2025-08-26T19:34:27.6157212Z [161100] Checking whether to label PR as stale.
2025-08-26T19:34:27.6157744Z [161100] Skipping because PR was updated recently
2025-08-26T19:34:27.6158398Z ##[endgroup]
2025-08-26T19:34:27.6158927Z ##[group]Processing PR #161106
2025-08-26T19:34:27.6159429Z [161106] URL: https://github.com/pytorch/pytorch/pull/161106
2025-08-26T19:34:27.6159979Z [161106] Checking whether to label PR as stale.
2025-08-26T19:34:27.6160491Z [161106] Skipping because PR was updated recently
2025-08-26T19:34:27.6161137Z ##[endgroup]
2025-08-26T19:34:27.6161797Z ##[group]Processing PR #161107
2025-08-26T19:34:27.6162324Z [161107] URL: https://github.com/pytorch/pytorch/pull/161107
2025-08-26T19:34:27.6162857Z [161107] Checking whether to label PR as stale.
2025-08-26T19:34:27.6163396Z [161107] Skipping because PR was updated recently
2025-08-26T19:34:27.6164040Z ##[endgroup]
2025-08-26T19:34:27.6164575Z ##[group]Processing PR #161109
2025-08-26T19:34:27.6165075Z [161109] URL: https://github.com/pytorch/pytorch/pull/161109
2025-08-26T19:34:27.6165633Z [161109] Checking whether to label PR as stale.
2025-08-26T19:34:27.6166147Z [161109] Skipping because PR was updated recently
2025-08-26T19:34:27.6166792Z ##[endgroup]
2025-08-26T19:34:27.6167326Z ##[group]Processing PR #161110
2025-08-26T19:34:27.6167840Z [161110] URL: https://github.com/pytorch/pytorch/pull/161110
2025-08-26T19:34:27.6168367Z [161110] Checking whether to label PR as stale.
2025-08-26T19:34:27.6168892Z [161110] Skipping because PR was updated recently
2025-08-26T19:34:27.6169532Z ##[endgroup]
2025-08-26T19:34:27.6170151Z ##[group]Processing PR #161112
2025-08-26T19:34:27.6170677Z [161112] URL: https://github.com/pytorch/pytorch/pull/161112
2025-08-26T19:34:27.6171222Z [161112] Checking whether to label PR as stale.
2025-08-26T19:34:27.6171755Z [161112] Skipping because PR was updated recently
2025-08-26T19:34:27.6172386Z ##[endgroup]
2025-08-26T19:34:27.6172922Z ##[group]Processing PR #161114
2025-08-26T19:34:27.6173418Z [161114] URL: https://github.com/pytorch/pytorch/pull/161114
2025-08-26T19:34:27.6173998Z [161114] Checking whether to label PR as stale.
2025-08-26T19:34:27.6174518Z [161114] Skipping because PR was updated recently
2025-08-26T19:34:27.6175164Z ##[endgroup]
2025-08-26T19:34:27.6175692Z ##[group]Processing PR #161117
2025-08-26T19:34:27.6176194Z [161117] URL: https://github.com/pytorch/pytorch/pull/161117
2025-08-26T19:34:27.6176738Z [161117] Checking whether to label PR as stale.
2025-08-26T19:34:27.6177268Z [161117] Skipping because PR was updated recently
2025-08-26T19:34:27.6177905Z ##[endgroup]
2025-08-26T19:34:27.6178433Z ##[group]Processing PR #161118
2025-08-26T19:34:27.6178951Z [161118] URL: https://github.com/pytorch/pytorch/pull/161118
2025-08-26T19:34:27.6179504Z [161118] Checking whether to label PR as stale.
2025-08-26T19:34:27.6180087Z [161118] Skipping because PR was updated recently
2025-08-26T19:34:27.6181028Z ##[endgroup]
2025-08-26T19:34:27.6181589Z ##[group]Processing PR #161123
2025-08-26T19:34:27.6182104Z [161123] URL: https://github.com/pytorch/pytorch/pull/161123
2025-08-26T19:34:27.6182641Z [161123] Checking whether to label PR as stale.
2025-08-26T19:34:27.6183177Z [161123] Skipping because PR was updated recently
2025-08-26T19:34:27.6184033Z ##[endgroup]
2025-08-26T19:34:27.6184562Z ##[group]Processing PR #161124
2025-08-26T19:34:27.6185084Z [161124] URL: https://github.com/pytorch/pytorch/pull/161124
2025-08-26T19:34:27.6185639Z [161124] Checking whether to label PR as stale.
2025-08-26T19:34:27.6186151Z [161124] Skipping because PR was updated recently
2025-08-26T19:34:27.6186803Z ##[endgroup]
2025-08-26T19:34:27.6187330Z ##[group]Processing PR #161125
2025-08-26T19:34:27.6187843Z [161125] URL: https://github.com/pytorch/pytorch/pull/161125
2025-08-26T19:34:27.6188373Z [161125] Checking whether to label PR as stale.
2025-08-26T19:34:27.6188901Z [161125] Skipping because PR was updated recently
2025-08-26T19:34:27.6189550Z ##[endgroup]
2025-08-26T19:34:27.6190082Z ##[group]Processing PR #161126
2025-08-26T19:34:27.6190580Z [161126] URL: https://github.com/pytorch/pytorch/pull/161126
2025-08-26T19:34:27.6191123Z [161126] Checking whether to label PR as stale.
2025-08-26T19:34:27.6191637Z [161126] Skipping because PR was updated recently
2025-08-26T19:34:27.6192287Z ##[endgroup]
2025-08-26T19:34:27.6192819Z ##[group]Processing PR #161130
2025-08-26T19:34:27.6193335Z [161130] URL: https://github.com/pytorch/pytorch/pull/161130
2025-08-26T19:34:27.6193866Z [161130] Checking whether to label PR as stale.
2025-08-26T19:34:27.6194397Z [161130] Skipping because PR was updated recently
2025-08-26T19:34:27.6195136Z ##[endgroup]
2025-08-26T19:34:27.6195680Z ##[group]Processing PR #161131
2025-08-26T19:34:27.6196181Z [161131] URL: https://github.com/pytorch/pytorch/pull/161131
2025-08-26T19:34:27.6196732Z [161131] Checking whether to label PR as stale.
2025-08-26T19:34:27.6197245Z [161131] Skipping because PR was updated recently
2025-08-26T19:34:27.6197885Z ##[endgroup]
2025-08-26T19:34:27.6198413Z ##[group]Processing PR #161135
2025-08-26T19:34:27.6198928Z [161135] URL: https://github.com/pytorch/pytorch/pull/161135
2025-08-26T19:34:27.6199462Z [161135] Checking whether to label PR as stale.
2025-08-26T19:34:27.6200015Z [161135] Skipping because PR was updated recently
2025-08-26T19:34:27.6200659Z ##[endgroup]
2025-08-26T19:34:27.6201196Z ##[group]Processing PR #161141
2025-08-26T19:34:27.6201698Z [161141] URL: https://github.com/pytorch/pytorch/pull/161141
2025-08-26T19:34:27.6202254Z [161141] Checking whether to label PR as stale.
2025-08-26T19:34:27.6202774Z [161141] Skipping because PR was updated recently
2025-08-26T19:34:27.6203424Z ##[endgroup]
2025-08-26T19:34:27.6204001Z ##[group]Processing PR #161142
2025-08-26T19:34:27.6204611Z [161142] URL: https://github.com/pytorch/pytorch/pull/161142
2025-08-26T19:34:27.6205152Z [161142] Checking whether to label PR as stale.
2025-08-26T19:34:27.6205688Z [161142] Skipping because PR was updated recently
2025-08-26T19:34:27.6206331Z ##[endgroup]
2025-08-26T19:34:27.6206866Z ##[group]Processing PR #161143
2025-08-26T19:34:27.6207374Z [161143] URL: https://github.com/pytorch/pytorch/pull/161143
2025-08-26T19:34:27.6207928Z [161143] Checking whether to label PR as stale.
2025-08-26T19:34:27.6208454Z [161143] Skipping because PR was updated recently
2025-08-26T19:34:27.6209094Z ##[endgroup]
2025-08-26T19:34:27.6209626Z ##[group]Processing PR #161144
2025-08-26T19:34:27.6210143Z [161144] URL: https://github.com/pytorch/pytorch/pull/161144
2025-08-26T19:34:27.6210675Z [161144] Checking whether to label PR as stale.
2025-08-26T19:34:27.6211225Z [161144] Skipping because PR was updated recently
2025-08-26T19:34:27.6211974Z ##[endgroup]
2025-08-26T19:34:27.6212534Z ##[group]Processing PR #161148
2025-08-26T19:34:27.6213034Z [161148] URL: https://github.com/pytorch/pytorch/pull/161148
2025-08-26T19:34:27.6213583Z [161148] Checking whether to label PR as stale.
2025-08-26T19:34:27.6214108Z [161148] Skipping because PR was updated recently
2025-08-26T19:34:27.6214766Z ##[endgroup]
2025-08-26T19:34:27.6215630Z ##[group]Processing PR #161152
2025-08-26T19:34:27.6216155Z [161152] URL: https://github.com/pytorch/pytorch/pull/161152
2025-08-26T19:34:27.6216711Z [161152] Checking whether to label PR as stale.
2025-08-26T19:34:27.6217329Z [161152] Skipping because PR was updated recently
2025-08-26T19:34:27.6217969Z ##[endgroup]
2025-08-26T19:34:27.6218507Z ##[group]Processing PR #161155
2025-08-26T19:34:27.6219007Z [161155] URL: https://github.com/pytorch/pytorch/pull/161155
2025-08-26T19:34:27.6219551Z [161155] Checking whether to label PR as stale.
2025-08-26T19:34:27.6220095Z [161155] Skipping because PR was updated recently
2025-08-26T19:34:27.6220728Z ##[endgroup]
2025-08-26T19:34:27.6221247Z ##[group]Processing PR #161156
2025-08-26T19:34:27.6221761Z [161156] URL: https://github.com/pytorch/pytorch/pull/161156
2025-08-26T19:34:27.6222315Z [161156] Checking whether to label PR as stale.
2025-08-26T19:34:27.6222824Z [161156] Skipping because PR was updated recently
2025-08-26T19:34:27.6223464Z ##[endgroup]
2025-08-26T19:34:27.6224065Z ##[group]Processing PR #161157
2025-08-26T19:34:27.6224588Z [161157] URL: https://github.com/pytorch/pytorch/pull/161157
2025-08-26T19:34:27.6225132Z [161157] Checking whether to label PR as stale.
2025-08-26T19:34:27.6225663Z [161157] Skipping because PR was updated recently
2025-08-26T19:34:27.6226304Z ##[endgroup]
2025-08-26T19:34:27.6226836Z ##[group]Processing PR #161158
2025-08-26T19:34:27.6227333Z [161158] URL: https://github.com/pytorch/pytorch/pull/161158
2025-08-26T19:34:27.6227880Z [161158] Checking whether to label PR as stale.
2025-08-26T19:34:27.6228482Z [161158] Skipping because PR was updated recently
2025-08-26T19:34:27.6229122Z ##[endgroup]
2025-08-26T19:34:27.6229658Z ##[group]Processing PR #161161
2025-08-26T19:34:27.6230173Z [161161] URL: https://github.com/pytorch/pytorch/pull/161161
2025-08-26T19:34:27.6230675Z [161161] Checking whether to label PR as stale.
2025-08-26T19:34:27.6231276Z [161161] Skipping because PR was updated recently
2025-08-26T19:34:27.6231922Z ##[endgroup]
2025-08-26T19:34:27.6232457Z ##[group]Processing PR #161164
2025-08-26T19:34:27.6232955Z [161164] URL: https://github.com/pytorch/pytorch/pull/161164
2025-08-26T19:34:27.6233505Z [161164] Checking whether to label PR as stale.
2025-08-26T19:34:27.6234026Z [161164] Skipping because PR was updated recently
2025-08-26T19:34:27.6234661Z ##[endgroup]
2025-08-26T19:34:27.6235193Z ##[group]Processing PR #161165
2025-08-26T19:34:27.6235936Z [161165] URL: https://github.com/pytorch/pytorch/pull/161165
2025-08-26T19:34:27.6236501Z [161165] Checking whether to label PR as stale.
2025-08-26T19:34:27.6237029Z [161165] Skipping because PR was updated recently
2025-08-26T19:34:27.6237680Z ##[endgroup]
2025-08-26T19:34:27.6238213Z ##[group]Processing PR #161169
2025-08-26T19:34:27.6238714Z [161169] URL: https://github.com/pytorch/pytorch/pull/161169
2025-08-26T19:34:27.6239266Z [161169] Checking whether to label PR as stale.
2025-08-26T19:34:27.6239794Z [161169] Skipping because PR was updated recently
2025-08-26T19:34:27.6240427Z ##[endgroup]
2025-08-26T19:34:27.6240958Z ##[group]Processing PR #161171
2025-08-26T19:34:27.6241474Z [161171] URL: https://github.com/pytorch/pytorch/pull/161171
2025-08-26T19:34:27.6242016Z [161171] Checking whether to label PR as stale.
2025-08-26T19:34:27.6242545Z [161171] Skipping because PR was updated recently
2025-08-26T19:34:27.6243188Z ##[endgroup]
2025-08-26T19:34:27.6243719Z ##[group]Processing PR #161172
2025-08-26T19:34:27.6244220Z [161172] URL: https://github.com/pytorch/pytorch/pull/161172
2025-08-26T19:34:27.6244772Z [161172] Checking whether to label PR as stale.
2025-08-26T19:34:27.6245302Z [161172] Skipping because PR was updated recently
2025-08-26T19:34:27.6245932Z ##[endgroup]
2025-08-26T19:34:27.6246464Z ##[group]Processing PR #161173
2025-08-26T19:34:27.6246979Z [161173] URL: https://github.com/pytorch/pytorch/pull/161173
2025-08-26T19:34:27.6247530Z [161173] Checking whether to label PR as stale.
2025-08-26T19:34:27.6248042Z [161173] Skipping because PR was updated recently
2025-08-26T19:34:27.6248688Z ##[endgroup]
2025-08-26T19:34:27.6249225Z ##[group]Processing PR #161174
2025-08-26T19:34:27.6249744Z [161174] URL: https://github.com/pytorch/pytorch/pull/161174
2025-08-26T19:34:27.6250428Z [161174] Checking whether to label PR as stale.
2025-08-26T19:34:27.6250972Z [161174] Skipping because PR was updated recently
2025-08-26T19:34:27.6251613Z ##[endgroup]
2025-08-26T19:34:27.6252135Z ##[group]Processing PR #161175
2025-08-26T19:34:27.6252642Z [161175] URL: https://github.com/pytorch/pytorch/pull/161175
2025-08-26T19:34:27.6253202Z [161175] Checking whether to label PR as stale.
2025-08-26T19:34:27.6253709Z [161175] Skipping because PR was updated recently
2025-08-26T19:34:27.6254356Z ##[endgroup]
2025-08-26T19:34:27.6254888Z ##[group]Processing PR #161176
2025-08-26T19:34:27.6255401Z [161176] URL: https://github.com/pytorch/pytorch/pull/161176
2025-08-26T19:34:27.6255931Z [161176] Checking whether to label PR as stale.
2025-08-26T19:34:27.6256459Z [161176] Skipping because PR was updated recently
2025-08-26T19:34:27.6257103Z ##[endgroup]
2025-08-26T19:34:27.6257639Z ##[group]Processing PR #161178
2025-08-26T19:34:27.6258145Z [161178] URL: https://github.com/pytorch/pytorch/pull/161178
2025-08-26T19:34:27.6258688Z [161178] Checking whether to label PR as stale.
2025-08-26T19:34:27.6259198Z [161178] Skipping because PR was updated recently
2025-08-26T19:34:27.6259837Z ##[endgroup]
2025-08-26T19:34:27.6260369Z ##[group]Processing PR #161180
2025-08-26T19:34:27.6260884Z [161180] URL: https://github.com/pytorch/pytorch/pull/161180
2025-08-26T19:34:27.6261527Z [161180] Checking whether to label PR as stale.
2025-08-26T19:34:27.6262043Z [161180] Skipping because PR was updated recently
2025-08-26T19:34:27.6262694Z ##[endgroup]
2025-08-26T19:34:27.6263227Z ##[group]Processing PR #161182
2025-08-26T19:34:27.6263801Z [161182] URL: https://github.com/pytorch/pytorch/pull/161182
2025-08-26T19:34:27.6264363Z [161182] Checking whether to label PR as stale.
2025-08-26T19:34:27.6264881Z [161182] Skipping because PR was updated recently
2025-08-26T19:34:27.6265520Z ##[endgroup]
2025-08-26T19:34:27.6266049Z ##[group]Processing PR #161190
2025-08-26T19:34:27.6266570Z [161190] URL: https://github.com/pytorch/pytorch/pull/161190
2025-08-26T19:34:27.6267101Z [161190] Checking whether to label PR as stale.
2025-08-26T19:34:27.6267628Z [161190] Skipping because PR was updated recently
2025-08-26T19:34:27.6268276Z ##[endgroup]
2025-08-26T19:34:27.6268819Z ##[group]Processing PR #161208
2025-08-26T19:34:27.6269326Z [161208] URL: https://github.com/pytorch/pytorch/pull/161208
2025-08-26T19:34:27.6269871Z [161208] Checking whether to label PR as stale.
2025-08-26T19:34:27.6270402Z [161208] Skipping because PR was updated recently
2025-08-26T19:34:27.6271030Z ##[endgroup]
2025-08-26T19:34:27.6271563Z ##[group]Processing PR #161213
2025-08-26T19:34:27.6272075Z [161213] URL: https://github.com/pytorch/pytorch/pull/161213
2025-08-26T19:34:27.6272611Z [161213] Checking whether to label PR as stale.
2025-08-26T19:34:27.6273145Z [161213] Skipping because PR was updated recently
2025-08-26T19:34:27.6273783Z ##[endgroup]
2025-08-26T19:34:27.6274310Z ##[group]Processing PR #161214
2025-08-26T19:34:27.6274821Z [161214] URL: https://github.com/pytorch/pytorch/pull/161214
2025-08-26T19:34:27.6275363Z [161214] Checking whether to label PR as stale.
2025-08-26T19:34:27.6275894Z [161214] Skipping because PR was updated recently
2025-08-26T19:34:27.6276533Z ##[endgroup]
2025-08-26T19:34:27.6277054Z ##[group]Processing PR #161216
2025-08-26T19:34:27.6277568Z [161216] URL: https://github.com/pytorch/pytorch/pull/161216
2025-08-26T19:34:27.6278122Z [161216] Checking whether to label PR as stale.
2025-08-26T19:34:27.6278632Z [161216] Skipping because PR was updated recently
2025-08-26T19:34:27.6279270Z ##[endgroup]
2025-08-26T19:34:27.6279800Z ##[group]Processing PR #161217
2025-08-26T19:34:27.6280309Z [161217] URL: https://github.com/pytorch/pytorch/pull/161217
2025-08-26T19:34:27.6280938Z [161217] Checking whether to label PR as stale.
2025-08-26T19:34:27.6281465Z [161217] Skipping because PR was updated recently
2025-08-26T19:34:27.6282110Z ##[endgroup]
2025-08-26T19:34:27.6282734Z ##[group]Processing PR #161224
2025-08-26T19:34:27.6283230Z [161224] URL: https://github.com/pytorch/pytorch/pull/161224
2025-08-26T19:34:27.6283899Z [161224] Checking whether to label PR as stale.
2025-08-26T19:34:27.6284415Z [161224] Skipping because PR was updated recently
2025-08-26T19:34:27.6285062Z ##[endgroup]
2025-08-26T19:34:27.6285595Z ##[group]Processing PR #161225
2025-08-26T19:34:27.6286119Z [161225] URL: https://github.com/pytorch/pytorch/pull/161225
2025-08-26T19:34:27.6286658Z [161225] Checking whether to label PR as stale.
2025-08-26T19:34:27.6287162Z [161225] Skipping because PR was updated recently
2025-08-26T19:34:27.6287873Z ##[endgroup]
2025-08-26T19:34:27.6288406Z ##[group]Processing PR #161229
2025-08-26T19:34:27.6288907Z [161229] URL: https://github.com/pytorch/pytorch/pull/161229
2025-08-26T19:34:27.6289459Z [161229] Checking whether to label PR as stale.
2025-08-26T19:34:27.6289970Z [161229] Skipping because PR was updated recently
2025-08-26T19:34:27.6290613Z ##[endgroup]
2025-08-26T19:34:27.6291162Z ##[group]Processing PR #161230
2025-08-26T19:34:27.6291678Z [161230] URL: https://github.com/pytorch/pytorch/pull/161230
2025-08-26T19:34:27.6292215Z [161230] Checking whether to label PR as stale.
2025-08-26T19:34:27.6292742Z [161230] Skipping because PR was updated recently
2025-08-26T19:34:27.6293388Z ##[endgroup]
2025-08-26T19:34:27.6293925Z ##[group]Processing PR #161232
2025-08-26T19:34:27.6294517Z [161232] URL: https://github.com/pytorch/pytorch/pull/161232
2025-08-26T19:34:27.6295076Z [161232] Checking whether to label PR as stale.
2025-08-26T19:34:27.6295597Z [161232] Skipping because PR was updated recently
2025-08-26T19:34:27.6296242Z ##[endgroup]
2025-08-26T19:34:27.6296779Z ##[group]Processing PR #161233
2025-08-26T19:34:27.6297291Z [161233] URL: https://github.com/pytorch/pytorch/pull/161233
2025-08-26T19:34:27.6297827Z [161233] Checking whether to label PR as stale.
2025-08-26T19:34:27.6298361Z [161233] Skipping because PR was updated recently
2025-08-26T19:34:27.6299004Z ##[endgroup]
2025-08-26T19:34:27.6299540Z ##[group]Processing PR #161236
2025-08-26T19:34:27.6300042Z [161236] URL: https://github.com/pytorch/pytorch/pull/161236
2025-08-26T19:34:27.6300587Z [161236] Checking whether to label PR as stale.
2025-08-26T19:34:27.6301119Z [161236] Skipping because PR was updated recently
2025-08-26T19:34:27.6301746Z ##[endgroup]
2025-08-26T19:34:27.6302283Z ##[group]Processing PR #161237
2025-08-26T19:34:27.6302798Z [161237] URL: https://github.com/pytorch/pytorch/pull/161237
2025-08-26T19:34:27.6303343Z [161237] Checking whether to label PR as stale.
2025-08-26T19:34:27.6303972Z [161237] Skipping because PR was updated recently
2025-08-26T19:34:27.6304440Z ##[endgroup]
2025-08-26T19:34:27.6304975Z ##[group]Processing PR #161241
2025-08-26T19:34:27.6305477Z [161241] URL: https://github.com/pytorch/pytorch/pull/161241
2025-08-26T19:34:27.6306015Z [161241] Checking whether to label PR as stale.
2025-08-26T19:34:27.6306545Z [161241] Skipping because PR was updated recently
2025-08-26T19:34:27.6307185Z ##[endgroup]
2025-08-26T19:34:27.6307716Z ##[group]Processing PR #161243
2025-08-26T19:34:27.6308225Z [161243] URL: https://github.com/pytorch/pytorch/pull/161243
2025-08-26T19:34:27.6308770Z [161243] Checking whether to label PR as stale.
2025-08-26T19:34:27.6309279Z [161243] Skipping because PR was updated recently
2025-08-26T19:34:27.6309921Z ##[endgroup]
2025-08-26T19:34:27.6310453Z ##[group]Processing PR #161246
2025-08-26T19:34:27.6310962Z [161246] URL: https://github.com/pytorch/pytorch/pull/161246
2025-08-26T19:34:27.6311501Z [161246] Checking whether to label PR as stale.
2025-08-26T19:34:27.6312030Z [161246] Skipping because PR was updated recently
2025-08-26T19:34:27.6312681Z ##[endgroup]
2025-08-26T19:34:27.6313282Z ##[group]Processing PR #161247
2025-08-26T19:34:27.6313795Z [161247] URL: https://github.com/pytorch/pytorch/pull/161247
2025-08-26T19:34:27.6314341Z [161247] Checking whether to label PR as stale.
2025-08-26T19:34:27.6314849Z [161247] Skipping because PR was updated recently
2025-08-26T19:34:27.6315614Z ##[endgroup]
2025-08-26T19:34:27.6316150Z ##[group]Processing PR #161248
2025-08-26T19:34:27.6316664Z [161248] URL: https://github.com/pytorch/pytorch/pull/161248
2025-08-26T19:34:27.6317197Z [161248] Checking whether to label PR as stale.
2025-08-26T19:34:27.6317720Z [161248] Skipping because PR was updated recently
2025-08-26T19:34:27.6318359Z ##[endgroup]
2025-08-26T19:34:27.6318891Z ##[group]Processing PR #161253
2025-08-26T19:34:27.6319391Z [161253] URL: https://github.com/pytorch/pytorch/pull/161253
2025-08-26T19:34:27.6319939Z [161253] Checking whether to label PR as stale.
2025-08-26T19:34:27.6320451Z [161253] Skipping because PR was updated recently
2025-08-26T19:34:27.6321091Z ##[endgroup]
2025-08-26T19:34:27.6321621Z ##[group]Processing PR #161254
2025-08-26T19:34:27.6322132Z [161254] URL: https://github.com/pytorch/pytorch/pull/161254
2025-08-26T19:34:27.6322662Z [161254] Checking whether to label PR as stale.
2025-08-26T19:34:27.6323190Z [161254] Skipping because PR was updated recently
2025-08-26T19:34:27.6323834Z ##[endgroup]
2025-08-26T19:34:27.6324363Z ##[group]Processing PR #161257
2025-08-26T19:34:27.6324861Z [161257] URL: https://github.com/pytorch/pytorch/pull/161257
2025-08-26T19:34:27.6325401Z [161257] Checking whether to label PR as stale.
2025-08-26T19:34:27.6325930Z [161257] Skipping because PR was updated recently
2025-08-26T19:34:27.6326641Z ##[endgroup]
2025-08-26T19:34:27.6327181Z ##[group]Processing PR #161260
2025-08-26T19:34:27.6327693Z [161260] URL: https://github.com/pytorch/pytorch/pull/161260
2025-08-26T19:34:27.6328229Z [161260] Checking whether to label PR as stale.
2025-08-26T19:34:27.6328752Z [161260] Skipping because PR was updated recently
2025-08-26T19:34:27.6329394Z ##[endgroup]
2025-08-26T19:34:27.6329925Z ##[group]Processing PR #161261
2025-08-26T19:34:27.6330428Z [161261] URL: https://github.com/pytorch/pytorch/pull/161261
2025-08-26T19:34:27.6330972Z [161261] Checking whether to label PR as stale.
2025-08-26T19:34:27.6331505Z [161261] Skipping because PR was updated recently
2025-08-26T19:34:27.6332134Z ##[endgroup]
2025-08-26T19:34:27.6332660Z ##[group]Processing PR #161262
2025-08-26T19:34:27.6333175Z [161262] URL: https://github.com/pytorch/pytorch/pull/161262
2025-08-26T19:34:27.6333709Z [161262] Checking whether to label PR as stale.
2025-08-26T19:34:27.6334229Z [161262] Skipping because PR was updated recently
2025-08-26T19:34:27.6334873Z ##[endgroup]
2025-08-26T19:34:27.6335404Z ##[group]Processing PR #161263
2025-08-26T19:34:27.6336141Z [161263] URL: https://github.com/pytorch/pytorch/pull/161263
2025-08-26T19:34:27.6336706Z [161263] Checking whether to label PR as stale.
2025-08-26T19:34:27.6337268Z [161263] Skipping because PR was updated recently
2025-08-26T19:34:27.6337955Z ##[endgroup]
2025-08-26T19:34:27.6338499Z ##[group]Processing PR #161266
2025-08-26T19:34:27.6339037Z [161266] URL: https://github.com/pytorch/pytorch/pull/161266
2025-08-26T19:34:27.6339596Z [161266] Checking whether to label PR as stale.
2025-08-26T19:34:27.6340140Z [161266] Skipping because PR was updated recently
2025-08-26T19:34:27.6340830Z ##[endgroup]
2025-08-26T19:34:27.6341389Z ##[group]Processing PR #161274
2025-08-26T19:34:27.6341925Z [161274] URL: https://github.com/pytorch/pytorch/pull/161274
2025-08-26T19:34:27.6342464Z [161274] Checking whether to label PR as stale.
2025-08-26T19:34:27.6343031Z [161274] Skipping because PR was updated recently
2025-08-26T19:34:27.6343780Z ##[endgroup]
2025-08-26T19:34:27.6344359Z ##[group]Processing PR #161277
2025-08-26T19:34:27.6344907Z [161277] URL: https://github.com/pytorch/pytorch/pull/161277
2025-08-26T19:34:27.6345477Z [161277] Checking whether to label PR as stale.
2025-08-26T19:34:27.6346003Z [161277] Skipping because PR was updated recently
2025-08-26T19:34:27.6346765Z ##[endgroup]
2025-08-26T19:34:27.6347320Z ##[group]Processing PR #161278
2025-08-26T19:34:27.6347855Z [161278] URL: https://github.com/pytorch/pytorch/pull/161278
2025-08-26T19:34:27.6348393Z [161278] Checking whether to label PR as stale.
2025-08-26T19:34:27.6349239Z [161278] Skipping because PR was updated recently
2025-08-26T19:34:27.6349929Z ##[endgroup]
2025-08-26T19:34:27.6350483Z ##[group]Processing PR #161279
2025-08-26T19:34:27.6351004Z [161279] URL: https://github.com/pytorch/pytorch/pull/161279
2025-08-26T19:34:27.6351557Z [161279] Checking whether to label PR as stale.
2025-08-26T19:34:27.6352099Z [161279] Skipping because PR was updated recently
2025-08-26T19:34:27.6352773Z ##[endgroup]
2025-08-26T19:34:27.6353326Z ##[group]Processing PR #161280
2025-08-26T19:34:27.6353859Z [161280] URL: https://github.com/pytorch/pytorch/pull/161280
2025-08-26T19:34:27.6354399Z [161280] Checking whether to label PR as stale.
2025-08-26T19:34:27.6354955Z [161280] Skipping because PR was updated recently
2025-08-26T19:34:27.6355639Z ##[endgroup]
2025-08-26T19:34:27.6356193Z ##[group]Processing PR #161286
2025-08-26T19:34:27.6356715Z [161286] URL: https://github.com/pytorch/pytorch/pull/161286
2025-08-26T19:34:27.6357266Z [161286] Checking whether to label PR as stale.
2025-08-26T19:34:27.6357808Z [161286] Skipping because PR was updated recently
2025-08-26T19:34:27.6358491Z ##[endgroup]
2025-08-26T19:34:27.6359044Z ##[group]Processing PR #161288
2025-08-26T19:34:27.6359576Z [161288] URL: https://github.com/pytorch/pytorch/pull/161288
2025-08-26T19:34:27.6360119Z [161288] Checking whether to label PR as stale.
2025-08-26T19:34:27.6360793Z [161288] Skipping because PR was updated recently
2025-08-26T19:34:27.6361460Z ##[endgroup]
2025-08-26T19:34:27.6362014Z ##[group]Processing PR #161291
2025-08-26T19:34:27.6362536Z [161291] URL: https://github.com/pytorch/pytorch/pull/161291
2025-08-26T19:34:27.6363089Z [161291] Checking whether to label PR as stale.
2025-08-26T19:34:27.6363650Z [161291] Skipping because PR was updated recently
2025-08-26T19:34:27.6364314Z ##[endgroup]
2025-08-26T19:34:27.6364872Z ##[group]Processing PR #161292
2025-08-26T19:34:27.6365405Z [161292] URL: https://github.com/pytorch/pytorch/pull/161292
2025-08-26T19:34:27.6365964Z [161292] Checking whether to label PR as stale.
2025-08-26T19:34:27.6366501Z [161292] Skipping because PR was updated recently
2025-08-26T19:34:27.6367183Z ##[endgroup]
2025-08-26T19:34:27.6367737Z ##[group]Processing PR #161299
2025-08-26T19:34:27.6368257Z [161299] URL: https://github.com/pytorch/pytorch/pull/161299
2025-08-26T19:34:27.6368808Z [161299] Checking whether to label PR as stale.
2025-08-26T19:34:27.6369368Z [161299] Skipping because PR was updated recently
2025-08-26T19:34:27.6370044Z ##[endgroup]
2025-08-26T19:34:27.6370586Z ##[group]Processing PR #161300
2025-08-26T19:34:27.6371118Z [161300] URL: https://github.com/pytorch/pytorch/pull/161300
2025-08-26T19:34:27.6371676Z [161300] Checking whether to label PR as stale.
2025-08-26T19:34:27.6372201Z [161300] Skipping because PR was updated recently
2025-08-26T19:34:27.6372913Z ##[endgroup]
2025-08-26T19:34:27.6373487Z ##[group]Processing PR #161301
2025-08-26T19:34:27.6374021Z [161301] URL: https://github.com/pytorch/pytorch/pull/161301
2025-08-26T19:34:27.6374563Z [161301] Checking whether to label PR as stale.
2025-08-26T19:34:27.6375118Z [161301] Skipping because PR was updated recently
2025-08-26T19:34:27.6375793Z ##[endgroup]
2025-08-26T19:34:27.6376336Z ##[group]Processing PR #161303
2025-08-26T19:34:27.6376871Z [161303] URL: https://github.com/pytorch/pytorch/pull/161303
2025-08-26T19:34:27.6377430Z [161303] Checking whether to label PR as stale.
2025-08-26T19:34:27.6377963Z [161303] Skipping because PR was updated recently
2025-08-26T19:34:27.6378649Z ##[endgroup]
2025-08-26T19:34:27.6379202Z ##[group]Processing PR #161304
2025-08-26T19:34:27.6379738Z [161304] URL: https://github.com/pytorch/pytorch/pull/161304
2025-08-26T19:34:27.6380280Z [161304] Checking whether to label PR as stale.
2025-08-26T19:34:27.6380833Z [161304] Skipping because PR was updated recently
2025-08-26T19:34:27.6381512Z ##[endgroup]
2025-08-26T19:34:27.6382061Z ##[group]Processing PR #161305
2025-08-26T19:34:27.6382586Z [161305] URL: https://github.com/pytorch/pytorch/pull/161305
2025-08-26T19:34:27.6383237Z [161305] Checking whether to label PR as stale.
2025-08-26T19:34:27.6383858Z [161305] Skipping because PR was updated recently
2025-08-26T19:34:27.6384553Z ##[endgroup]
2025-08-26T19:34:27.6385117Z ##[group]Processing PR #161306
2025-08-26T19:34:27.6385647Z [161306] URL: https://github.com/pytorch/pytorch/pull/161306
2025-08-26T19:34:27.6386198Z [161306] Checking whether to label PR as stale.
2025-08-26T19:34:27.6386746Z [161306] Skipping because PR was updated recently
2025-08-26T19:34:27.6387433Z ##[endgroup]
2025-08-26T19:34:27.6387988Z ##[group]Processing PR #161307
2025-08-26T19:34:27.6388509Z [161307] URL: https://github.com/pytorch/pytorch/pull/161307
2025-08-26T19:34:27.6389061Z [161307] Checking whether to label PR as stale.
2025-08-26T19:34:27.6389614Z [161307] Skipping because PR was updated recently
2025-08-26T19:34:27.6390279Z ##[endgroup]
2025-08-26T19:34:27.6390833Z ##[group]Processing PR #161308
2025-08-26T19:34:27.6391370Z [161308] URL: https://github.com/pytorch/pytorch/pull/161308
2025-08-26T19:34:27.6391915Z [161308] Checking whether to label PR as stale.
2025-08-26T19:34:27.6392464Z [161308] Skipping because PR was updated recently
2025-08-26T19:34:27.6393146Z ##[endgroup]
2025-08-26T19:34:27.6393698Z ##[group]Processing PR #161309
2025-08-26T19:34:27.6394218Z [161309] URL: https://github.com/pytorch/pytorch/pull/161309
2025-08-26T19:34:27.6394866Z [161309] Checking whether to label PR as stale.
2025-08-26T19:34:27.6395389Z [161309] Skipping because PR was updated recently
2025-08-26T19:34:27.6396071Z ##[endgroup]
2025-08-26T19:34:28.6984057Z ##[group]Processing PR #161311
2025-08-26T19:34:28.6984790Z [161311] URL: https://github.com/pytorch/pytorch/pull/161311
2025-08-26T19:34:28.6985529Z [161311] Checking whether to label PR as stale.
2025-08-26T19:34:28.6986191Z [161311] Skipping because PR was updated recently
2025-08-26T19:34:28.6987103Z ##[endgroup]
2025-08-26T19:34:28.6987778Z ##[group]Processing PR #161314
2025-08-26T19:34:28.6988407Z [161314] URL: https://github.com/pytorch/pytorch/pull/161314
2025-08-26T19:34:28.6989200Z [161314] Checking whether to label PR as stale.
2025-08-26T19:34:28.6989850Z [161314] Skipping because PR was updated recently
2025-08-26T19:34:28.6990721Z ##[endgroup]
2025-08-26T19:34:28.6991399Z ##[group]Processing PR #161315
2025-08-26T19:34:28.6992037Z [161315] URL: https://github.com/pytorch/pytorch/pull/161315
2025-08-26T19:34:28.6992808Z [161315] Checking whether to label PR as stale.
2025-08-26T19:34:28.6993474Z [161315] Skipping because PR was updated recently
2025-08-26T19:34:28.6994329Z ##[endgroup]
2025-08-26T19:34:28.6994931Z ##[group]Processing PR #161317
2025-08-26T19:34:28.6995463Z [161317] URL: https://github.com/pytorch/pytorch/pull/161317
2025-08-26T19:34:28.6996085Z [161317] Checking whether to label PR as stale.
2025-08-26T19:34:28.6996689Z [161317] Skipping because PR was updated recently
2025-08-26T19:34:28.6997516Z ##[endgroup]
2025-08-26T19:34:28.6998167Z ##[group]Processing PR #161320
2025-08-26T19:34:28.6998775Z [161320] URL: https://github.com/pytorch/pytorch/pull/161320
2025-08-26T19:34:28.6999483Z [161320] Checking whether to label PR as stale.
2025-08-26T19:34:28.7000106Z [161320] Skipping because PR was updated recently
2025-08-26T19:34:28.7000970Z ##[endgroup]
2025-08-26T19:34:28.7001630Z ##[group]Processing PR #161323
2025-08-26T19:34:28.7002247Z [161323] URL: https://github.com/pytorch/pytorch/pull/161323
2025-08-26T19:34:28.7002940Z [161323] Checking whether to label PR as stale.
2025-08-26T19:34:28.7003585Z [161323] Skipping because PR was updated recently
2025-08-26T19:34:28.7004420Z ##[endgroup]
2025-08-26T19:34:28.7005076Z ##[group]Processing PR #161325
2025-08-26T19:34:28.7005712Z [161325] URL: https://github.com/pytorch/pytorch/pull/161325
2025-08-26T19:34:28.7006419Z [161325] Checking whether to label PR as stale.
2025-08-26T19:34:28.7008604Z [161325] Skipping because PR was updated recently
2025-08-26T19:34:28.7009489Z ##[endgroup]
2025-08-26T19:34:28.7010159Z ##[group]Processing PR #161328
2025-08-26T19:34:28.7011125Z [161328] URL: https://github.com/pytorch/pytorch/pull/161328
2025-08-26T19:34:28.7011878Z [161328] Checking whether to label PR as stale.
2025-08-26T19:34:28.7012546Z [161328] Skipping because PR was updated recently
2025-08-26T19:34:28.7013390Z ##[endgroup]
2025-08-26T19:34:28.7014048Z ##[group]Processing PR #161329
2025-08-26T19:34:28.7014692Z [161329] URL: https://github.com/pytorch/pytorch/pull/161329
2025-08-26T19:34:28.7015423Z [161329] Checking whether to label PR as stale.
2025-08-26T19:34:28.7016077Z [161329] Skipping because PR was updated recently
2025-08-26T19:34:28.7030269Z ##[endgroup]
2025-08-26T19:34:28.7031020Z ##[group]Processing PR #161336
2025-08-26T19:34:28.7031669Z [161336] URL: https://github.com/pytorch/pytorch/pull/161336
2025-08-26T19:34:28.7032406Z [161336] Checking whether to label PR as stale.
2025-08-26T19:34:28.7033059Z [161336] Skipping because PR was updated recently
2025-08-26T19:34:28.7033912Z ##[endgroup]
2025-08-26T19:34:28.7034585Z ##[group]Processing PR #161337
2025-08-26T19:34:28.7035248Z [161337] URL: https://github.com/pytorch/pytorch/pull/161337
2025-08-26T19:34:28.7036161Z [161337] Checking whether to label PR as stale.
2025-08-26T19:34:28.7036834Z [161337] Skipping because PR was updated recently
2025-08-26T19:34:28.7037697Z ##[endgroup]
2025-08-26T19:34:28.7038398Z ##[group]Processing PR #161338
2025-08-26T19:34:28.7039296Z [161338] URL: https://github.com/pytorch/pytorch/pull/161338
2025-08-26T19:34:28.7040038Z [161338] Checking whether to label PR as stale.
2025-08-26T19:34:28.7040715Z [161338] Skipping because PR was updated recently
2025-08-26T19:34:28.7041573Z ##[endgroup]
2025-08-26T19:34:28.7042248Z ##[group]Processing PR #161339
2025-08-26T19:34:28.7042871Z [161339] URL: https://github.com/pytorch/pytorch/pull/161339
2025-08-26T19:34:28.7043606Z [161339] Checking whether to label PR as stale.
2025-08-26T19:34:28.7044255Z [161339] Skipping because PR was updated recently
2025-08-26T19:34:28.7045053Z ##[endgroup]
2025-08-26T19:34:28.7045726Z ##[group]Processing PR #161340
2025-08-26T19:34:28.7046350Z [161340] URL: https://github.com/pytorch/pytorch/pull/161340
2025-08-26T19:34:28.7047077Z [161340] Checking whether to label PR as stale.
2025-08-26T19:34:28.7047749Z [161340] Skipping because PR was updated recently
2025-08-26T19:34:28.7048561Z ##[endgroup]
2025-08-26T19:34:28.7049211Z ##[group]Processing PR #161341
2025-08-26T19:34:28.7049864Z [161341] URL: https://github.com/pytorch/pytorch/pull/161341
2025-08-26T19:34:28.7050602Z [161341] Checking whether to label PR as stale.
2025-08-26T19:34:28.7051270Z [161341] Skipping because PR was updated recently
2025-08-26T19:34:28.7052137Z ##[endgroup]
2025-08-26T19:34:28.7052803Z ##[group]Processing PR #161342
2025-08-26T19:34:28.7053442Z [161342] URL: https://github.com/pytorch/pytorch/pull/161342
2025-08-26T19:34:28.7054174Z [161342] Checking whether to label PR as stale.
2025-08-26T19:34:28.7054811Z [161342] Skipping because PR was updated recently
2025-08-26T19:34:28.7055665Z ##[endgroup]
2025-08-26T19:34:28.7056320Z ##[group]Processing PR #161343
2025-08-26T19:34:28.7056871Z [161343] URL: https://github.com/pytorch/pytorch/pull/161343
2025-08-26T19:34:28.7057585Z [161343] Checking whether to label PR as stale.
2025-08-26T19:34:28.7058576Z [161343] Skipping because PR was updated recently
2025-08-26T19:34:28.7059741Z ##[endgroup]
2025-08-26T19:34:28.7060427Z ##[group]Processing PR #161344
2025-08-26T19:34:28.7061084Z [161344] URL: https://github.com/pytorch/pytorch/pull/161344
2025-08-26T19:34:28.7061821Z [161344] Checking whether to label PR as stale.
2025-08-26T19:34:28.7062503Z [161344] Skipping because PR was updated recently
2025-08-26T19:34:28.7063365Z ##[endgroup]
2025-08-26T19:34:28.7064098Z ##[group]Processing PR #161345
2025-08-26T19:34:28.7064757Z [161345] URL: https://github.com/pytorch/pytorch/pull/161345
2025-08-26T19:34:28.7065516Z [161345] Checking whether to label PR as stale.
2025-08-26T19:34:28.7066168Z [161345] Skipping because PR was updated recently
2025-08-26T19:34:28.7067303Z ##[endgroup]
2025-08-26T19:34:28.7067982Z ##[group]Processing PR #161346
2025-08-26T19:34:28.7068477Z [161346] URL: https://github.com/pytorch/pytorch/pull/161346
2025-08-26T19:34:28.7069060Z [161346] Checking whether to label PR as stale.
2025-08-26T19:34:28.7069625Z [161346] Skipping because PR was updated recently
2025-08-26T19:34:28.7070371Z ##[endgroup]
2025-08-26T19:34:28.7070920Z ##[group]Processing PR #161347
2025-08-26T19:34:28.7071461Z [161347] URL: https://github.com/pytorch/pytorch/pull/161347
2025-08-26T19:34:28.7072061Z [161347] Checking whether to label PR as stale.
2025-08-26T19:34:28.7072623Z [161347] Skipping because PR was updated recently
2025-08-26T19:34:28.7073342Z ##[endgroup]
2025-08-26T19:34:28.7073907Z ##[group]Processing PR #161348
2025-08-26T19:34:28.7074441Z [161348] URL: https://github.com/pytorch/pytorch/pull/161348
2025-08-26T19:34:28.7075035Z [161348] Checking whether to label PR as stale.
2025-08-26T19:34:28.7075507Z [161348] Skipping because PR was updated recently
2025-08-26T19:34:28.7076371Z ##[endgroup]
2025-08-26T19:34:28.7076964Z ##[group]Processing PR #161349
2025-08-26T19:34:28.7077460Z [161349] URL: https://github.com/pytorch/pytorch/pull/161349
2025-08-26T19:34:28.7077876Z [161349] Checking whether to label PR as stale.
2025-08-26T19:34:28.7078226Z [161349] Skipping because PR was updated recently
2025-08-26T19:34:28.7078702Z ##[endgroup]
2025-08-26T19:34:28.7079231Z ##[group]Processing PR #161350
2025-08-26T19:34:28.7079591Z [161350] URL: https://github.com/pytorch/pytorch/pull/161350
2025-08-26T19:34:28.7079985Z [161350] Checking whether to label PR as stale.
2025-08-26T19:34:28.7080349Z [161350] Skipping because PR was updated recently
2025-08-26T19:34:28.7080817Z ##[endgroup]
2025-08-26T19:34:28.7081188Z ##[group]Processing PR #161351
2025-08-26T19:34:28.7081534Z [161351] URL: https://github.com/pytorch/pytorch/pull/161351
2025-08-26T19:34:28.7081923Z [161351] Checking whether to label PR as stale.
2025-08-26T19:34:28.7082281Z [161351] Skipping because PR was updated recently
2025-08-26T19:34:28.7082753Z ##[endgroup]
2025-08-26T19:34:28.7083105Z ##[group]Processing PR #161353
2025-08-26T19:34:28.7083454Z [161353] URL: https://github.com/pytorch/pytorch/pull/161353
2025-08-26T19:34:28.7083844Z [161353] Checking whether to label PR as stale.
2025-08-26T19:34:28.7084199Z [161353] Skipping because PR was updated recently
2025-08-26T19:34:28.7084660Z ##[endgroup]
2025-08-26T19:34:28.7085031Z ##[group]Processing PR #161354
2025-08-26T19:34:28.7085365Z [161354] URL: https://github.com/pytorch/pytorch/pull/161354
2025-08-26T19:34:28.7085771Z [161354] Checking whether to label PR as stale.
2025-08-26T19:34:28.7086120Z [161354] Skipping because PR was updated recently
2025-08-26T19:34:28.7086581Z ##[endgroup]
2025-08-26T19:34:28.7086948Z ##[group]Processing PR #161355
2025-08-26T19:34:28.7087282Z [161355] URL: https://github.com/pytorch/pytorch/pull/161355
2025-08-26T19:34:28.7087680Z [161355] Checking whether to label PR as stale.
2025-08-26T19:34:28.7088035Z [161355] Skipping because PR was updated recently
2025-08-26T19:34:28.7088604Z ##[endgroup]
2025-08-26T19:34:28.7088966Z ##[group]Processing PR #161359
2025-08-26T19:34:28.7089314Z [161359] URL: https://github.com/pytorch/pytorch/pull/161359
2025-08-26T19:34:28.7089704Z [161359] Checking whether to label PR as stale.
2025-08-26T19:34:28.7090062Z [161359] Skipping because PR was updated recently
2025-08-26T19:34:28.7090530Z ##[endgroup]
2025-08-26T19:34:28.7090893Z ##[group]Processing PR #161362
2025-08-26T19:34:28.7091227Z [161362] URL: https://github.com/pytorch/pytorch/pull/161362
2025-08-26T19:34:28.7091626Z [161362] Checking whether to label PR as stale.
2025-08-26T19:34:28.7091971Z [161362] Skipping because PR was updated recently
2025-08-26T19:34:28.7092428Z ##[endgroup]
2025-08-26T19:34:28.7092787Z ##[group]Processing PR #161363
2025-08-26T19:34:28.7093124Z [161363] URL: https://github.com/pytorch/pytorch/pull/161363
2025-08-26T19:34:28.7093525Z [161363] Checking whether to label PR as stale.
2025-08-26T19:34:28.7093980Z [161363] Skipping because PR was updated recently
2025-08-26T19:34:28.7094430Z ##[endgroup]
2025-08-26T19:34:28.7094800Z ##[group]Processing PR #161367
2025-08-26T19:34:28.7095153Z [161367] URL: https://github.com/pytorch/pytorch/pull/161367
2025-08-26T19:34:28.7095546Z [161367] Checking whether to label PR as stale.
2025-08-26T19:34:28.7095909Z [161367] Skipping because PR was updated recently
2025-08-26T19:34:28.7096376Z ##[endgroup]
2025-08-26T19:34:28.7096729Z ##[group]Processing PR #161369
2025-08-26T19:34:28.7097079Z [161369] URL: https://github.com/pytorch/pytorch/pull/161369
2025-08-26T19:34:28.7097478Z [161369] Checking whether to label PR as stale.
2025-08-26T19:34:28.7097822Z [161369] Skipping because PR was updated recently
2025-08-26T19:34:28.7098279Z ##[endgroup]
2025-08-26T19:34:28.7098639Z ##[group]Processing PR #161370
2025-08-26T19:34:28.7098976Z [161370] URL: https://github.com/pytorch/pytorch/pull/161370
2025-08-26T19:34:28.7099374Z [161370] Checking whether to label PR as stale.
2025-08-26T19:34:28.7099722Z [161370] Skipping because PR was updated recently
2025-08-26T19:34:28.7100183Z ##[endgroup]
2025-08-26T19:34:28.7100656Z ##[group]Processing PR #161373
2025-08-26T19:34:28.7101023Z [161373] URL: https://github.com/pytorch/pytorch/pull/161373
2025-08-26T19:34:28.7101414Z [161373] Checking whether to label PR as stale.
2025-08-26T19:34:28.7101856Z [161373] Skipping because PR was updated recently
2025-08-26T19:34:28.7102327Z ##[endgroup]
2025-08-26T19:34:28.7102677Z ##[group]Processing PR #161374
2025-08-26T19:34:28.7103027Z [161374] URL: https://github.com/pytorch/pytorch/pull/161374
2025-08-26T19:34:28.7103427Z [161374] Checking whether to label PR as stale.
2025-08-26T19:34:28.7103852Z [161374] Skipping because PR was updated recently
2025-08-26T19:34:28.7104314Z ##[endgroup]
2025-08-26T19:34:28.7104682Z ##[group]Processing PR #161380
2025-08-26T19:34:28.7105016Z [161380] URL: https://github.com/pytorch/pytorch/pull/161380
2025-08-26T19:34:28.7105417Z [161380] Checking whether to label PR as stale.
2025-08-26T19:34:28.7105767Z [161380] Skipping because PR was updated recently
2025-08-26T19:34:28.7106227Z ##[endgroup]
2025-08-26T19:34:28.7106591Z ##[group]Processing PR #161382
2025-08-26T19:34:28.7106942Z [161382] URL: https://github.com/pytorch/pytorch/pull/161382
2025-08-26T19:34:28.7107333Z [161382] Checking whether to label PR as stale.
2025-08-26T19:34:28.7107700Z [161382] Skipping because PR was updated recently
2025-08-26T19:34:28.7108161Z ##[endgroup]
2025-08-26T19:34:28.7108513Z ##[group]Processing PR #161383
2025-08-26T19:34:28.7108860Z [161383] URL: https://github.com/pytorch/pytorch/pull/161383
2025-08-26T19:34:28.7109248Z [161383] Checking whether to label PR as stale.
2025-08-26T19:34:28.7109604Z [161383] Skipping because PR was updated recently
2025-08-26T19:34:28.7110063Z ##[endgroup]
2025-08-26T19:34:28.7110423Z ##[group]Processing PR #161385
2025-08-26T19:34:28.7110759Z [161385] URL: https://github.com/pytorch/pytorch/pull/161385
2025-08-26T19:34:28.7111157Z [161385] Checking whether to label PR as stale.
2025-08-26T19:34:28.7111508Z [161385] Skipping because PR was updated recently
2025-08-26T19:34:28.7111966Z ##[endgroup]
2025-08-26T19:34:28.7112328Z ##[group]Processing PR #161389
2025-08-26T19:34:28.7112662Z [161389] URL: https://github.com/pytorch/pytorch/pull/161389
2025-08-26T19:34:28.7113063Z [161389] Checking whether to label PR as stale.
2025-08-26T19:34:28.7113426Z [161389] Skipping because PR was updated recently
2025-08-26T19:34:28.7113877Z ##[endgroup]
2025-08-26T19:34:28.7114240Z ##[group]Processing PR #161392
2025-08-26T19:34:28.7114586Z [161392] URL: https://github.com/pytorch/pytorch/pull/161392
2025-08-26T19:34:28.7114973Z [161392] Checking whether to label PR as stale.
2025-08-26T19:34:28.7115330Z [161392] Skipping because PR was updated recently
2025-08-26T19:34:28.7115792Z ##[endgroup]
2025-08-26T19:34:28.7116157Z ##[group]Processing PR #161394
2025-08-26T19:34:28.7116491Z [161394] URL: https://github.com/pytorch/pytorch/pull/161394
2025-08-26T19:34:28.7116991Z [161394] Checking whether to label PR as stale.
2025-08-26T19:34:28.7117337Z [161394] Skipping because PR was updated recently
2025-08-26T19:34:28.7117801Z ##[endgroup]
2025-08-26T19:34:28.7118166Z ##[group]Processing PR #161395
2025-08-26T19:34:28.7118501Z [161395] URL: https://github.com/pytorch/pytorch/pull/161395
2025-08-26T19:34:28.7118906Z [161395] Checking whether to label PR as stale.
2025-08-26T19:34:28.7119267Z [161395] Skipping because PR was updated recently
2025-08-26T19:34:28.7119711Z ##[endgroup]
2025-08-26T19:34:28.7120072Z ##[group]Processing PR #161396
2025-08-26T19:34:28.7120422Z [161396] URL: https://github.com/pytorch/pytorch/pull/161396
2025-08-26T19:34:28.7120809Z [161396] Checking whether to label PR as stale.
2025-08-26T19:34:28.7121164Z [161396] Skipping because PR was updated recently
2025-08-26T19:34:28.7121620Z ##[endgroup]
2025-08-26T19:34:28.7121968Z ##[group]Processing PR #161397
2025-08-26T19:34:28.7122316Z [161397] URL: https://github.com/pytorch/pytorch/pull/161397
2025-08-26T19:34:28.7122721Z [161397] Checking whether to label PR as stale.
2025-08-26T19:34:28.7123073Z [161397] Skipping because PR was updated recently
2025-08-26T19:34:28.7123534Z ##[endgroup]
2025-08-26T19:34:28.7123897Z ##[group]Processing PR #161399
2025-08-26T19:34:28.7124231Z [161399] URL: https://github.com/pytorch/pytorch/pull/161399
2025-08-26T19:34:28.7124686Z [161399] Checking whether to label PR as stale.
2025-08-26T19:34:28.7125035Z [161399] Skipping because PR was updated recently
2025-08-26T19:34:28.7125492Z ##[endgroup]
2025-08-26T19:34:28.7125853Z ##[group]Processing PR #161400
2025-08-26T19:34:28.7126202Z [161400] URL: https://github.com/pytorch/pytorch/pull/161400
2025-08-26T19:34:28.7126588Z [161400] Checking whether to label PR as stale.
2025-08-26T19:34:28.7126945Z [161400] Skipping because PR was updated recently
2025-08-26T19:34:28.7127406Z ##[endgroup]
2025-08-26T19:34:28.7127755Z ##[group]Processing PR #161404
2025-08-26T19:34:28.7128101Z [161404] URL: https://github.com/pytorch/pytorch/pull/161404
2025-08-26T19:34:28.7128509Z [161404] Checking whether to label PR as stale.
2025-08-26T19:34:28.7128854Z [161404] Skipping because PR was updated recently
2025-08-26T19:34:28.7129319Z ##[endgroup]
2025-08-26T19:34:28.7129680Z ##[group]Processing PR #161405
2025-08-26T19:34:28.7130018Z [161405] URL: https://github.com/pytorch/pytorch/pull/161405
2025-08-26T19:34:28.7130421Z [161405] Checking whether to label PR as stale.
2025-08-26T19:34:28.7130766Z [161405] Skipping because PR was updated recently
2025-08-26T19:34:28.7131224Z ##[endgroup]
2025-08-26T19:34:28.7131581Z ##[group]Processing PR #161406
2025-08-26T19:34:28.7131929Z [161406] URL: https://github.com/pytorch/pytorch/pull/161406
2025-08-26T19:34:28.7132316Z [161406] Checking whether to label PR as stale.
2025-08-26T19:34:28.7132669Z [161406] Skipping because PR was updated recently
2025-08-26T19:34:28.7133126Z ##[endgroup]
2025-08-26T19:34:28.7133476Z ##[group]Processing PR #161407
2025-08-26T19:34:28.7133822Z [161407] URL: https://github.com/pytorch/pytorch/pull/161407
2025-08-26T19:34:28.7134215Z [161407] Checking whether to label PR as stale.
2025-08-26T19:34:28.7134572Z [161407] Skipping because PR was updated recently
2025-08-26T19:34:28.7135028Z ##[endgroup]
2025-08-26T19:34:28.7135389Z ##[group]Processing PR #161409
2025-08-26T19:34:28.7135996Z [161409] URL: https://github.com/pytorch/pytorch/pull/161409
2025-08-26T19:34:28.7136406Z [161409] Checking whether to label PR as stale.
2025-08-26T19:34:28.7136750Z [161409] Skipping because PR was updated recently
2025-08-26T19:34:28.7137217Z ##[endgroup]
2025-08-26T19:34:28.7137577Z ##[group]Processing PR #161410
2025-08-26T19:34:28.7137926Z [161410] URL: https://github.com/pytorch/pytorch/pull/161410
2025-08-26T19:34:28.7138320Z [161410] Checking whether to label PR as stale.
2025-08-26T19:34:28.7138677Z [161410] Skipping because PR was updated recently
2025-08-26T19:34:28.7139124Z ##[endgroup]
2025-08-26T19:34:28.7139495Z ##[group]Processing PR #161412
2025-08-26T19:34:28.7139983Z [161412] URL: https://github.com/pytorch/pytorch/pull/161412
2025-08-26T19:34:28.7140372Z [161412] Checking whether to label PR as stale.
2025-08-26T19:34:28.7140735Z [161412] Skipping because PR was updated recently
2025-08-26T19:34:28.7141199Z ##[endgroup]
2025-08-26T19:34:28.7141563Z ##[group]Processing PR #161414
2025-08-26T19:34:28.7141903Z [161414] URL: https://github.com/pytorch/pytorch/pull/161414
2025-08-26T19:34:28.7142307Z [161414] Checking whether to label PR as stale.
2025-08-26T19:34:28.7142652Z [161414] Skipping because PR was updated recently
2025-08-26T19:34:28.7143113Z ##[endgroup]
2025-08-26T19:34:28.7143472Z ##[group]Processing PR #161416
2025-08-26T19:34:28.7143887Z [161416] URL: https://github.com/pytorch/pytorch/pull/161416
2025-08-26T19:34:28.7144296Z [161416] Checking whether to label PR as stale.
2025-08-26T19:34:28.7144664Z [161416] Skipping because PR was updated recently
2025-08-26T19:34:28.7145116Z ##[endgroup]
2025-08-26T19:34:28.7145490Z ##[group]Processing PR #161420
2025-08-26T19:34:28.7145849Z [161420] URL: https://github.com/pytorch/pytorch/pull/161420
2025-08-26T19:34:28.7146238Z [161420] Checking whether to label PR as stale.
2025-08-26T19:34:28.7146595Z [161420] Skipping because PR was updated recently
2025-08-26T19:34:28.7147050Z ##[endgroup]
2025-08-26T19:34:28.7147411Z ##[group]Processing PR #161421
2025-08-26T19:34:28.7147825Z [161421] URL: https://github.com/pytorch/pytorch/pull/161421
2025-08-26T19:34:28.7148233Z [161421] Checking whether to label PR as stale.
2025-08-26T19:34:28.7148577Z [161421] Skipping because PR was updated recently
2025-08-26T19:34:28.7149039Z ##[endgroup]
2025-08-26T19:34:28.7149400Z ##[group]Processing PR #161426
2025-08-26T19:34:28.7149738Z [161426] URL: https://github.com/pytorch/pytorch/pull/161426
2025-08-26T19:34:28.7150143Z [161426] Checking whether to label PR as stale.
2025-08-26T19:34:28.7150502Z [161426] Skipping because PR was updated recently
2025-08-26T19:34:28.7150950Z ##[endgroup]
2025-08-26T19:34:28.7151312Z ##[group]Processing PR #161429
2025-08-26T19:34:28.7151660Z [161429] URL: https://github.com/pytorch/pytorch/pull/161429
2025-08-26T19:34:28.7152046Z [161429] Checking whether to label PR as stale.
2025-08-26T19:34:28.7152405Z [161429] Skipping because PR was updated recently
2025-08-26T19:34:28.7152860Z ##[endgroup]
2025-08-26T19:34:28.7153830Z ##[group]Processing PR #161430
2025-08-26T19:34:28.7154384Z [161430] URL: https://github.com/pytorch/pytorch/pull/161430
2025-08-26T19:34:28.7154949Z [161430] Checking whether to label PR as stale.
2025-08-26T19:34:28.7155465Z [161430] Skipping because PR was updated recently
2025-08-26T19:34:28.7156115Z ##[endgroup]
2025-08-26T19:34:28.7156650Z ##[group]Processing PR #161431
2025-08-26T19:34:28.7157167Z [161431] URL: https://github.com/pytorch/pytorch/pull/161431
2025-08-26T19:34:28.7157700Z [161431] Checking whether to label PR as stale.
2025-08-26T19:34:28.7158235Z [161431] Skipping because PR was updated recently
2025-08-26T19:34:28.7158877Z ##[endgroup]
2025-08-26T19:34:28.7159418Z ##[group]Processing PR #161432
2025-08-26T19:34:28.7159924Z [161432] URL: https://github.com/pytorch/pytorch/pull/161432
2025-08-26T19:34:28.7160469Z [161432] Checking whether to label PR as stale.
2025-08-26T19:34:28.7160982Z [161432] Skipping because PR was updated recently
2025-08-26T19:34:28.7161626Z ##[endgroup]
2025-08-26T19:34:28.7162158Z ##[group]Processing PR #161433
2025-08-26T19:34:28.7162678Z [161433] URL: https://github.com/pytorch/pytorch/pull/161433
2025-08-26T19:34:28.7163213Z [161433] Checking whether to label PR as stale.
2025-08-26T19:34:28.7163740Z [161433] Skipping because PR was updated recently
2025-08-26T19:34:28.7164384Z ##[endgroup]
2025-08-26T19:34:28.7164918Z ##[group]Processing PR #161434
2025-08-26T19:34:28.7165422Z [161434] URL: https://github.com/pytorch/pytorch/pull/161434
2025-08-26T19:34:28.7165967Z [161434] Checking whether to label PR as stale.
2025-08-26T19:34:28.7166498Z [161434] Skipping because PR was updated recently
2025-08-26T19:34:28.7167128Z ##[endgroup]
2025-08-26T19:34:28.7167764Z ##[group]Processing PR #161435
2025-08-26T19:34:28.7168281Z [161435] URL: https://github.com/pytorch/pytorch/pull/161435
2025-08-26T19:34:28.7168811Z [161435] Checking whether to label PR as stale.
2025-08-26T19:34:28.7169335Z [161435] Skipping because PR was updated recently
2025-08-26T19:34:28.7169979Z ##[endgroup]
2025-08-26T19:34:28.7170513Z ##[group]Processing PR #161437
2025-08-26T19:34:28.7171020Z [161437] URL: https://github.com/pytorch/pytorch/pull/161437
2025-08-26T19:34:28.7171566Z [161437] Checking whether to label PR as stale.
2025-08-26T19:34:28.7172112Z [161437] Skipping because PR was updated recently
2025-08-26T19:34:28.7172757Z ##[endgroup]
2025-08-26T19:34:28.7173277Z ##[group]Processing PR #161438
2025-08-26T19:34:28.7173797Z [161438] URL: https://github.com/pytorch/pytorch/pull/161438
2025-08-26T19:34:28.7174347Z [161438] Checking whether to label PR as stale.
2025-08-26T19:34:28.7174858Z [161438] Skipping because PR was updated recently
2025-08-26T19:34:28.7175502Z ##[endgroup]
2025-08-26T19:34:28.7176033Z ##[group]Processing PR #161440
2025-08-26T19:34:28.7176548Z [161440] URL: https://github.com/pytorch/pytorch/pull/161440
2025-08-26T19:34:28.7177085Z [161440] Checking whether to label PR as stale.
2025-08-26T19:34:28.7177614Z [161440] Skipping because PR was updated recently
2025-08-26T19:34:28.7178255Z ##[endgroup]
2025-08-26T19:34:28.7178851Z ##[group]Processing PR #161442
2025-08-26T19:34:28.7179377Z [161442] URL: https://github.com/pytorch/pytorch/pull/161442
2025-08-26T19:34:28.7179935Z [161442] Checking whether to label PR as stale.
2025-08-26T19:34:28.7180448Z [161442] Skipping because PR was updated recently
2025-08-26T19:34:28.7181091Z ##[endgroup]
2025-08-26T19:34:28.7181623Z ##[group]Processing PR #161447
2025-08-26T19:34:28.7182134Z [161447] URL: https://github.com/pytorch/pytorch/pull/161447
2025-08-26T19:34:28.7182665Z [161447] Checking whether to label PR as stale.
2025-08-26T19:34:28.7183194Z [161447] Skipping because PR was updated recently
2025-08-26T19:34:28.7183919Z ##[endgroup]
2025-08-26T19:34:28.7184463Z ##[group]Processing PR #161448
2025-08-26T19:34:28.7184964Z [161448] URL: https://github.com/pytorch/pytorch/pull/161448
2025-08-26T19:34:28.7185516Z [161448] Checking whether to label PR as stale.
2025-08-26T19:34:28.7186022Z [161448] Skipping because PR was updated recently
2025-08-26T19:34:28.7186670Z ##[endgroup]
2025-08-26T19:34:28.7187203Z ##[group]Processing PR #161449
2025-08-26T19:34:28.7187713Z [161449] URL: https://github.com/pytorch/pytorch/pull/161449
2025-08-26T19:34:28.7188243Z [161449] Checking whether to label PR as stale.
2025-08-26T19:34:28.7188772Z [161449] Skipping because PR was updated recently
2025-08-26T19:34:28.7189411Z ##[endgroup]
2025-08-26T19:34:28.7189938Z ##[group]Processing PR #161451
2025-08-26T19:34:28.7190437Z [161451] URL: https://github.com/pytorch/pytorch/pull/161451
2025-08-26T19:34:28.7190974Z [161451] Checking whether to label PR as stale.
2025-08-26T19:34:28.7191502Z [161451] Skipping because PR was updated recently
2025-08-26T19:34:28.7192147Z ##[endgroup]
2025-08-26T19:34:28.7192691Z ##[group]Processing PR #161452
2025-08-26T19:34:28.7193205Z [161452] URL: https://github.com/pytorch/pytorch/pull/161452
2025-08-26T19:34:28.7193738Z [161452] Checking whether to label PR as stale.
2025-08-26T19:34:28.7194271Z [161452] Skipping because PR was updated recently
2025-08-26T19:34:28.7194917Z ##[endgroup]
2025-08-26T19:34:28.7195457Z ##[group]Processing PR #161453
2025-08-26T19:34:28.7195959Z [161453] URL: https://github.com/pytorch/pytorch/pull/161453
2025-08-26T19:34:28.7196500Z [161453] Checking whether to label PR as stale.
2025-08-26T19:34:28.7197013Z [161453] Skipping because PR was updated recently
2025-08-26T19:34:28.7197662Z ##[endgroup]
2025-08-26T19:34:28.7198192Z ##[group]Processing PR #161454
2025-08-26T19:34:28.7198702Z [161454] URL: https://github.com/pytorch/pytorch/pull/161454
2025-08-26T19:34:28.7199234Z [161454] Checking whether to label PR as stale.
2025-08-26T19:34:28.7199765Z [161454] Skipping because PR was updated recently
2025-08-26T19:34:28.7200509Z ##[endgroup]
2025-08-26T19:34:28.7201039Z ##[group]Processing PR #161455
2025-08-26T19:34:28.7201619Z [161455] URL: https://github.com/pytorch/pytorch/pull/161455
2025-08-26T19:34:28.7202344Z [161455] Checking whether to label PR as stale.
2025-08-26T19:34:28.7202941Z [161455] Skipping because PR was updated recently
2025-08-26T19:34:28.7203573Z ##[endgroup]
2025-08-26T19:34:28.7204106Z ##[group]Processing PR #161458
2025-08-26T19:34:28.7204619Z [161458] URL: https://github.com/pytorch/pytorch/pull/161458
2025-08-26T19:34:28.7205155Z [161458] Checking whether to label PR as stale.
2025-08-26T19:34:28.7205673Z [161458] Skipping because PR was updated recently
2025-08-26T19:34:28.7206311Z ##[endgroup]
2025-08-26T19:34:28.7206840Z ##[group]Processing PR #161461
2025-08-26T19:34:28.7207340Z [161461] URL: https://github.com/pytorch/pytorch/pull/161461
2025-08-26T19:34:28.7207882Z [161461] Checking whether to label PR as stale.
2025-08-26T19:34:28.7208419Z [161461] Skipping because PR was updated recently
2025-08-26T19:34:28.7209060Z ##[endgroup]
2025-08-26T19:34:28.7209605Z ##[group]Processing PR #161462
2025-08-26T19:34:28.7210116Z [161462] URL: https://github.com/pytorch/pytorch/pull/161462
2025-08-26T19:34:28.7210653Z [161462] Checking whether to label PR as stale.
2025-08-26T19:34:28.7211159Z [161462] Skipping because PR was updated recently
2025-08-26T19:34:28.7211908Z ##[endgroup]
2025-08-26T19:34:28.7212437Z ##[group]Processing PR #161464
2025-08-26T19:34:28.7212945Z [161464] URL: https://github.com/pytorch/pytorch/pull/161464
2025-08-26T19:34:28.7213471Z [161464] Checking whether to label PR as stale.
2025-08-26T19:34:28.7213986Z [161464] Skipping because PR was updated recently
2025-08-26T19:34:28.7214615Z ##[endgroup]
2025-08-26T19:34:28.7215126Z ##[group]Processing PR #161466
2025-08-26T19:34:28.7215631Z [161466] URL: https://github.com/pytorch/pytorch/pull/161466
2025-08-26T19:34:28.7216174Z [161466] Checking whether to label PR as stale.
2025-08-26T19:34:28.7216684Z [161466] Skipping because PR was updated recently
2025-08-26T19:34:28.7217325Z ##[endgroup]
2025-08-26T19:34:28.7217841Z ##[group]Processing PR #161467
2025-08-26T19:34:28.7218351Z [161467] URL: https://github.com/pytorch/pytorch/pull/161467
2025-08-26T19:34:28.7218879Z [161467] Checking whether to label PR as stale.
2025-08-26T19:34:28.7219409Z [161467] Skipping because PR was updated recently
2025-08-26T19:34:28.7220040Z ##[endgroup]
2025-08-26T19:34:28.7220562Z ##[group]Processing PR #161468
2025-08-26T19:34:28.7221056Z [161468] URL: https://github.com/pytorch/pytorch/pull/161468
2025-08-26T19:34:28.7221606Z [161468] Checking whether to label PR as stale.
2025-08-26T19:34:28.7222109Z [161468] Skipping because PR was updated recently
2025-08-26T19:34:28.7222742Z ##[endgroup]
2025-08-26T19:34:28.7223262Z ##[group]Processing PR #161469
2025-08-26T19:34:28.7223845Z [161469] URL: https://github.com/pytorch/pytorch/pull/161469
2025-08-26T19:34:28.7224376Z [161469] Checking whether to label PR as stale.
2025-08-26T19:34:28.7224904Z [161469] Skipping because PR was updated recently
2025-08-26T19:34:28.7225543Z ##[endgroup]
2025-08-26T19:34:28.7226058Z ##[group]Processing PR #161470
2025-08-26T19:34:28.7226553Z [161470] URL: https://github.com/pytorch/pytorch/pull/161470
2025-08-26T19:34:28.7227086Z [161470] Checking whether to label PR as stale.
2025-08-26T19:34:28.7227609Z [161470] Skipping because PR was updated recently
2025-08-26T19:34:28.7228227Z ##[endgroup]
2025-08-26T19:34:28.7228744Z ##[group]Processing PR #161471
2025-08-26T19:34:28.7229252Z [161471] URL: https://github.com/pytorch/pytorch/pull/161471
2025-08-26T19:34:28.7229777Z [161471] Checking whether to label PR as stale.
2025-08-26T19:34:28.7230295Z [161471] Skipping because PR was updated recently
2025-08-26T19:34:28.7230933Z ##[endgroup]
2025-08-26T19:34:28.7231455Z ##[group]Processing PR #161472
2025-08-26T19:34:28.7231950Z [161472] URL: https://github.com/pytorch/pytorch/pull/161472
2025-08-26T19:34:28.7232494Z [161472] Checking whether to label PR as stale.
2025-08-26T19:34:28.7233109Z [161472] Skipping because PR was updated recently
2025-08-26T19:34:28.7233727Z ##[endgroup]
2025-08-26T19:34:28.7234253Z ##[group]Processing PR #161474
2025-08-26T19:34:28.7234772Z [161474] URL: https://github.com/pytorch/pytorch/pull/161474
2025-08-26T19:34:28.7235320Z [161474] Checking whether to label PR as stale.
2025-08-26T19:34:28.7236021Z [161474] Skipping because PR was updated recently
2025-08-26T19:34:28.7236800Z ##[endgroup]
2025-08-26T19:34:28.7237376Z ##[group]Processing PR #161475
2025-08-26T19:34:28.7237884Z [161475] URL: https://github.com/pytorch/pytorch/pull/161475
2025-08-26T19:34:28.7238439Z [161475] Checking whether to label PR as stale.
2025-08-26T19:34:28.7238967Z [161475] Skipping because PR was updated recently
2025-08-26T19:34:28.7239610Z ##[endgroup]
2025-08-26T19:34:28.7240131Z ##[group]Processing PR #161476
2025-08-26T19:34:28.7240649Z [161476] URL: https://github.com/pytorch/pytorch/pull/161476
2025-08-26T19:34:28.7241208Z [161476] Checking whether to label PR as stale.
2025-08-26T19:34:28.7241726Z [161476] Skipping because PR was updated recently
2025-08-26T19:34:28.7242373Z ##[endgroup]
2025-08-26T19:34:28.7243038Z ##[group]Processing PR #161477
2025-08-26T19:34:28.7243577Z [161477] URL: https://github.com/pytorch/pytorch/pull/161477
2025-08-26T19:34:28.7244120Z [161477] Checking whether to label PR as stale.
2025-08-26T19:34:28.7244795Z [161477] Skipping because PR was updated recently
2025-08-26T19:34:28.7245443Z ##[endgroup]
2025-08-26T19:34:28.7245964Z ##[group]Processing PR #161479
2025-08-26T19:34:28.7246480Z [161479] URL: https://github.com/pytorch/pytorch/pull/161479
2025-08-26T19:34:28.7247162Z [161479] Checking whether to label PR as stale.
2025-08-26T19:34:28.7248073Z [161479] Skipping because PR was updated recently
2025-08-26T19:34:28.7248735Z ##[endgroup]
2025-08-26T19:34:28.7249274Z ##[group]Processing PR #161485
2025-08-26T19:34:28.7249793Z [161485] URL: https://github.com/pytorch/pytorch/pull/161485
2025-08-26T19:34:28.7250336Z [161485] Checking whether to label PR as stale.
2025-08-26T19:34:28.7250862Z [161485] Skipping because PR was updated recently
2025-08-26T19:34:28.7251507Z ##[endgroup]
2025-08-26T19:34:28.7252039Z ##[group]Processing PR #161486
2025-08-26T19:34:28.7252539Z [161486] URL: https://github.com/pytorch/pytorch/pull/161486
2025-08-26T19:34:28.7253091Z [161486] Checking whether to label PR as stale.
2025-08-26T19:34:28.7253607Z [161486] Skipping because PR was updated recently
2025-08-26T19:34:28.7254244Z ##[endgroup]
2025-08-26T19:34:28.7254776Z ##[group]Processing PR #161487
2025-08-26T19:34:28.7255292Z [161487] URL: https://github.com/pytorch/pytorch/pull/161487
2025-08-26T19:34:28.7255825Z [161487] Checking whether to label PR as stale.
2025-08-26T19:34:28.7256352Z [161487] Skipping because PR was updated recently
2025-08-26T19:34:28.7256995Z ##[endgroup]
2025-08-26T19:34:28.7257522Z ##[group]Processing PR #161488
2025-08-26T19:34:28.7258025Z [161488] URL: https://github.com/pytorch/pytorch/pull/161488
2025-08-26T19:34:28.7258571Z [161488] Checking whether to label PR as stale.
2025-08-26T19:34:28.7259096Z [161488] Skipping because PR was updated recently
2025-08-26T19:34:28.7259726Z ##[endgroup]
2025-08-26T19:34:28.7260258Z ##[group]Processing PR #161489
2025-08-26T19:34:28.7260773Z [161489] URL: https://github.com/pytorch/pytorch/pull/161489
2025-08-26T19:34:28.7261309Z [161489] Checking whether to label PR as stale.
2025-08-26T19:34:28.7261837Z [161489] Skipping because PR was updated recently
2025-08-26T19:34:28.7262406Z ##[endgroup]
2025-08-26T19:34:29.2289056Z ##[group]Processing PR #161491
2025-08-26T19:34:29.2289534Z [161491] URL: https://github.com/pytorch/pytorch/pull/161491
2025-08-26T19:34:29.2289941Z [161491] Checking whether to label PR as stale.
2025-08-26T19:34:29.2290308Z [161491] Skipping because PR was updated recently
2025-08-26T19:34:29.2290790Z ##[endgroup]
2025-08-26T19:34:29.2291159Z ##[group]Processing PR #161493
2025-08-26T19:34:29.2291519Z [161493] URL: https://github.com/pytorch/pytorch/pull/161493
2025-08-26T19:34:29.2292517Z [161493] Checking whether to label PR as stale.
2025-08-26T19:34:29.2293063Z [161493] Skipping because PR was updated recently
2025-08-26T19:34:29.2293811Z ##[endgroup]
2025-08-26T19:34:29.2294434Z ##[group]Processing PR #161495
2025-08-26T19:34:29.2294979Z [161495] URL: https://github.com/pytorch/pytorch/pull/161495
2025-08-26T19:34:29.2295655Z [161495] Checking whether to label PR as stale.
2025-08-26T19:34:29.2296246Z [161495] Skipping because PR was updated recently
2025-08-26T19:34:29.2296987Z ##[endgroup]
2025-08-26T19:34:29.2297582Z ##[group]Processing PR #161496
2025-08-26T19:34:29.2298175Z [161496] URL: https://github.com/pytorch/pytorch/pull/161496
2025-08-26T19:34:29.2298859Z [161496] Checking whether to label PR as stale.
2025-08-26T19:34:29.2299465Z [161496] Skipping because PR was updated recently
2025-08-26T19:34:29.2302998Z ##[endgroup]
2025-08-26T19:34:29.2303792Z ##[group]Processing PR #161497
2025-08-26T19:34:29.2304292Z [161497] URL: https://github.com/pytorch/pytorch/pull/161497
2025-08-26T19:34:29.2304950Z [161497] Checking whether to label PR as stale.
2025-08-26T19:34:29.2305478Z [161497] Skipping because PR was updated recently
2025-08-26T19:34:29.2306213Z ##[endgroup]
2025-08-26T19:34:29.2306745Z ##[group]Processing PR #161499
2025-08-26T19:34:29.2307232Z [161499] URL: https://github.com/pytorch/pytorch/pull/161499
2025-08-26T19:34:29.2308073Z [161499] Checking whether to label PR as stale.
2025-08-26T19:34:29.2308650Z [161499] Skipping because PR was updated recently
2025-08-26T19:34:29.2309378Z ##[endgroup]
2025-08-26T19:34:29.2309939Z ##[group]Processing PR #161504
2025-08-26T19:34:29.2310446Z [161504] URL: https://github.com/pytorch/pytorch/pull/161504
2025-08-26T19:34:29.2311065Z [161504] Checking whether to label PR as stale.
2025-08-26T19:34:29.2311574Z [161504] Skipping because PR was updated recently
2025-08-26T19:34:29.2312272Z ##[endgroup]
2025-08-26T19:34:29.2312758Z ##[group]Processing PR #161508
2025-08-26T19:34:29.2313282Z [161508] URL: https://github.com/pytorch/pytorch/pull/161508
2025-08-26T19:34:29.2313939Z [161508] Checking whether to label PR as stale.
2025-08-26T19:34:29.2314491Z [161508] Skipping because PR was updated recently
2025-08-26T19:34:29.2315290Z ##[endgroup]
2025-08-26T19:34:29.2315953Z ##[group]Processing PR #161511
2025-08-26T19:34:29.2316543Z [161511] URL: https://github.com/pytorch/pytorch/pull/161511
2025-08-26T19:34:29.2317214Z [161511] Checking whether to label PR as stale.
2025-08-26T19:34:29.2317802Z [161511] Skipping because PR was updated recently
2025-08-26T19:34:29.2318571Z ##[endgroup]
2025-08-26T19:34:29.2319151Z ##[group]Processing PR #161512
2025-08-26T19:34:29.2319704Z [161512] URL: https://github.com/pytorch/pytorch/pull/161512
2025-08-26T19:34:29.2320378Z [161512] Checking whether to label PR as stale.
2025-08-26T19:34:29.2321224Z [161512] Skipping because PR was updated recently
2025-08-26T19:34:29.2321993Z ##[endgroup]
2025-08-26T19:34:29.2322591Z ##[group]Processing PR #161517
2025-08-26T19:34:29.2323171Z [161517] URL: https://github.com/pytorch/pytorch/pull/161517
2025-08-26T19:34:29.2323865Z [161517] Checking whether to label PR as stale.
2025-08-26T19:34:29.2324467Z [161517] Skipping because PR was updated recently
2025-08-26T19:34:29.2325237Z ##[endgroup]
2025-08-26T19:34:29.2325828Z ##[group]Processing PR #161520
2025-08-26T19:34:29.2326399Z [161520] URL: https://github.com/pytorch/pytorch/pull/161520
2025-08-26T19:34:29.2327030Z [161520] Checking whether to label PR as stale.
2025-08-26T19:34:29.2327685Z [161520] Skipping because PR was updated recently
2025-08-26T19:34:29.2328556Z ##[endgroup]
2025-08-26T19:34:29.2329198Z ##[group]Processing PR #161521
2025-08-26T19:34:29.2329835Z [161521] URL: https://github.com/pytorch/pytorch/pull/161521
2025-08-26T19:34:29.2330579Z [161521] Checking whether to label PR as stale.
2025-08-26T19:34:29.2331247Z [161521] Skipping because PR was updated recently
2025-08-26T19:34:29.2332114Z ##[endgroup]
2025-08-26T19:34:29.2332773Z ##[group]Processing PR #161522
2025-08-26T19:34:29.2333477Z [161522] URL: https://github.com/pytorch/pytorch/pull/161522
2025-08-26T19:34:29.2334141Z [161522] Checking whether to label PR as stale.
2025-08-26T19:34:29.2334796Z [161522] Skipping because PR was updated recently
2025-08-26T19:34:29.2335787Z ##[endgroup]
2025-08-26T19:34:29.2336439Z ##[group]Processing PR #161526
2025-08-26T19:34:29.2337042Z [161526] URL: https://github.com/pytorch/pytorch/pull/161526
2025-08-26T19:34:29.2337723Z [161526] Checking whether to label PR as stale.
2025-08-26T19:34:29.2338326Z [161526] Skipping because PR was updated recently
2025-08-26T19:34:29.2339098Z ##[endgroup]
2025-08-26T19:34:29.2339714Z ##[group]Processing PR #161527
2025-08-26T19:34:29.2340292Z [161527] URL: https://github.com/pytorch/pytorch/pull/161527
2025-08-26T19:34:29.2340976Z [161527] Checking whether to label PR as stale.
2025-08-26T19:34:29.2341552Z [161527] Skipping because PR was updated recently
2025-08-26T19:34:29.2342316Z ##[endgroup]
2025-08-26T19:34:29.2342920Z ##[group]Processing PR #161528
2025-08-26T19:34:29.2343498Z [161528] URL: https://github.com/pytorch/pytorch/pull/161528
2025-08-26T19:34:29.2344245Z [161528] Checking whether to label PR as stale.
2025-08-26T19:34:29.2344828Z [161528] Skipping because PR was updated recently
2025-08-26T19:34:29.2345579Z ##[endgroup]
2025-08-26T19:34:29.2346152Z ##[group]Processing PR #161529
2025-08-26T19:34:29.2346869Z [161529] URL: https://github.com/pytorch/pytorch/pull/161529
2025-08-26T19:34:29.2347583Z [161529] Checking whether to label PR as stale.
2025-08-26T19:34:29.2348203Z [161529] Skipping because PR was updated recently
2025-08-26T19:34:29.2348988Z ##[endgroup]
2025-08-26T19:34:29.2349616Z ##[group]Processing PR #161530
2025-08-26T19:34:29.2350209Z [161530] URL: https://github.com/pytorch/pytorch/pull/161530
2025-08-26T19:34:29.2350877Z [161530] Checking whether to label PR as stale.
2025-08-26T19:34:29.2351512Z [161530] Skipping because PR was updated recently
2025-08-26T19:34:29.2352325Z ##[endgroup]
2025-08-26T19:34:29.2352943Z ##[group]Processing PR #161531
2025-08-26T19:34:29.2353541Z [161531] URL: https://github.com/pytorch/pytorch/pull/161531
2025-08-26T19:34:29.2354269Z [161531] Checking whether to label PR as stale.
2025-08-26T19:34:29.2354905Z [161531] Skipping because PR was updated recently
2025-08-26T19:34:29.2355721Z ##[endgroup]
2025-08-26T19:34:29.2356369Z ##[group]Processing PR #161532
2025-08-26T19:34:29.2356969Z [161532] URL: https://github.com/pytorch/pytorch/pull/161532
2025-08-26T19:34:29.2357693Z [161532] Checking whether to label PR as stale.
2025-08-26T19:34:29.2358320Z [161532] Skipping because PR was updated recently
2025-08-26T19:34:29.2359153Z ##[endgroup]
2025-08-26T19:34:29.2359802Z ##[group]Processing PR #161533
2025-08-26T19:34:29.2360423Z [161533] URL: https://github.com/pytorch/pytorch/pull/161533
2025-08-26T19:34:29.2361135Z [161533] Checking whether to label PR as stale.
2025-08-26T19:34:29.2361776Z [161533] Skipping because PR was updated recently
2025-08-26T19:34:29.2362563Z ##[endgroup]
2025-08-26T19:34:29.2362915Z Processed 1422 PRs total.
2025-08-26T19:34:29.2444891Z A job completed hook has been configured by the self-hosted runner administrator
2025-08-26T19:34:29.2465520Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh'
2025-08-26T19:34:29.2472801Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-08-26T19:34:29.2473329Z ##[endgroup]
2025-08-26T19:34:29.2643276Z [!ALERT!] Swap in detected! [!ALERT!]
2025-08-26T19:34:40.3864940Z [!ALERT!] Swap out detected [!ALERT!]
2025-08-26T19:34:58.2153706Z Cleaning up orphan processes