2025-12-04T07:56:45.8615491Z Current runner version: '2.329.0' 2025-12-04T07:56:45.8647110Z ##[group]Runner Image Provisioner 2025-12-04T07:56:45.8648236Z Hosted Compute Agent 2025-12-04T07:56:45.8649351Z Version: 20251124.448 2025-12-04T07:56:45.8650379Z Commit: fda5086b43ec66ade217e5fcd18146c879571177 2025-12-04T07:56:45.8651502Z Build Date: 2025-11-24T21:16:26Z 2025-12-04T07:56:45.8652381Z ##[endgroup] 2025-12-04T07:56:45.8653341Z ##[group]Operating System 2025-12-04T07:56:45.8654153Z Ubuntu 2025-12-04T07:56:45.8654869Z 24.04.3 2025-12-04T07:56:45.8655804Z LTS 2025-12-04T07:56:45.8656597Z ##[endgroup] 2025-12-04T07:56:45.8657297Z ##[group]Runner Image 2025-12-04T07:56:45.8658242Z Image: ubuntu-24.04 2025-12-04T07:56:45.8659287Z Version: 20251126.144.1 2025-12-04T07:56:45.8660964Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20251126.144/images/ubuntu/Ubuntu2404-Readme.md 2025-12-04T07:56:45.8663764Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20251126.144 2025-12-04T07:56:45.8665579Z ##[endgroup] 2025-12-04T07:56:45.8670167Z ##[group]GITHUB_TOKEN Permissions 2025-12-04T07:56:45.8672925Z Actions: read 2025-12-04T07:56:45.8673789Z ArtifactMetadata: read 2025-12-04T07:56:45.8674631Z Attestations: read 2025-12-04T07:56:45.8675536Z Checks: read 2025-12-04T07:56:45.8676322Z Contents: read 2025-12-04T07:56:45.8677093Z Deployments: read 2025-12-04T07:56:45.8677801Z Discussions: read 2025-12-04T07:56:45.8678751Z Issues: read 2025-12-04T07:56:45.8679757Z Metadata: read 2025-12-04T07:56:45.8680497Z Models: read 2025-12-04T07:56:45.8681291Z Packages: read 2025-12-04T07:56:45.8682110Z Pages: read 2025-12-04T07:56:45.8682956Z PullRequests: read 2025-12-04T07:56:45.8683762Z RepositoryProjects: read 2025-12-04T07:56:45.8684843Z SecurityEvents: read 2025-12-04T07:56:45.8685653Z Statuses: read 2025-12-04T07:56:45.8686552Z ##[endgroup] 2025-12-04T07:56:45.8690133Z Secret source: Actions 2025-12-04T07:56:45.8692169Z Prepare workflow directory 2025-12-04T07:56:45.9155778Z Prepare all required actions 2025-12-04T07:56:45.9296560Z Uses: pytorch/pytorch/.github/workflows/_get-changed-files.yml@refs/heads/main (ffd9b0fb4355e97af82fc42cf185c3ffa0fc0a32) 2025-12-04T07:56:45.9304394Z ##[group] Inputs 2025-12-04T07:56:45.9305875Z all_files: true 2025-12-04T07:56:45.9306766Z ##[endgroup] 2025-12-04T07:56:45.9307856Z Complete job name: Get changed files / get-changed-files 2025-12-04T07:56:46.0123488Z ##[group]Run # Check if we're in a pull request context 2025-12-04T07:56:46.0124555Z # Check if we're in a pull request context 2025-12-04T07:56:46.0125384Z if [ "push" = "pull_request" ] || [ "push" = "pull_request_target" ]; then 2025-12-04T07:56:46.0126243Z  echo "Running in PR context" 2025-12-04T07:56:46.0126832Z  2025-12-04T07:56:46.0127410Z  # Get the PR number from the github context 2025-12-04T07:56:46.0128026Z  PR_NUMBER="" 2025-12-04T07:56:46.0128622Z  2025-12-04T07:56:46.0129443Z  # Check if all_files is requested 2025-12-04T07:56:46.0130082Z  if [ "true" = "true" ]; then 2025-12-04T07:56:46.0130921Z  echo "all_files input is true, returning all files" 2025-12-04T07:56:46.0131695Z  echo "changed-files=*" >> "$GITHUB_OUTPUT" 2025-12-04T07:56:46.0132380Z  else 2025-12-04T07:56:46.0133092Z  # Use gh CLI to get changed files in the PR with explicit repo 2025-12-04T07:56:46.0134461Z  CHANGED_FILES=$(gh api repos/pytorch/pytorch/pulls/$PR_NUMBER/files --paginate --jq '.[] | select(.status != "removed") | .filename' | tr '\n' ' ' | sed 's/ $//') 2025-12-04T07:56:46.0135752Z  2025-12-04T07:56:46.0136425Z  # See https://github.com/pytorch/pytorch/pull/134215#issuecomment-2332128790 2025-12-04T07:56:46.0137340Z  PYI_FILES_TO_ADD="" 2025-12-04T07:56:46.0137925Z  for file in ${CHANGED_FILES}; do 2025-12-04T07:56:46.0138591Z  if [[ "${file}" == *".pyi.in" ]]; then 2025-12-04T07:56:46.0139959Z  PYI_FILES_TO_ADD="${PYI_FILES_TO_ADD} ${file//.in/}" 2025-12-04T07:56:46.0140670Z  fi 2025-12-04T07:56:46.0141234Z  done 2025-12-04T07:56:46.0141862Z  CHANGED_FILES="${CHANGED_FILES}${PYI_FILES_TO_ADD}" 2025-12-04T07:56:46.0142565Z  2025-12-04T07:56:46.0143050Z  if [ -z "$CHANGED_FILES" ]; then 2025-12-04T07:56:46.0143785Z  echo "No changed files found, setting to '*'" 2025-12-04T07:56:46.0144474Z  CHANGED_FILES="*" 2025-12-04T07:56:46.0144990Z  fi 2025-12-04T07:56:46.0145535Z  2025-12-04T07:56:46.0146024Z  echo "Changed files: $CHANGED_FILES" 2025-12-04T07:56:46.0146779Z  echo "changed-files=$CHANGED_FILES" >> "$GITHUB_OUTPUT" 2025-12-04T07:56:46.0147485Z  fi 2025-12-04T07:56:46.0147968Z  2025-12-04T07:56:46.0148373Z else 2025-12-04T07:56:46.0149228Z  echo "Not in PR context, setting changed files to '*'" 2025-12-04T07:56:46.0150053Z  echo "changed-files=*" >> "$GITHUB_OUTPUT" 2025-12-04T07:56:46.0150661Z fi 2025-12-04T07:56:46.0420752Z shell: /usr/bin/bash -e {0} 2025-12-04T07:56:46.0421801Z env: 2025-12-04T07:56:46.0422543Z GH_TOKEN: *** 2025-12-04T07:56:46.0423047Z ##[endgroup] 2025-12-04T07:56:46.0611903Z Not in PR context, setting changed files to '*' 2025-12-04T07:56:46.0752923Z Evaluate and set job outputs 2025-12-04T07:56:46.0760261Z Set output 'changed-files' 2025-12-04T07:56:46.0762658Z Cleaning up orphan processes