2024-06-26T04:40:39.3515340Z Current runner version: '2.317.0' 2024-06-26T04:40:39.3521121Z Runner name: 'i-04561a948c2beeccd' 2024-06-26T04:40:39.3521903Z Runner group name: 'Default' 2024-06-26T04:40:39.3522679Z Machine name: 'ip-10-0-16-114' 2024-06-26T04:40:39.3526702Z ##[group]GITHUB_TOKEN Permissions 2024-06-26T04:40:39.3528465Z Actions: read 2024-06-26T04:40:39.3529011Z Attestations: read 2024-06-26T04:40:39.3529451Z Checks: read 2024-06-26T04:40:39.3529943Z Contents: read 2024-06-26T04:40:39.3530426Z Deployments: read 2024-06-26T04:40:39.3530870Z Discussions: read 2024-06-26T04:40:39.3531343Z Issues: read 2024-06-26T04:40:39.3531809Z Metadata: read 2024-06-26T04:40:39.3532233Z Packages: read 2024-06-26T04:40:39.3532723Z Pages: read 2024-06-26T04:40:39.3533195Z PullRequests: read 2024-06-26T04:40:39.3533661Z RepositoryProjects: read 2024-06-26T04:40:39.3534206Z SecurityEvents: read 2024-06-26T04:40:39.3534723Z Statuses: read 2024-06-26T04:40:39.3535141Z ##[endgroup] 2024-06-26T04:40:39.3538501Z Secret source: Actions 2024-06-26T04:40:39.3539219Z Prepare workflow directory 2024-06-26T04:40:39.4520179Z Prepare all required actions 2024-06-26T04:40:39.4691279Z Uses: pytorch/pytorch/.github/workflows/_runner-determinator.yml@refs/pull/129470/merge (4b51b1a62a63a1add1b3a0f7882f5c7dc66b8f8d) 2024-06-26T04:40:39.4696409Z ##[group] Inputs 2024-06-26T04:40:39.4696962Z user_name: leslie-fang-intel 2024-06-26T04:40:39.4697657Z curr_branch: gh/leslie-fang-intel/126/head 2024-06-26T04:40:39.4698329Z issue_number: 5132 2024-06-26T04:40:39.4698787Z ##[endgroup] 2024-06-26T04:40:39.4699650Z Complete job name: get-label-type / runner-determinator 2024-06-26T04:40:39.5410639Z A job started hook has been configured by the self-hosted runner administrator 2024-06-26T04:40:39.5577931Z ##[group]Run '/home/ec2-user/runner-scripts/cleanup.sh' 2024-06-26T04:40:39.5589552Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T04:40:39.5590235Z ##[endgroup] 2024-06-26T04:40:40.1356044Z ##[group]Run cat < get_workflow_type.py 2024-06-26T04:40:40.1356783Z cat < get_workflow_type.py 2024-06-26T04:40:40.1357214Z import json 2024-06-26T04:40:40.1357576Z from argparse import ArgumentParser 2024-06-26T04:40:40.1358051Z from typing import Any, Tuple 2024-06-26T04:40:40.1358438Z  2024-06-26T04:40:40.1358724Z from github import Auth, Github 2024-06-26T04:40:40.1359169Z from github.Issue import Issue 2024-06-26T04:40:40.1359562Z  2024-06-26T04:40:40.1359791Z  2024-06-26T04:40:40.1360136Z WORKFLOW_LABEL_META = "" # use meta runners 2024-06-26T04:40:40.1360791Z WORKFLOW_LABEL_LF = "lf." # use runners from the linux foundation 2024-06-26T04:40:40.1361383Z LABEL_TYPE_KEY = "label_type" 2024-06-26T04:40:40.1361794Z MESSAGE_KEY = "message" 2024-06-26T04:40:40.1362335Z MESSAGE = "" # Debug message to return to the caller 2024-06-26T04:40:40.1362831Z  2024-06-26T04:40:40.1363073Z  2024-06-26T04:40:40.1363353Z def parse_args() -> Any: 2024-06-26T04:40:40.1363873Z  parser = ArgumentParser("Get dynamic rollout settings") 2024-06-26T04:40:40.1364704Z  parser.add_argument("--github-token", type=str, required=True, help="GitHub token") 2024-06-26T04:40:40.1365406Z  parser.add_argument( 2024-06-26T04:40:40.1365785Z  "--github-repo", 2024-06-26T04:40:40.1366157Z  type=str, 2024-06-26T04:40:40.1366498Z  required=False, 2024-06-26T04:40:40.1366901Z  default="pytorch/test-infra", 2024-06-26T04:40:40.1367405Z  help="GitHub repo to get the issue", 2024-06-26T04:40:40.1367864Z  ) 2024-06-26T04:40:40.1368148Z  parser.add_argument( 2024-06-26T04:40:40.1368738Z  "--github-issue", type=int, required=True, help="GitHub issue umber" 2024-06-26T04:40:40.1369349Z  ) 2024-06-26T04:40:40.1369657Z  parser.add_argument( 2024-06-26T04:40:40.1370356Z  "--github-user", type=str, required=True, help="GitHub username" 2024-06-26T04:40:40.1370933Z  ) 2024-06-26T04:40:40.1371337Z  parser.add_argument( 2024-06-26T04:40:40.1371934Z  "--github-branch", type=str, required=True, help="Current GitHub branch" 2024-06-26T04:40:40.1372539Z  ) 2024-06-26T04:40:40.1372807Z  2024-06-26T04:40:40.1373085Z  return parser.parse_args() 2024-06-26T04:40:40.1373477Z  2024-06-26T04:40:40.1373721Z  2024-06-26T04:40:40.1374066Z def get_gh_client(github_token: str) -> Github: 2024-06-26T04:40:40.1374592Z  auth = Auth.Token(github_token) 2024-06-26T04:40:40.1375033Z  return Github(auth=auth) 2024-06-26T04:40:40.1375399Z  2024-06-26T04:40:40.1375637Z  2024-06-26T04:40:40.1376072Z def get_issue(gh: Github, repo: str, issue_num: int) -> Issue: 2024-06-26T04:40:40.1376640Z  repo = gh.get_repo(repo) 2024-06-26T04:40:40.1377108Z  return repo.get_issue(number=issue_num) 2024-06-26T04:40:40.1377548Z  2024-06-26T04:40:40.1377777Z  2024-06-26T04:40:40.1378123Z def is_exception_branch(branch: str) -> bool: 2024-06-26T04:40:40.1378818Z  return branch.split("/")[0] in {"main", "nightly", "release", "landchecks"} 2024-06-26T04:40:40.1379418Z  2024-06-26T04:40:40.1379645Z  2024-06-26T04:40:40.1380110Z def get_workflow_type(issue: Issue, username: str) -> Tuple[str, str]: 2024-06-26T04:40:40.1380728Z  formatted_username = ( 2024-06-26T04:40:40.1381311Z  f"@{username}" # Add the @ symbol to match the format in the issue body 2024-06-26T04:40:40.1381904Z  ) 2024-06-26T04:40:40.1382168Z  2024-06-26T04:40:40.1382479Z  try: 2024-06-26T04:40:40.1382891Z  user_list = issue.get_comments()[0].body.split() 2024-06-26T04:40:40.1383383Z  2024-06-26T04:40:40.1383654Z  if user_list[0] == "!": 2024-06-26T04:40:40.1384296Z  MESSAGE = "LF Workflows are disabled for everyone. Using meta runners." 2024-06-26T04:40:40.1385110Z  return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:40.1385594Z  elif user_list[0] == "*": 2024-06-26T04:40:40.1386222Z  MESSAGE = "LF Workflows are enabled for everyone. Using LF runners." 2024-06-26T04:40:40.1386906Z  return WORKFLOW_LABEL_LF, MESSAGE 2024-06-26T04:40:40.1387503Z  elif formatted_username in user_list: 2024-06-26T04:40:40.1388214Z  MESSAGE = f"LF Workflows are enabled for {username}. Using LF runners." 2024-06-26T04:40:40.1388931Z  return WORKFLOW_LABEL_LF, MESSAGE 2024-06-26T04:40:40.1389391Z  else: 2024-06-26T04:40:40.1389953Z  MESSAGE = f"LF Workflows are disabled for {username}. Using meta runners." 2024-06-26T04:40:40.1390678Z  return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:40.1391159Z  except Exception as e: 2024-06-26T04:40:40.1391915Z  MESSAGE = f"Failed to get determine workflow type. Falling back to meta runners. Exception: {e}" 2024-06-26T04:40:40.1392721Z  return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:40.1393157Z  2024-06-26T04:40:40.1393403Z  2024-06-26T04:40:40.1393653Z def main() -> None: 2024-06-26T04:40:40.1394206Z  args = parse_args() 2024-06-26T04:40:40.1394570Z  2024-06-26T04:40:40.1394912Z  if is_exception_branch(args.github_branch): 2024-06-26T04:40:40.1395391Z  output = { 2024-06-26T04:40:40.1395821Z  LABEL_TYPE_KEY: WORKFLOW_LABEL_META, 2024-06-26T04:40:40.1396549Z  MESSAGE_KEY: f"Exception branch: '{args.github_branch}', using meta runners", 2024-06-26T04:40:40.1397338Z  } 2024-06-26T04:40:40.1397630Z  else: 2024-06-26T04:40:40.1397927Z  try: 2024-06-26T04:40:40.1398361Z  gh = get_gh_client(args.github_token) 2024-06-26T04:40:40.1399258Z  # The default issue we use - https://github.com/pytorch/test-infra/issues/5132 2024-06-26T04:40:40.1400138Z  issue = get_issue(gh, args.github_repo, args.github_issue) 2024-06-26T04:40:40.1400889Z  label_type, message = get_workflow_type(issue, args.github_user) 2024-06-26T04:40:40.1401480Z  output = { 2024-06-26T04:40:40.1401888Z  LABEL_TYPE_KEY: label_type, 2024-06-26T04:40:40.1402371Z  MESSAGE_KEY: message, 2024-06-26T04:40:40.1402792Z  } 2024-06-26T04:40:40.1403190Z  except Exception as e: 2024-06-26T04:40:40.1403591Z  output = { 2024-06-26T04:40:40.1404080Z  LABEL_TYPE_KEY: WORKFLOW_LABEL_META, 2024-06-26T04:40:40.1404858Z  MESSAGE_KEY: f"Failed to get issue. Falling back to meta runners. Exception: {e}", 2024-06-26T04:40:40.1405545Z  } 2024-06-26T04:40:40.1405829Z  2024-06-26T04:40:40.1406141Z  json_output = json.dumps(output) 2024-06-26T04:40:40.1406577Z  print(json_output) 2024-06-26T04:40:40.1406909Z  2024-06-26T04:40:40.1407147Z  2024-06-26T04:40:40.1407418Z if __name__ == "__main__": 2024-06-26T04:40:40.1407774Z  main() 2024-06-26T04:40:40.1408065Z EOF 2024-06-26T04:40:40.1408357Z cat get_workflow_type.py 2024-06-26T04:40:40.1416116Z shell: /usr/bin/bash -e {0} 2024-06-26T04:40:40.1416476Z env: 2024-06-26T04:40:40.1417159Z GITHUB_TOKEN: *** 2024-06-26T04:40:40.1417459Z ISSUE_NUMBER: 5132 2024-06-26T04:40:40.1417791Z USERNAME: leslie-fang-intel 2024-06-26T04:40:40.1418135Z ##[endgroup] 2024-06-26T04:40:40.1487583Z import json 2024-06-26T04:40:40.1488894Z from argparse import ArgumentParser 2024-06-26T04:40:40.1489327Z from typing import Any, Tuple 2024-06-26T04:40:40.1489595Z 2024-06-26T04:40:40.1489727Z from github import Auth, Github 2024-06-26T04:40:40.1490112Z from github.Issue import Issue 2024-06-26T04:40:40.1490359Z 2024-06-26T04:40:40.1490364Z 2024-06-26T04:40:40.1490538Z WORKFLOW_LABEL_META = "" # use meta runners 2024-06-26T04:40:40.1491107Z WORKFLOW_LABEL_LF = "lf." # use runners from the linux foundation 2024-06-26T04:40:40.1491655Z LABEL_TYPE_KEY = "label_type" 2024-06-26T04:40:40.1492013Z MESSAGE_KEY = "message" 2024-06-26T04:40:40.1492404Z MESSAGE = "" # Debug message to return to the caller 2024-06-26T04:40:40.1492773Z 2024-06-26T04:40:40.1492778Z 2024-06-26T04:40:40.1493053Z def parse_args() -> Any: 2024-06-26T04:40:40.1493501Z parser = ArgumentParser("Get dynamic rollout settings") 2024-06-26T04:40:40.1494311Z parser.add_argument("--github-token", type=str, required=True, help="GitHub token") 2024-06-26T04:40:40.1494955Z parser.add_argument( 2024-06-26T04:40:40.1495330Z "--github-repo", 2024-06-26T04:40:40.1495629Z type=str, 2024-06-26T04:40:40.1495914Z required=False, 2024-06-26T04:40:40.1496291Z default="pytorch/test-infra", 2024-06-26T04:40:40.1496712Z help="GitHub repo to get the issue", 2024-06-26T04:40:40.1497112Z ) 2024-06-26T04:40:40.1497365Z parser.add_argument( 2024-06-26T04:40:40.1497914Z "--github-issue", type=int, required=True, help="GitHub issue umber" 2024-06-26T04:40:40.1498455Z ) 2024-06-26T04:40:40.1498710Z parser.add_argument( 2024-06-26T04:40:40.1499230Z "--github-user", type=str, required=True, help="GitHub username" 2024-06-26T04:40:40.1499743Z ) 2024-06-26T04:40:40.1499999Z parser.add_argument( 2024-06-26T04:40:40.1500566Z "--github-branch", type=str, required=True, help="Current GitHub branch" 2024-06-26T04:40:40.1501319Z ) 2024-06-26T04:40:40.1501453Z 2024-06-26T04:40:40.1501593Z return parser.parse_args() 2024-06-26T04:40:40.1501837Z 2024-06-26T04:40:40.1501842Z 2024-06-26T04:40:40.1502086Z def get_gh_client(github_token: str) -> Github: 2024-06-26T04:40:40.1502536Z auth = Auth.Token(github_token) 2024-06-26T04:40:40.1502928Z return Github(auth=auth) 2024-06-26T04:40:40.1503156Z 2024-06-26T04:40:40.1503161Z 2024-06-26T04:40:40.1503474Z def get_issue(gh: Github, repo: str, issue_num: int) -> Issue: 2024-06-26T04:40:40.1503991Z repo = gh.get_repo(repo) 2024-06-26T04:40:40.1504377Z return repo.get_issue(number=issue_num) 2024-06-26T04:40:40.1504680Z 2024-06-26T04:40:40.1504685Z 2024-06-26T04:40:40.1505022Z def is_exception_branch(branch: str) -> bool: 2024-06-26T04:40:40.1505652Z return branch.split("/")[0] in {"main", "nightly", "release", "landchecks"} 2024-06-26T04:40:40.1506135Z 2024-06-26T04:40:40.1506141Z 2024-06-26T04:40:40.1506495Z def get_workflow_type(issue: Issue, username: str) -> Tuple[str, str]: 2024-06-26T04:40:40.1507062Z formatted_username = ( 2024-06-26T04:40:40.1507573Z f"@{username}" # Add the @ symbol to match the format in the issue body 2024-06-26T04:40:40.1508103Z ) 2024-06-26T04:40:40.1508251Z 2024-06-26T04:40:40.1508345Z try: 2024-06-26T04:40:40.1508682Z user_list = issue.get_comments()[0].body.split() 2024-06-26T04:40:40.1509029Z 2024-06-26T04:40:40.1509143Z if user_list[0] == "!": 2024-06-26T04:40:40.1509699Z MESSAGE = "LF Workflows are disabled for everyone. Using meta runners." 2024-06-26T04:40:40.1510332Z return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:40.1510754Z elif user_list[0] == "*": 2024-06-26T04:40:40.1511295Z MESSAGE = "LF Workflows are enabled for everyone. Using LF runners." 2024-06-26T04:40:40.1512000Z return WORKFLOW_LABEL_LF, MESSAGE 2024-06-26T04:40:40.1512450Z elif formatted_username in user_list: 2024-06-26T04:40:40.1513068Z MESSAGE = f"LF Workflows are enabled for {username}. Using LF runners." 2024-06-26T04:40:40.1513688Z return WORKFLOW_LABEL_LF, MESSAGE 2024-06-26T04:40:40.1514388Z else: 2024-06-26T04:40:40.1514877Z MESSAGE = f"LF Workflows are disabled for {username}. Using meta runners." 2024-06-26T04:40:40.1515834Z return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:40.1516300Z except Exception as e: 2024-06-26T04:40:40.1516968Z MESSAGE = f"Failed to get determine workflow type. Falling back to meta runners. Exception: {e}" 2024-06-26T04:40:40.1517713Z return WORKFLOW_LABEL_META, MESSAGE 2024-06-26T04:40:40.1518014Z 2024-06-26T04:40:40.1518020Z 2024-06-26T04:40:40.1518185Z def main() -> None: 2024-06-26T04:40:40.1518479Z args = parse_args() 2024-06-26T04:40:40.1518696Z 2024-06-26T04:40:40.1518869Z if is_exception_branch(args.github_branch): 2024-06-26T04:40:40.1519299Z output = { 2024-06-26T04:40:40.1519630Z LABEL_TYPE_KEY: WORKFLOW_LABEL_META, 2024-06-26T04:40:40.1520367Z MESSAGE_KEY: f"Exception branch: '{args.github_branch}', using meta runners", 2024-06-26T04:40:40.1520970Z } 2024-06-26T04:40:40.1521199Z else: 2024-06-26T04:40:40.1521442Z try: 2024-06-26T04:40:40.1521759Z gh = get_gh_client(args.github_token) 2024-06-26T04:40:40.1522500Z # The default issue we use - https://github.com/pytorch/test-infra/issues/5132 2024-06-26T04:40:40.1523270Z issue = get_issue(gh, args.github_repo, args.github_issue) 2024-06-26T04:40:40.1523937Z label_type, message = get_workflow_type(issue, args.github_user) 2024-06-26T04:40:40.1524461Z output = { 2024-06-26T04:40:40.1524800Z LABEL_TYPE_KEY: label_type, 2024-06-26T04:40:40.1525228Z MESSAGE_KEY: message, 2024-06-26T04:40:40.1525588Z } 2024-06-26T04:40:40.1525872Z except Exception as e: 2024-06-26T04:40:40.1526345Z output = { 2024-06-26T04:40:40.1526695Z LABEL_TYPE_KEY: WORKFLOW_LABEL_META, 2024-06-26T04:40:40.1527395Z MESSAGE_KEY: f"Failed to get issue. Falling back to meta runners. Exception: {e}", 2024-06-26T04:40:40.1528032Z } 2024-06-26T04:40:40.1528191Z 2024-06-26T04:40:40.1528322Z json_output = json.dumps(output) 2024-06-26T04:40:40.1528713Z print(json_output) 2024-06-26T04:40:40.1528922Z 2024-06-26T04:40:40.1528928Z 2024-06-26T04:40:40.1529038Z if __name__ == "__main__": 2024-06-26T04:40:40.1529355Z main() 2024-06-26T04:40:40.1562973Z ##[group]Run python3 -m pip install urllib3==1.26.18 PyGithub==2.3.0 2024-06-26T04:40:40.1563699Z python3 -m pip install urllib3==1.26.18 PyGithub==2.3.0 2024-06-26T04:40:40.1570982Z shell: /usr/bin/bash -e {0} 2024-06-26T04:40:40.1571319Z env: 2024-06-26T04:40:40.1571808Z GITHUB_TOKEN: *** 2024-06-26T04:40:40.1572113Z ISSUE_NUMBER: 5132 2024-06-26T04:40:40.1572429Z USERNAME: leslie-fang-intel 2024-06-26T04:40:40.1572777Z ##[endgroup] 2024-06-26T04:40:40.4113234Z Defaulting to user installation because normal site-packages is not writeable 2024-06-26T04:40:40.4298279Z Requirement already satisfied: urllib3==1.26.18 in /home/ec2-user/.local/lib/python3.7/site-packages (1.26.18) 2024-06-26T04:40:40.4488804Z Requirement already satisfied: PyGithub==2.3.0 in /home/ec2-user/.local/lib/python3.7/site-packages (2.3.0) 2024-06-26T04:40:40.4539132Z Requirement already satisfied: requests>=2.14.0 in /home/ec2-user/.local/lib/python3.7/site-packages (from PyGithub==2.3.0) (2.27.1) 2024-06-26T04:40:40.4662632Z Requirement already satisfied: Deprecated in /home/ec2-user/.local/lib/python3.7/site-packages (from PyGithub==2.3.0) (1.2.14) 2024-06-26T04:40:40.4719011Z Requirement already satisfied: pyjwt[crypto]>=2.4.0 in /home/ec2-user/.local/lib/python3.7/site-packages (from PyGithub==2.3.0) (2.8.0) 2024-06-26T04:40:40.4859032Z Requirement already satisfied: typing-extensions>=4.0.0 in /home/ec2-user/.local/lib/python3.7/site-packages (from PyGithub==2.3.0) (4.7.1) 2024-06-26T04:40:40.4867398Z Requirement already satisfied: pynacl>=1.4.0 in /home/ec2-user/.local/lib/python3.7/site-packages (from PyGithub==2.3.0) (1.5.0) 2024-06-26T04:40:40.4920710Z Requirement already satisfied: charset-normalizer~=2.0.0; python_version >= "3" in /home/ec2-user/.local/lib/python3.7/site-packages (from requests>=2.14.0->PyGithub==2.3.0) (2.0.12) 2024-06-26T04:40:40.4940104Z Requirement already satisfied: idna<4,>=2.5; python_version >= "3" in /home/ec2-user/.local/lib/python3.7/site-packages (from requests>=2.14.0->PyGithub==2.3.0) (3.7) 2024-06-26T04:40:40.4951577Z Requirement already satisfied: certifi>=2017.4.17 in /home/ec2-user/.local/lib/python3.7/site-packages (from requests>=2.14.0->PyGithub==2.3.0) (2024.6.2) 2024-06-26T04:40:40.4959918Z Requirement already satisfied: wrapt<2,>=1.10 in /home/ec2-user/.local/lib/python3.7/site-packages (from Deprecated->PyGithub==2.3.0) (1.16.0) 2024-06-26T04:40:40.4970013Z Requirement already satisfied: cryptography>=3.4.0; extra == "crypto" in /home/ec2-user/.local/lib/python3.7/site-packages (from pyjwt[crypto]>=2.4.0->PyGithub==2.3.0) (42.0.8) 2024-06-26T04:40:40.5227650Z Requirement already satisfied: cffi>=1.4.1 in /home/ec2-user/.local/lib/python3.7/site-packages (from pynacl>=1.4.0->PyGithub==2.3.0) (1.15.1) 2024-06-26T04:40:40.5238712Z Requirement already satisfied: pycparser in /home/ec2-user/.local/lib/python3.7/site-packages (from cffi>=1.4.1->pynacl>=1.4.0->PyGithub==2.3.0) (2.21) 2024-06-26T04:40:40.6121133Z ##[group]Run curr_branch="gh/leslie-fang-intel/126/head" 2024-06-26T04:40:40.6121914Z curr_branch="gh/leslie-fang-intel/126/head" 2024-06-26T04:40:40.6122479Z echo "Current branch is '$curr_branch'" 2024-06-26T04:40:40.6122981Z  2024-06-26T04:40:40.6123418Z output="$(python3 get_workflow_type.py \ 2024-06-26T04:40:40.6123949Z  --github-token "$GITHUB_TOKEN" \ 2024-06-26T04:40:40.6124479Z  --github-issue "$ISSUE_NUMBER" \ 2024-06-26T04:40:40.6125170Z  --github-branch "$curr_branch" \ 2024-06-26T04:40:40.6125638Z  --github-user "$USERNAME")" 2024-06-26T04:40:40.6126085Z  2024-06-26T04:40:40.6126448Z echo "Output: '${output}'" 2024-06-26T04:40:40.6126849Z  2024-06-26T04:40:40.6127315Z LABEL_TYPE=$(echo "${output}" | jq -r '.label_type') 2024-06-26T04:40:40.6128011Z echo "label-type=$LABEL_TYPE" >> "$GITHUB_OUTPUT" 2024-06-26T04:40:40.6135736Z shell: /usr/bin/bash -e {0} 2024-06-26T04:40:40.6136184Z env: 2024-06-26T04:40:40.6136777Z GITHUB_TOKEN: *** 2024-06-26T04:40:40.6137107Z ISSUE_NUMBER: 5132 2024-06-26T04:40:40.6137519Z USERNAME: leslie-fang-intel 2024-06-26T04:40:40.6137889Z ##[endgroup] 2024-06-26T04:40:40.6160647Z Current branch is 'gh/leslie-fang-intel/126/head' 2024-06-26T04:40:41.8603623Z Output: '{"label_type": "", "message": "LF Workflows are disabled for leslie-fang-intel. Using meta runners."}' 2024-06-26T04:40:41.8742777Z A job completed hook has been configured by the self-hosted runner administrator 2024-06-26T04:40:41.8861714Z ##[group]Run '/home/ec2-user/runner-scripts/cleanup.sh' 2024-06-26T04:40:41.8869607Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T04:40:41.8870104Z ##[endgroup] 2024-06-26T04:40:42.4068703Z Evaluate and set job outputs 2024-06-26T04:40:42.4080350Z Cleaning up orphan processes