2024-06-26T04:40:13.3576018Z Current runner version: '2.317.0' 2024-06-26T04:40:13.3582087Z Runner name: 'i-0632512ac6b959bd6' 2024-06-26T04:40:13.3582826Z Runner group name: 'Default' 2024-06-26T04:40:13.3583577Z Machine name: 'ip-10-0-76-67' 2024-06-26T04:40:13.3587533Z ##[group]GITHUB_TOKEN Permissions 2024-06-26T04:40:13.3589411Z Actions: read 2024-06-26T04:40:13.3589821Z Attestations: read 2024-06-26T04:40:13.3590270Z Checks: read 2024-06-26T04:40:13.3590721Z Contents: read 2024-06-26T04:40:13.3591277Z Deployments: read 2024-06-26T04:40:13.3591728Z Discussions: read 2024-06-26T04:40:13.3592215Z Issues: read 2024-06-26T04:40:13.3592589Z Metadata: read 2024-06-26T04:40:13.3593011Z Packages: read 2024-06-26T04:40:13.3593444Z Pages: read 2024-06-26T04:40:13.3593816Z PullRequests: read 2024-06-26T04:40:13.3594283Z RepositoryProjects: read 2024-06-26T04:40:13.3594856Z SecurityEvents: read 2024-06-26T04:40:13.3595270Z Statuses: read 2024-06-26T04:40:13.3595698Z ##[endgroup] 2024-06-26T04:40:13.3599263Z Secret source: Actions 2024-06-26T04:40:13.3600045Z Prepare workflow directory 2024-06-26T04:40:13.4591920Z Prepare all required actions 2024-06-26T04:40:13.4773596Z Uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@refs/tags/ciflow/trunk/129470 (b8c4c54d347aa776934c60784e35936878ef18dc) 2024-06-26T04:40:13.4778666Z ##[group] Inputs 2024-06-26T04:40:13.4779212Z user_name: pytorch-bot[bot] 2024-06-26T04:40:13.4779731Z curr_branch: ciflow/trunk/129470 2024-06-26T04:40:13.4780319Z issue_number: 5132 2024-06-26T04:40:13.4780908Z ##[endgroup] 2024-06-26T04:40:13.4781698Z Complete job name: get-label-type / runner-determinator 2024-06-26T04:40:13.5350744Z A job started hook has been configured by the self-hosted runner administrator 2024-06-26T04:40:13.5629709Z ##[group]Run '/home/ec2-user/runner-scripts/cleanup.sh' 2024-06-26T04:40:13.5641211Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T04:40:13.5641841Z ##[endgroup] 2024-06-26T04:40:14.2451707Z ##[group]Run cat < get_workflow_type.py 2024-06-26T04:40:14.2452527Z cat < get_workflow_type.py 2024-06-26T04:40:14.2453017Z import json 2024-06-26T04:40:14.2453437Z from argparse import ArgumentParser 2024-06-26T04:40:14.2453966Z from typing import Any, Tuple 2024-06-26T04:40:14.2454412Z  2024-06-26T04:40:14.2454740Z from github import Auth, Github 2024-06-26T04:40:14.2455250Z from github.Issue import Issue 2024-06-26T04:40:14.2455702Z  2024-06-26T04:40:14.2455972Z  2024-06-26T04:40:14.2456371Z WORKFLOW_LABEL_META = "" # use meta runners 2024-06-26T04:40:14.2457107Z WORKFLOW_LABEL_LF = "lf." # use runners from the linux foundation 2024-06-26T04:40:14.2457778Z LABEL_TYPE_KEY = "label_type" 2024-06-26T04:40:14.2458258Z MESSAGE_KEY = "message" 2024-06-26T04:40:14.2458862Z MESSAGE = "" # Debug message to return to the caller 2024-06-26T04:40:14.2459425Z  2024-06-26T04:40:14.2459712Z  2024-06-26T04:40:14.2460039Z def parse_args() -> Any: 2024-06-26T04:40:14.2460752Z  parser = ArgumentParser("Get dynamic rollout settings") 2024-06-26T04:40:14.2461717Z  parser.add_argument("--github-token", type=str, required=True, help="GitHub token") 2024-06-26T04:40:14.2462518Z  parser.add_argument( 2024-06-26T04:40:14.2462949Z  "--github-repo", 2024-06-26T04:40:14.2463374Z  type=str, 2024-06-26T04:40:14.2463766Z  required=False, 2024-06-26T04:40:14.2464228Z  default="pytorch/test-infra", 2024-06-26T04:40:14.2464800Z  help="GitHub repo to get the issue", 2024-06-26T04:40:14.2465314Z  ) 2024-06-26T04:40:14.2465663Z  parser.add_argument( 2024-06-26T04:40:14.2466317Z  "--github-issue", type=int, required=True, help="GitHub issue umber" 2024-06-26T04:40:14.2466999Z  ) 2024-06-26T04:40:14.2467371Z  parser.add_argument( 2024-06-26T04:40:14.2468154Z  "--github-user", type=str, required=True, help="GitHub username" 2024-06-26T04:40:14.2468800Z  ) 2024-06-26T04:40:14.2469275Z  parser.add_argument( 2024-06-26T04:40:14.2469956Z  "--github-branch", type=str, required=True, help="Current GitHub branch" 2024-06-26T04:40:14.2470649Z  ) 2024-06-26T04:40:14.2470958Z  2024-06-26T04:40:14.2471282Z  return parser.parse_args() 2024-06-26T04:40:14.2471731Z  2024-06-26T04:40:14.2472011Z  2024-06-26T04:40:14.2472410Z def get_gh_client(github_token: str) -> Github: 2024-06-26T04:40:14.2473004Z  auth = Auth.Token(github_token) 2024-06-26T04:40:14.2473504Z  return Github(auth=auth) 2024-06-26T04:40:14.2473931Z  2024-06-26T04:40:14.2474202Z  2024-06-26T04:40:14.2474697Z def get_issue(gh: Github, repo: str, issue_num: int) -> Issue: 2024-06-26T04:40:14.2475354Z  repo = gh.get_repo(repo) 2024-06-26T04:40:14.2475873Z  return repo.get_issue(number=issue_num) 2024-06-26T04:40:14.2476373Z  2024-06-26T04:40:14.2476655Z  2024-06-26T04:40:14.2477042Z def is_exception_branch(branch: str) -> bool: 2024-06-26T04:40:14.2477820Z  return branch.split("/")[0] in {"main", "nightly", "release", "landchecks"} 2024-06-26T04:40:14.2478499Z  2024-06-26T04:40:14.2478769Z  2024-06-26T04:40:14.2479301Z def get_workflow_type(issue: Issue, username: str) -> Tuple[str, str]: 2024-06-26T04:40:14.2479996Z  formatted_username = ( 2024-06-26T04:40:14.2480656Z  f"@{username}" # Add the @ symbol to match the format in the issue body 2024-06-26T04:40:14.2481322Z  ) 2024-06-26T04:40:14.2481629Z  2024-06-26T04:40:14.2481981Z  try: 2024-06-26T04:40:14.2482452Z  user_list = issue.get_comments()[0].body.split() 2024-06-26T04:40:14.2483013Z  2024-06-26T04:40:14.2483329Z  if user_list[0] == "!": 2024-06-26T04:40:14.2484052Z  MESSAGE = "LF Workflows are disabled for everyone. Using meta runners." 2024-06-26T04:40:14.2484848Z  return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:14.2485413Z  elif user_list[0] == "*": 2024-06-26T04:40:14.2486117Z  MESSAGE = "LF Workflows are enabled for everyone. Using LF runners." 2024-06-26T04:40:14.2486897Z  return WORKFLOW_LABEL_LF, MESSAGE 2024-06-26T04:40:14.2487675Z  elif formatted_username in user_list: 2024-06-26T04:40:14.2488459Z  MESSAGE = f"LF Workflows are enabled for {username}. Using LF runners." 2024-06-26T04:40:14.2489258Z  return WORKFLOW_LABEL_LF, MESSAGE 2024-06-26T04:40:14.2489782Z  else: 2024-06-26T04:40:14.2490438Z  MESSAGE = f"LF Workflows are disabled for {username}. Using meta runners." 2024-06-26T04:40:14.2491252Z  return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:14.2491818Z  except Exception as e: 2024-06-26T04:40:14.2492678Z  MESSAGE = f"Failed to get determine workflow type. Falling back to meta runners. Exception: {e}" 2024-06-26T04:40:14.2493598Z  return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:14.2494108Z  2024-06-26T04:40:14.2494406Z  2024-06-26T04:40:14.2494713Z def main() -> None: 2024-06-26T04:40:14.2495139Z  args = parse_args() 2024-06-26T04:40:14.2495557Z  2024-06-26T04:40:14.2495960Z  if is_exception_branch(args.github_branch): 2024-06-26T04:40:14.2496519Z  output = { 2024-06-26T04:40:14.2497022Z  LABEL_TYPE_KEY: WORKFLOW_LABEL_META, 2024-06-26T04:40:14.2497893Z  MESSAGE_KEY: f"Exception branch: '{args.github_branch}', using meta runners", 2024-06-26T04:40:14.2498764Z  } 2024-06-26T04:40:14.2499109Z  else: 2024-06-26T04:40:14.2499441Z  try: 2024-06-26T04:40:14.2499908Z  gh = get_gh_client(args.github_token) 2024-06-26T04:40:14.2500870Z  # The default issue we use - https://github.com/pytorch/test-infra/issues/5132 2024-06-26T04:40:14.2501832Z  issue = get_issue(gh, args.github_repo, args.github_issue) 2024-06-26T04:40:14.2502678Z  label_type, message = get_workflow_type(issue, args.github_user) 2024-06-26T04:40:14.2503366Z  output = { 2024-06-26T04:40:14.2503853Z  LABEL_TYPE_KEY: label_type, 2024-06-26T04:40:14.2504403Z  MESSAGE_KEY: message, 2024-06-26T04:40:14.2504898Z  } 2024-06-26T04:40:14.2505355Z  except Exception as e: 2024-06-26T04:40:14.2505839Z  output = { 2024-06-26T04:40:14.2506346Z  LABEL_TYPE_KEY: WORKFLOW_LABEL_META, 2024-06-26T04:40:14.2507230Z  MESSAGE_KEY: f"Failed to get issue. Falling back to meta runners. Exception: {e}", 2024-06-26T04:40:14.2508014Z  } 2024-06-26T04:40:14.2508366Z  2024-06-26T04:40:14.2508719Z  json_output = json.dumps(output) 2024-06-26T04:40:14.2509227Z  print(json_output) 2024-06-26T04:40:14.2509631Z  2024-06-26T04:40:14.2509908Z  2024-06-26T04:40:14.2510229Z if __name__ == "__main__": 2024-06-26T04:40:14.2510660Z  main() 2024-06-26T04:40:14.2510985Z EOF 2024-06-26T04:40:14.2511331Z cat get_workflow_type.py 2024-06-26T04:40:14.2519301Z shell: /usr/bin/bash -e {0} 2024-06-26T04:40:14.2519701Z env: 2024-06-26T04:40:14.2520421Z GITHUB_TOKEN: *** 2024-06-26T04:40:14.2520796Z ISSUE_NUMBER: 5132 2024-06-26T04:40:14.2521174Z USERNAME: pytorch-bot[bot] 2024-06-26T04:40:14.2521572Z ##[endgroup] 2024-06-26T04:40:14.2825204Z import json 2024-06-26T04:40:14.2826816Z from argparse import ArgumentParser 2024-06-26T04:40:14.2827344Z from typing import Any, Tuple 2024-06-26T04:40:14.2827636Z 2024-06-26T04:40:14.2827920Z from github import Auth, Github 2024-06-26T04:40:14.2828380Z from github.Issue import Issue 2024-06-26T04:40:14.2828686Z 2024-06-26T04:40:14.2828693Z 2024-06-26T04:40:14.2828883Z WORKFLOW_LABEL_META = "" # use meta runners 2024-06-26T04:40:14.2829553Z WORKFLOW_LABEL_LF = "lf." # use runners from the linux foundation 2024-06-26T04:40:14.2830178Z LABEL_TYPE_KEY = "label_type" 2024-06-26T04:40:14.2830606Z MESSAGE_KEY = "message" 2024-06-26T04:40:14.2831085Z MESSAGE = "" # Debug message to return to the caller 2024-06-26T04:40:14.2831492Z 2024-06-26T04:40:14.2831500Z 2024-06-26T04:40:14.2831809Z def parse_args() -> Any: 2024-06-26T04:40:14.2832338Z parser = ArgumentParser("Get dynamic rollout settings") 2024-06-26T04:40:14.2833296Z parser.add_argument("--github-token", type=str, required=True, help="GitHub token") 2024-06-26T04:40:14.2834028Z parser.add_argument( 2024-06-26T04:40:14.2834475Z "--github-repo", 2024-06-26T04:40:14.2834855Z type=str, 2024-06-26T04:40:14.2835187Z required=False, 2024-06-26T04:40:14.2835636Z default="pytorch/test-infra", 2024-06-26T04:40:14.2836146Z help="GitHub repo to get the issue", 2024-06-26T04:40:14.2836605Z ) 2024-06-26T04:40:14.2836921Z parser.add_argument( 2024-06-26T04:40:14.2837566Z "--github-issue", type=int, required=True, help="GitHub issue umber" 2024-06-26T04:40:14.2838179Z ) 2024-06-26T04:40:14.2838489Z parser.add_argument( 2024-06-26T04:40:14.2839104Z "--github-user", type=str, required=True, help="GitHub username" 2024-06-26T04:40:14.2839686Z ) 2024-06-26T04:40:14.2840004Z parser.add_argument( 2024-06-26T04:40:14.2840679Z "--github-branch", type=str, required=True, help="Current GitHub branch" 2024-06-26T04:40:14.2841517Z ) 2024-06-26T04:40:14.2841700Z 2024-06-26T04:40:14.2841858Z return parser.parse_args() 2024-06-26T04:40:14.2842164Z 2024-06-26T04:40:14.2842171Z 2024-06-26T04:40:14.2842451Z def get_gh_client(github_token: str) -> Github: 2024-06-26T04:40:14.2842990Z auth = Auth.Token(github_token) 2024-06-26T04:40:14.2843437Z return Github(auth=auth) 2024-06-26T04:40:14.2843719Z 2024-06-26T04:40:14.2843726Z 2024-06-26T04:40:14.2844073Z def get_issue(gh: Github, repo: str, issue_num: int) -> Issue: 2024-06-26T04:40:14.2844679Z repo = gh.get_repo(repo) 2024-06-26T04:40:14.2845120Z return repo.get_issue(number=issue_num) 2024-06-26T04:40:14.2845484Z 2024-06-26T04:40:14.2845490Z 2024-06-26T04:40:14.2845740Z def is_exception_branch(branch: str) -> bool: 2024-06-26T04:40:14.2846469Z return branch.split("/")[0] in {"main", "nightly", "release", "landchecks"} 2024-06-26T04:40:14.2847003Z 2024-06-26T04:40:14.2847010Z 2024-06-26T04:40:14.2847582Z def get_workflow_type(issue: Issue, username: str) -> Tuple[str, str]: 2024-06-26T04:40:14.2848229Z formatted_username = ( 2024-06-26T04:40:14.2848825Z f"@{username}" # Add the @ symbol to match the format in the issue body 2024-06-26T04:40:14.2849452Z ) 2024-06-26T04:40:14.2849621Z 2024-06-26T04:40:14.2849739Z try: 2024-06-26T04:40:14.2850141Z user_list = issue.get_comments()[0].body.split() 2024-06-26T04:40:14.2850542Z 2024-06-26T04:40:14.2850694Z if user_list[0] == "!": 2024-06-26T04:40:14.2851319Z MESSAGE = "LF Workflows are disabled for everyone. Using meta runners." 2024-06-26T04:40:14.2852040Z return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:14.2852542Z elif user_list[0] == "*": 2024-06-26T04:40:14.2853153Z MESSAGE = "LF Workflows are enabled for everyone. Using LF runners." 2024-06-26T04:40:14.2853963Z return WORKFLOW_LABEL_LF, MESSAGE 2024-06-26T04:40:14.2854510Z elif formatted_username in user_list: 2024-06-26T04:40:14.2855215Z MESSAGE = f"LF Workflows are enabled for {username}. Using LF runners." 2024-06-26T04:40:14.2855929Z return WORKFLOW_LABEL_LF, MESSAGE 2024-06-26T04:40:14.2856406Z else: 2024-06-26T04:40:14.2857094Z MESSAGE = f"LF Workflows are disabled for {username}. Using meta runners." 2024-06-26T04:40:14.2857846Z return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:14.2858353Z except Exception as e: 2024-06-26T04:40:14.2859121Z MESSAGE = f"Failed to get determine workflow type. Falling back to meta runners. Exception: {e}" 2024-06-26T04:40:14.2859963Z return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:14.2860327Z 2024-06-26T04:40:14.2860335Z 2024-06-26T04:40:14.2860623Z def main() -> None: 2024-06-26T04:40:14.2860999Z args = parse_args() 2024-06-26T04:40:14.2861244Z 2024-06-26T04:40:14.2861450Z if is_exception_branch(args.github_branch): 2024-06-26T04:40:14.2861955Z output = { 2024-06-26T04:40:14.2862370Z LABEL_TYPE_KEY: WORKFLOW_LABEL_META, 2024-06-26T04:40:14.2863192Z MESSAGE_KEY: f"Exception branch: '{args.github_branch}', using meta runners", 2024-06-26T04:40:14.2863882Z } 2024-06-26T04:40:14.2864179Z else: 2024-06-26T04:40:14.2864462Z try: 2024-06-26T04:40:14.2864843Z gh = get_gh_client(args.github_token) 2024-06-26T04:40:14.2865707Z # The default issue we use - https://github.com/pytorch/test-infra/issues/5132 2024-06-26T04:40:14.2866561Z issue = get_issue(gh, args.github_repo, args.github_issue) 2024-06-26T04:40:14.2867331Z label_type, message = get_workflow_type(issue, args.github_user) 2024-06-26T04:40:14.2867953Z output = { 2024-06-26T04:40:14.2868342Z LABEL_TYPE_KEY: label_type, 2024-06-26T04:40:14.2868841Z MESSAGE_KEY: message, 2024-06-26T04:40:14.2869280Z } 2024-06-26T04:40:14.2869612Z except Exception as e: 2024-06-26T04:40:14.2870156Z output = { 2024-06-26T04:40:14.2870588Z LABEL_TYPE_KEY: WORKFLOW_LABEL_META, 2024-06-26T04:40:14.2871375Z MESSAGE_KEY: f"Failed to get issue. Falling back to meta runners. Exception: {e}", 2024-06-26T04:40:14.2872108Z } 2024-06-26T04:40:14.2872316Z 2024-06-26T04:40:14.2872479Z json_output = json.dumps(output) 2024-06-26T04:40:14.2872938Z print(json_output) 2024-06-26T04:40:14.2873174Z 2024-06-26T04:40:14.2873180Z 2024-06-26T04:40:14.2873318Z if __name__ == "__main__": 2024-06-26T04:40:14.2873698Z main() 2024-06-26T04:40:14.2909399Z ##[group]Run python3 -m pip install urllib3==1.26.18 PyGithub==2.3.0 2024-06-26T04:40:14.2910242Z python3 -m pip install urllib3==1.26.18 PyGithub==2.3.0 2024-06-26T04:40:14.2917892Z shell: /usr/bin/bash -e {0} 2024-06-26T04:40:14.2918297Z env: 2024-06-26T04:40:14.2918912Z GITHUB_TOKEN: *** 2024-06-26T04:40:14.2919287Z ISSUE_NUMBER: 5132 2024-06-26T04:40:14.2919680Z USERNAME: pytorch-bot[bot] 2024-06-26T04:40:14.2920085Z ##[endgroup] 2024-06-26T04:40:14.9212209Z Defaulting to user installation because normal site-packages is not writeable 2024-06-26T04:40:15.0633413Z Collecting urllib3==1.26.18 2024-06-26T04:40:15.0811938Z Downloading urllib3-1.26.18-py2.py3-none-any.whl (143 kB) 2024-06-26T04:40:15.1644443Z Collecting PyGithub==2.3.0 2024-06-26T04:40:15.1700328Z Downloading PyGithub-2.3.0-py3-none-any.whl (354 kB) 2024-06-26T04:40:15.2607395Z Collecting pynacl>=1.4.0 2024-06-26T04:40:15.2650881Z Downloading PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (856 kB) 2024-06-26T04:40:15.3307711Z Collecting pyjwt[crypto]>=2.4.0 2024-06-26T04:40:15.3345433Z Downloading PyJWT-2.8.0-py3-none-any.whl (22 kB) 2024-06-26T04:40:15.4450737Z Collecting requests>=2.14.0 2024-06-26T04:40:15.4489652Z Downloading requests-2.31.0-py3-none-any.whl (62 kB) 2024-06-26T04:40:15.4999656Z Collecting Deprecated 2024-06-26T04:40:15.5038690Z Downloading Deprecated-1.2.14-py2.py3-none-any.whl (9.6 kB) 2024-06-26T04:40:15.5621894Z Collecting typing-extensions>=4.0.0 2024-06-26T04:40:15.5661442Z Downloading typing_extensions-4.7.1-py3-none-any.whl (33 kB) 2024-06-26T04:40:16.0184998Z Collecting cffi>=1.4.1 2024-06-26T04:40:16.0230864Z Downloading cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (427 kB) 2024-06-26T04:40:16.8135160Z Collecting cryptography>=3.4.0; extra == "crypto" 2024-06-26T04:40:16.8205631Z Downloading cryptography-42.0.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB) 2024-06-26T04:40:16.9322792Z Collecting idna<4,>=2.5 2024-06-26T04:40:16.9362745Z Downloading idna-3.7-py3-none-any.whl (66 kB) 2024-06-26T04:40:16.9973583Z Collecting certifi>=2017.4.17 2024-06-26T04:40:17.0013647Z Downloading certifi-2024.6.2-py3-none-any.whl (164 kB) 2024-06-26T04:40:17.2972698Z Collecting charset-normalizer<4,>=2 2024-06-26T04:40:17.3021024Z Downloading charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (136 kB) 2024-06-26T04:40:17.6596431Z Collecting wrapt<2,>=1.10 2024-06-26T04:40:17.6640950Z Downloading wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (77 kB) 2024-06-26T04:40:17.6941278Z Collecting pycparser 2024-06-26T04:40:17.6981475Z Downloading pycparser-2.21-py2.py3-none-any.whl (118 kB) 2024-06-26T04:40:17.8395353Z Installing collected packages: urllib3, pycparser, cffi, pynacl, typing-extensions, cryptography, pyjwt, idna, certifi, charset-normalizer, requests, wrapt, Deprecated, PyGithub 2024-06-26T04:40:17.8397422Z Attempting uninstall: urllib3 2024-06-26T04:40:17.8398213Z Found existing installation: urllib3 1.26.19 2024-06-26T04:40:17.8521425Z Uninstalling urllib3-1.26.19: 2024-06-26T04:40:17.8533069Z Successfully uninstalled urllib3-1.26.19 2024-06-26T04:40:18.4983441Z WARNING: The script normalizer is installed in '/home/ec2-user/.local/bin' which is not on PATH. 2024-06-26T04:40:18.4985052Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2024-06-26T04:40:18.7714197Z Successfully installed Deprecated-1.2.14 PyGithub-2.3.0 certifi-2024.6.2 cffi-1.15.1 charset-normalizer-3.3.2 cryptography-42.0.8 idna-3.7 pycparser-2.21 pyjwt-2.8.0 pynacl-1.5.0 requests-2.31.0 typing-extensions-4.7.1 urllib3-1.26.18 wrapt-1.16.0 2024-06-26T04:40:18.8319883Z ##[group]Run curr_branch="ciflow/trunk/129470" 2024-06-26T04:40:18.8320423Z curr_branch="ciflow/trunk/129470" 2024-06-26T04:40:18.8320892Z echo "Current branch is '$curr_branch'" 2024-06-26T04:40:18.8321329Z  2024-06-26T04:40:18.8321665Z output="$(python3 get_workflow_type.py \ 2024-06-26T04:40:18.8322149Z  --github-token "$GITHUB_TOKEN" \ 2024-06-26T04:40:18.8322609Z  --github-issue "$ISSUE_NUMBER" \ 2024-06-26T04:40:18.8323061Z  --github-branch "$curr_branch" \ 2024-06-26T04:40:18.8323489Z  --github-user "$USERNAME")" 2024-06-26T04:40:18.8323877Z  2024-06-26T04:40:18.8324153Z echo "Output: '${output}'" 2024-06-26T04:40:18.8324593Z  2024-06-26T04:40:18.8325052Z LABEL_TYPE=$(echo "${output}" | jq -r '.label_type') 2024-06-26T04:40:18.8325666Z echo "label-type=$LABEL_TYPE" >> "$GITHUB_OUTPUT" 2024-06-26T04:40:18.8333820Z shell: /usr/bin/bash -e {0} 2024-06-26T04:40:18.8334164Z env: 2024-06-26T04:40:18.8334935Z GITHUB_TOKEN: *** 2024-06-26T04:40:18.8335241Z ISSUE_NUMBER: 5132 2024-06-26T04:40:18.8335561Z USERNAME: pytorch-bot[bot] 2024-06-26T04:40:18.8335883Z ##[endgroup] 2024-06-26T04:40:18.8357817Z Current branch is 'ciflow/trunk/129470' 2024-06-26T04:40:19.8888385Z Output: '{"label_type": "", "message": "LF Workflows are disabled for pytorch-bot[bot]. Using meta runners."}' 2024-06-26T04:40:19.9091250Z A job completed hook has been configured by the self-hosted runner administrator 2024-06-26T04:40:19.9109918Z ##[group]Run '/home/ec2-user/runner-scripts/cleanup.sh' 2024-06-26T04:40:19.9117110Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T04:40:19.9117728Z ##[endgroup] 2024-06-26T04:40:20.6476889Z Evaluate and set job outputs 2024-06-26T04:40:20.6488757Z Cleaning up orphan processes