Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] all_old_new_renamed_files is empty when providing a glob pattern. #467

Closed
2 tasks done
Steve-Groner opened this issue Apr 19, 2022 · 28 comments · Fixed by #483, #495 or #498
Closed
2 tasks done

[BUG] all_old_new_renamed_files is empty when providing a glob pattern. #467

Steve-Groner opened this issue Apr 19, 2022 · 28 comments · Fixed by #483, #495 or #498
Labels
bug Something isn't working

Comments

@Steve-Groner
Copy link

Steve-Groner commented Apr 19, 2022

Is this feature missing in the latest version?

  • I'm using the latest release

Is your feature request related to a problem? Please describe.

We see the new file appear in the list, but the old file name is nowhere to be found. Original filename was robot.txt

changed-files
Resolving repository path...
Retrieving changes between 0a570c11e5f8980f290d853b4f4891cc7dd9afcc (master) → 29380ed198095565b0764092090ec76e83e69b39 (master)
Getting diff...
Matching changed files: robots_files/robots-test.txt
Matching modified files: robots_files/robots-test.txt
Added files:
Copied files:
Deleted files:
Modified files:
Renamed files: robots_files/robots-test.txt
Type Changed files:
Unmerged files:
Unknown files:
All changed and modified files: robots_files/robots-test.txt
All changed files: robots_files/robots-test.txt
All modified files: robots_files/robots-test.txt

Describe the solution you'd like?

Would like to see some way of display the original filename/folder and the new filename/folder

Describe alternatives you've considered?

Haven't considered any alternatives as this tool is the source of truth

Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct
@Steve-Groner Steve-Groner added the enhancement New feature or request label Apr 19, 2022
@github-actions
Copy link
Contributor

Thanks for reporting this issue, don't forget to star this project to help us reach a wider audience.

@Steve-Groner
Copy link
Author

Was this completed? I dont see any comments that it was picked up or added to a version.

@jackton1
Copy link
Member

@Steve-Groner @hestonhoffman @mansurhamidov14 This is now available in the latest release v19.3

@Steve-Groner
Copy link
Author

It isnt working for me. I see the new line, but it is empty.

Resolving repository path...
Retrieving changes between 320bcbae9b4bcfa703d0046a62cad536fa565a53 (master) → c7f91997e5546a682413704dbe1da82be7fec3f7 (master)
Getting diff...
Matching changed files: robots_files/robots-kbb-1.txt|robots_files/robots-kbb-2.txt
Non Matching changed files: .github/workflows/process-file-changes.yml host-mappings.json
Matching modified files: robots_files/robots-kbb-1.txt|robots_files/robots-kbb-2.txt
Non Matching modified files: .github/workflows/process-file-changes.yml host-mappings.json
Added files:
Copied files:
Deleted files:
Modified files:
Renamed files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
Type Changed files:
Unmerged files:
Unknown files:
All changed and modified files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
All changed files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
All modified files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
All old & new renamed files:

@Steve-Groner
Copy link
Author

Steve-Groner commented May 19, 2022

Last line I thought should contain the list of old and new names.. Here is my github action call

` - name: Get Renamed robots.txt files

    id: renamed-files-robots-files

    uses: tj-actions/changed-files@v20

    with:

      files: ./robots_files/*`

Then consumed using:

${{ steps.renamed-files-robots-files.outputs.all_old_new_renamed_files }}

@Steve-Groner
Copy link
Author

@jackton1 See above, this doesnt appear to be working as expected.

@jackton1
Copy link
Member

jackton1 commented May 21, 2022

@Steve-Groner Can you post the entire workflow configuration you have setup and the full log output.

@stevegroner
Copy link

stevegroner commented May 21, 2022

@jackton1 Here is the action

name: Process File Changes

on:
  workflow_dispatch:
    inputs:
      environment:
        description: Account Environment
        required: true

jobs:

  Process-Files:

    runs-on: [ self-hosted ]
    defaults:
      run:
        shell: bash

    steps:

      - name: Checkout Source Code
        uses: actions/checkout@v3
        with:
          submodules: 'recursive'
          token: ${{ secrets.TOKEN }}
          fetch-depth: 0

      - name: Get Renamed robots.txt files
        id: renamed-files-robots-files
        uses: tj-actions/changed-files@v20
        with:
          files: ./robots_files/*
          old_new_files_separator: "|"

      - name: Rename Robots.txt Files
        if: steps.renamed-files-robots-files.outputs.any_changed == 'true'
        run: |
          for file in ${{ steps.renamed-files-robots-files.outputs.old_new_renamed_files }}; do
            echo $file
          done

@stevegroner
Copy link

stevegroner commented May 21, 2022

@jackton1 Here are the logs...

`2022-05-21T14:35:57.9838403Z Found online and idle self-hosted runner in the  current repository's enterprise account that matches the required labels: 'self-hosted'
2022-05-21T14:35:58.0449327Z Waiting for the runner to pick up this job...
2022-05-21T14:35:58.2273689Z Job is about to start running on the runner: cai-enterprise-ubuntu-awsactionrunners-d49hr-cdl7w (enterprise)
2022-05-21T14:36:01.9917810Z Current runner version: '2.291.1'
2022-05-21T14:36:01.9923633Z Runner name: 'cai-enterprise-ubuntu-awsactionrunners-d49hr-cdl7w'
2022-05-21T14:36:01.9924218Z Runner group name: 'CAI Enterprise Runners'
2022-05-21T14:36:01.9924955Z Machine name: 'cai-enterprise-ubuntu-awsactionrunners-d49hr-cdl7w'
2022-05-21T14:36:01.9926937Z ##[group]GITHUB_TOKEN Permissions
2022-05-21T14:36:01.9927555Z Actions: write
2022-05-21T14:36:01.9927781Z Checks: write
2022-05-21T14:36:01.9928010Z Contents: write
2022-05-21T14:36:01.9928472Z Deployments: write
2022-05-21T14:36:01.9928724Z Discussions: write
2022-05-21T14:36:01.9928957Z Issues: write
2022-05-21T14:36:01.9929180Z Metadata: read
2022-05-21T14:36:01.9929416Z Packages: write
2022-05-21T14:36:01.9929641Z Pages: write
2022-05-21T14:36:01.9929942Z PullRequests: write
2022-05-21T14:36:01.9930227Z RepositoryProjects: write
2022-05-21T14:36:01.9930511Z SecurityEvents: write
2022-05-21T14:36:01.9930766Z Statuses: write
2022-05-21T14:36:01.9931093Z ##[endgroup]
2022-05-21T14:36:01.9934375Z Prepare workflow directory
2022-05-21T14:36:02.0795653Z Prepare all required actions
2022-05-21T14:36:02.1008622Z Getting action download info
2022-05-21T14:36:02.6469672Z Download action repository 'actions/checkout@v3' (SHA:2541b1294d2704b0964813337f33b291d3f8596b)
2022-05-21T14:36:03.1736278Z Download action repository 'tj-actions/changed-files@v20' (SHA:581eef0495dd5b75a3dd93047ff9f0d42dc09370)
2022-05-21T14:36:03.5197400Z Getting action download info
2022-05-21T14:36:04.2236048Z Download action repository 'tj-actions/glob@v7.20' (SHA:95ff4236144967424139d2fb9776bb79d93afdca)
2022-05-21T14:36:04.5834366Z ##[group]Run actions/checkout@v3
2022-05-21T14:36:04.5834804Z with:
2022-05-21T14:36:04.5835049Z   submodules: recursive
2022-05-21T14:36:04.5835877Z   token: ***
2022-05-21T14:36:04.5836132Z   fetch-depth: 0
2022-05-21T14:36:04.5836400Z   repository: Consumer/SEO-AWS-TOOLS
2022-05-21T14:36:04.5837740Z   ssh-strict: true
2022-05-21T14:36:04.5838023Z   persist-credentials: true
2022-05-21T14:36:04.5838275Z   clean: true
2022-05-21T14:36:04.5838491Z   lfs: false
2022-05-21T14:36:04.5838717Z   set-safe-directory: true
2022-05-21T14:36:04.5838965Z ##[endgroup]
2022-05-21T14:36:04.9010783Z Syncing repository: Consumer/SEO-AWS-TOOLS
2022-05-21T14:36:04.9012671Z ##[group]Getting Git version info
2022-05-21T14:36:04.9013304Z Working directory is '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS'
2022-05-21T14:36:04.9013989Z [command]/usr/bin/git version
2022-05-21T14:36:04.9060789Z git version 2.36.1
2022-05-21T14:36:04.9083905Z ##[endgroup]
2022-05-21T14:36:04.9103147Z Temporarily overriding HOME='/runner/_work/_temp/71e74d4a-d44e-45a7-a6a0-01392f6f0f69' before making global git config changes
2022-05-21T14:36:04.9103838Z Adding repository directory to the temporary git global config as a safe directory
2022-05-21T14:36:04.9107020Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-21T14:36:04.9160345Z Deleting the contents of '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS'
2022-05-21T14:36:04.9163890Z ##[group]Initializing the repository
2022-05-21T14:36:04.9167461Z [command]/usr/bin/git init /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-21T14:36:04.9218425Z hint: Using 'master' as the name for the initial branch. This default branch name
2022-05-21T14:36:04.9219046Z hint: is subject to change. To configure the initial branch name to use in all
2022-05-21T14:36:04.9222194Z hint: of your new repositories, which will suppress this warning, call:
2022-05-21T14:36:04.9222837Z hint: 
2022-05-21T14:36:04.9223625Z hint: 	git config --global init.defaultBranch <name>
2022-05-21T14:36:04.9224013Z hint: 
2022-05-21T14:36:04.9224469Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2022-05-21T14:36:04.9225051Z hint: 'development'. The just-created branch can be renamed via this command:
2022-05-21T14:36:04.9225436Z hint: 
2022-05-21T14:36:04.9225771Z hint: 	git branch -m <name>
2022-05-21T14:36:04.9226317Z Initialized empty Git repository in /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/.git/
2022-05-21T14:36:04.9231788Z [command]/usr/bin/git remote add origin https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-21T14:36:04.9273063Z ##[endgroup]
2022-05-21T14:36:04.9273676Z ##[group]Disabling automatic garbage collection
2022-05-21T14:36:04.9275837Z [command]/usr/bin/git config --local gc.auto 0
2022-05-21T14:36:04.9311553Z ##[endgroup]
2022-05-21T14:36:04.9312373Z ##[group]Setting up auth
2022-05-21T14:36:04.9319267Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-21T14:36:04.9355025Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-21T14:36:04.9883245Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-21T14:36:04.9929947Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-21T14:36:05.0472208Z [command]/usr/bin/git config --local http.https://ghe.coxautoinc.com/.extraheader AUTHORIZATION: basic ***
2022-05-21T14:36:05.0529492Z ##[endgroup]
2022-05-21T14:36:05.0530029Z ##[group]Fetching the repository
2022-05-21T14:36:05.0538708Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
2022-05-21T14:36:05.2300177Z remote: Enumerating objects: 1146, done.        
2022-05-21T14:36:05.2300676Z remote: Counting objects:   0% (1/388)        
2022-05-21T14:36:05.2301048Z remote: Counting objects:   1% (4/388)        
2022-05-21T14:36:05.2301407Z remote: Counting objects:   2% (8/388)        
2022-05-21T14:36:05.2301746Z remote: Counting objects:   3% (12/388)        
2022-05-21T14:36:05.2302091Z remote: Counting objects:   4% (16/388)        
2022-05-21T14:36:05.2302438Z remote: Counting objects:   5% (20/388)        
2022-05-21T14:36:05.2302767Z remote: Counting objects:   6% (24/388)        
2022-05-21T14:36:05.2303093Z remote: Counting objects:   7% (28/388)        
2022-05-21T14:36:05.2303422Z remote: Counting objects:   8% (32/388)        
2022-05-21T14:36:05.2304451Z remote: Counting objects:   9% (35/388)        
2022-05-21T14:36:05.2304979Z remote: Counting objects:  10% (39/388)        
2022-05-21T14:36:05.2305388Z remote: Counting objects:  11% (43/388)        
2022-05-21T14:36:05.2305811Z remote: Counting objects:  12% (47/388)        
2022-05-21T14:36:05.2306222Z remote: Counting objects:  13% (51/388)        
2022-05-21T14:36:05.2306574Z remote: Counting objects:  14% (55/388)        
2022-05-21T14:36:05.2306947Z remote: Counting objects:  15% (59/388)        
2022-05-21T14:36:05.2307385Z remote: Counting objects:  16% (63/388)        
2022-05-21T14:36:05.2307793Z remote: Counting objects:  17% (66/388)        
2022-05-21T14:36:05.2308207Z remote: Counting objects:  18% (70/388)        
2022-05-21T14:36:05.2308606Z remote: Counting objects:  19% (74/388)        
2022-05-21T14:36:05.2309001Z remote: Counting objects:  20% (78/388)        
2022-05-21T14:36:05.2309377Z remote: Counting objects:  21% (82/388)        
2022-05-21T14:36:05.2309759Z remote: Counting objects:  22% (86/388)        
2022-05-21T14:36:05.2310088Z remote: Counting objects:  23% (90/388)        
2022-05-21T14:36:05.2310492Z remote: Counting objects:  24% (94/388)        
2022-05-21T14:36:05.2310894Z remote: Counting objects:  25% (97/388)        
2022-05-21T14:36:05.2311310Z remote: Counting objects:  26% (101/388)        
2022-05-21T14:36:05.2311716Z remote: Counting objects:  27% (105/388)        
2022-05-21T14:36:05.2312146Z remote: Counting objects:  28% (109/388)        
2022-05-21T14:36:05.2312526Z remote: Counting objects:  29% (113/388)        
2022-05-21T14:36:05.2312894Z remote: Counting objects:  30% (117/388)        
2022-05-21T14:36:05.2313572Z remote: Counting objects:  31% (121/388)        
2022-05-21T14:36:05.2313981Z remote: Counting objects:  32% (125/388)        
2022-05-21T14:36:05.2314252Z remote: Counting objects:  33% (129/388)        
2022-05-21T14:36:05.2314602Z remote: Counting objects:  34% (132/388)        
2022-05-21T14:36:05.2314993Z remote: Counting objects:  35% (136/388)        
2022-05-21T14:36:05.2315383Z remote: Counting objects:  36% (140/388)        
2022-05-21T14:36:05.2315629Z remote: Counting objects:  37% (144/388)        
2022-05-21T14:36:05.2315871Z remote: Counting objects:  38% (148/388)        
2022-05-21T14:36:05.2316131Z remote: Counting objects:  39% (152/388)        
2022-05-21T14:36:05.2316511Z remote: Counting objects:  40% (156/388)        
2022-05-21T14:36:05.2317007Z remote: Counting objects:  41% (160/388)        
2022-05-21T14:36:05.2317254Z remote: Counting objects:  42% (163/388)        
2022-05-21T14:36:05.2317498Z remote: Counting objects:  43% (167/388)        
2022-05-21T14:36:05.2317738Z remote: Counting objects:  44% (171/388)        
2022-05-21T14:36:05.2317963Z remote: Counting objects:  45% (175/388)        
2022-05-21T14:36:05.2318167Z remote: Counting objects:  46% (179/388)        
2022-05-21T14:36:05.2318378Z remote: Counting objects:  47% (183/388)        
2022-05-21T14:36:05.2318577Z remote: Counting objects:  48% (187/388)        
2022-05-21T14:36:05.2318778Z remote: Counting objects:  49% (191/388)        
2022-05-21T14:36:05.2318976Z remote: Counting objects:  50% (194/388)        
2022-05-21T14:36:05.2319182Z remote: Counting objects:  51% (198/388)        
2022-05-21T14:36:05.2319478Z remote: Counting objects:  52% (202/388)        
2022-05-21T14:36:05.2319811Z remote: Counting objects:  53% (206/388)        
2022-05-21T14:36:05.2320066Z remote: Counting objects:  54% (210/388)        
2022-05-21T14:36:05.2320268Z remote: Counting objects:  55% (214/388)        
2022-05-21T14:36:05.2320482Z remote: Counting objects:  56% (218/388)        
2022-05-21T14:36:05.2320753Z remote: Counting objects:  57% (222/388)        
2022-05-21T14:36:05.2320957Z remote: Counting objects:  58% (226/388)        
2022-05-21T14:36:05.2321157Z remote: Counting objects:  59% (229/388)        
2022-05-21T14:36:05.2321360Z remote: Counting objects:  60% (233/388)        
2022-05-21T14:36:05.2321570Z remote: Counting objects:  61% (237/388)        
2022-05-21T14:36:05.2321769Z remote: Counting objects:  62% (241/388)        
2022-05-21T14:36:05.2321969Z remote: Counting objects:  63% (245/388)        
2022-05-21T14:36:05.2322338Z remote: Counting objects:  64% (249/388)        
2022-05-21T14:36:05.2322542Z remote: Counting objects:  65% (253/388)        
2022-05-21T14:36:05.2322750Z remote: Counting objects:  66% (257/388)        
2022-05-21T14:36:05.2322950Z remote: Counting objects:  67% (260/388)        
2022-05-21T14:36:05.2323151Z remote: Counting objects:  68% (264/388)        
2022-05-21T14:36:05.2323399Z remote: Counting objects:  69% (268/388)        
2022-05-21T14:36:05.2323622Z remote: Counting objects:  70% (272/388)        
2022-05-21T14:36:05.2323849Z remote: Counting objects:  71% (276/388)        
2022-05-21T14:36:05.2324064Z remote: Counting objects:  72% (280/388)        
2022-05-21T14:36:05.2324271Z remote: Counting objects:  73% (284/388)        
2022-05-21T14:36:05.2324477Z remote: Counting objects:  74% (288/388)        
2022-05-21T14:36:05.2324687Z remote: Counting objects:  75% (291/388)        
2022-05-21T14:36:05.2324891Z remote: Counting objects:  76% (295/388)        
2022-05-21T14:36:05.2325094Z remote: Counting objects:  77% (299/388)        
2022-05-21T14:36:05.2325306Z remote: Counting objects:  78% (303/388)        
2022-05-21T14:36:05.2325516Z remote: Counting objects:  79% (307/388)        
2022-05-21T14:36:05.2325809Z remote: Counting objects:  80% (311/388)        
2022-05-21T14:36:05.2326012Z remote: Counting objects:  81% (315/388)        
2022-05-21T14:36:05.2326266Z remote: Counting objects:  82% (319/388)        
2022-05-21T14:36:05.2326492Z remote: Counting objects:  83% (323/388)        
2022-05-21T14:36:05.2326810Z remote: Counting objects:  84% (326/388)        
2022-05-21T14:36:05.2327049Z remote: Counting objects:  85% (330/388)        
2022-05-21T14:36:05.2327350Z remote: Counting objects:  86% (334/388)        
2022-05-21T14:36:05.2327581Z remote: Counting objects:  87% (338/388)        
2022-05-21T14:36:05.2327791Z remote: Counting objects:  88% (342/388)        
2022-05-21T14:36:05.2328000Z remote: Counting objects:  89% (346/388)        
2022-05-21T14:36:05.2328587Z remote: Counting objects:  90% (350/388)        
2022-05-21T14:36:05.2328926Z remote: Counting objects:  91% (354/388)        
2022-05-21T14:36:05.2329178Z remote: Counting objects:  92% (357/388)        
2022-05-21T14:36:05.2329523Z remote: Counting objects:  93% (361/388)        
2022-05-21T14:36:05.2329856Z remote: Counting objects:  94% (365/388)        
2022-05-21T14:36:05.2330187Z remote: Counting objects:  95% (369/388)        
2022-05-21T14:36:05.2330517Z remote: Counting objects:  96% (373/388)        
2022-05-21T14:36:05.2330853Z remote: Counting objects:  97% (377/388)        
2022-05-21T14:36:05.2331190Z remote: Counting objects:  98% (381/388)        
2022-05-21T14:36:05.2331517Z remote: Counting objects:  99% (385/388)        
2022-05-21T14:36:05.2331804Z remote: Counting objects: 100% (388/388)        
2022-05-21T14:36:05.2332032Z remote: Counting objects: 100% (388/388), done.        
2022-05-21T14:36:05.2332289Z remote: Compressing objects:   0% (1/197)        
2022-05-21T14:36:05.2332533Z remote: Compressing objects:   1% (2/197)        
2022-05-21T14:36:05.2332920Z remote: Compressing objects:   2% (4/197)        
2022-05-21T14:36:05.2333160Z remote: Compressing objects:   3% (6/197)        
2022-05-21T14:36:05.2333386Z remote: Compressing objects:   4% (8/197)        
2022-05-21T14:36:05.2333658Z remote: Compressing objects:   5% (10/197)        
2022-05-21T14:36:05.2333944Z remote: Compressing objects:   6% (12/197)        
2022-05-21T14:36:05.2334179Z remote: Compressing objects:   7% (14/197)        
2022-05-21T14:36:05.2334424Z remote: Compressing objects:   8% (16/197)        
2022-05-21T14:36:05.2334660Z remote: Compressing objects:   9% (18/197)        
2022-05-21T14:36:05.2334893Z remote: Compressing objects:  10% (20/197)        
2022-05-21T14:36:05.2335118Z remote: Compressing objects:  11% (22/197)        
2022-05-21T14:36:05.2335346Z remote: Compressing objects:  12% (24/197)        
2022-05-21T14:36:05.2335570Z remote: Compressing objects:  13% (26/197)        
2022-05-21T14:36:05.2335865Z remote: Compressing objects:  14% (28/197)        
2022-05-21T14:36:05.2336111Z remote: Compressing objects:  15% (30/197)        
2022-05-21T14:36:05.2336338Z remote: Compressing objects:  16% (32/197)        
2022-05-21T14:36:05.2336638Z remote: Compressing objects:  17% (34/197)        
2022-05-21T14:36:05.2336861Z remote: Compressing objects:  18% (36/197)        
2022-05-21T14:36:05.2337082Z remote: Compressing objects:  19% (38/197)        
2022-05-21T14:36:05.2337308Z remote: Compressing objects:  20% (40/197)        
2022-05-21T14:36:05.2337539Z remote: Compressing objects:  21% (42/197)        
2022-05-21T14:36:05.2337757Z remote: Compressing objects:  22% (44/197)        
2022-05-21T14:36:05.2337969Z remote: Compressing objects:  23% (46/197)        
2022-05-21T14:36:05.2338180Z remote: Compressing objects:  24% (48/197)        
2022-05-21T14:36:05.2338394Z remote: Compressing objects:  25% (50/197)        
2022-05-21T14:36:05.2338659Z remote: Compressing objects:  26% (52/197)        
2022-05-21T14:36:05.2338894Z remote: Compressing objects:  27% (54/197)        
2022-05-21T14:36:05.2339119Z remote: Compressing objects:  28% (56/197)        
2022-05-21T14:36:05.2339335Z remote: Compressing objects:  29% (58/197)        
2022-05-21T14:36:05.2339549Z remote: Compressing objects:  30% (60/197)        
2022-05-21T14:36:05.2339759Z remote: Compressing objects:  31% (62/197)        
2022-05-21T14:36:05.2339968Z remote: Compressing objects:  32% (64/197)        
2022-05-21T14:36:05.2340178Z remote: Compressing objects:  33% (66/197)        
2022-05-21T14:36:05.2340527Z remote: Compressing objects:  34% (67/197)        
2022-05-21T14:36:05.2340786Z remote: Compressing objects:  35% (69/197)        
2022-05-21T14:36:05.2341082Z remote: Compressing objects:  36% (71/197)        
2022-05-21T14:36:05.2341299Z remote: Compressing objects:  37% (73/197)        
2022-05-21T14:36:05.2341514Z remote: Compressing objects:  38% (75/197)        
2022-05-21T14:36:05.2341727Z remote: Compressing objects:  39% (77/197)        
2022-05-21T14:36:05.2341968Z remote: Compressing objects:  40% (79/197)        
2022-05-21T14:36:05.2342241Z remote: Compressing objects:  41% (81/197)        
2022-05-21T14:36:05.2342454Z remote: Compressing objects:  42% (83/197)        
2022-05-21T14:36:05.2342664Z remote: Compressing objects:  43% (85/197)        
2022-05-21T14:36:05.2342875Z remote: Compressing objects:  44% (87/197)        
2022-05-21T14:36:05.2343088Z remote: Compressing objects:  45% (89/197)        
2022-05-21T14:36:05.2343300Z remote: Compressing objects:  46% (91/197)        
2022-05-21T14:36:05.2343569Z remote: Compressing objects:  47% (93/197)        
2022-05-21T14:36:05.2343793Z remote: Compressing objects:  48% (95/197)        
2022-05-21T14:36:05.2344003Z remote: Compressing objects:  49% (97/197)        
2022-05-21T14:36:05.2344213Z remote: Compressing objects:  50% (99/197)        
2022-05-21T14:36:05.2344433Z remote: Compressing objects:  51% (101/197)        
2022-05-21T14:36:05.2344666Z remote: Compressing objects:  52% (103/197)        
2022-05-21T14:36:05.2344940Z remote: Compressing objects:  53% (105/197)        
2022-05-21T14:36:05.2345176Z remote: Compressing objects:  54% (107/197)        
2022-05-21T14:36:05.2345403Z remote: Compressing objects:  55% (109/197)        
2022-05-21T14:36:05.2345629Z remote: Compressing objects:  56% (111/197)        
2022-05-21T14:36:05.2345849Z remote: Compressing objects:  57% (113/197)        
2022-05-21T14:36:05.2346063Z remote: Compressing objects:  58% (115/197)        
2022-05-21T14:36:05.2346280Z remote: Compressing objects:  59% (117/197)        
2022-05-21T14:36:05.2346498Z remote: Compressing objects:  60% (119/197)        
2022-05-21T14:36:05.2346716Z remote: Compressing objects:  61% (121/197)        
2022-05-21T14:36:05.2346941Z remote: Compressing objects:  62% (123/197)        
2022-05-21T14:36:05.2347153Z remote: Compressing objects:  63% (125/197)        
2022-05-21T14:36:05.2347364Z remote: Compressing objects:  64% (127/197)        
2022-05-21T14:36:05.2347573Z remote: Compressing objects:  65% (129/197)        
2022-05-21T14:36:05.2347826Z remote: Compressing objects:  66% (131/197)        
2022-05-21T14:36:05.2348072Z remote: Compressing objects:  67% (132/197)        
2022-05-21T14:36:05.2348296Z remote: Compressing objects:  68% (134/197)        
2022-05-21T14:36:05.2348513Z remote: Compressing objects:  69% (136/197)        
2022-05-21T14:36:05.2348848Z remote: Compressing objects:  70% (138/197)        
2022-05-21T14:36:05.2349196Z remote: Compressing objects:  71% (140/197)        
2022-05-21T14:36:05.2349539Z remote: Compressing objects:  72% (142/197)        
2022-05-21T14:36:05.2349877Z remote: Compressing objects:  73% (144/197)        
2022-05-21T14:36:05.2350227Z remote: Compressing objects:  74% (146/197)        
2022-05-21T14:36:05.2350587Z remote: Compressing objects:  75% (148/197)        
2022-05-21T14:36:05.2350935Z remote: Compressing objects:  76% (150/197)        
2022-05-21T14:36:05.2351278Z remote: Compressing objects:  77% (152/197)        
2022-05-21T14:36:05.2351621Z remote: Compressing objects:  78% (154/197)        
2022-05-21T14:36:05.2351962Z remote: Compressing objects:  79% (156/197)        
2022-05-21T14:36:05.2352318Z remote: Compressing objects:  80% (158/197)        
2022-05-21T14:36:05.2352671Z remote: Compressing objects:  81% (160/197)        
2022-05-21T14:36:05.2353017Z remote: Compressing objects:  82% (162/197)        
2022-05-21T14:36:05.2353359Z remote: Compressing objects:  83% (164/197)        
2022-05-21T14:36:05.2353884Z remote: Compressing objects:  84% (166/197)        
2022-05-21T14:36:05.2354229Z remote: Compressing objects:  85% (168/197)        
2022-05-21T14:36:05.2354571Z remote: Compressing objects:  86% (170/197)        
2022-05-21T14:36:05.2354926Z remote: Compressing objects:  87% (172/197)        
2022-05-21T14:36:05.2355263Z remote: Compressing objects:  88% (174/197)        
2022-05-21T14:36:05.2355546Z remote: Compressing objects:  89% (176/197)        
2022-05-21T14:36:05.2355925Z remote: Compressing objects:  90% (178/197)        
2022-05-21T14:36:05.2356268Z remote: Compressing objects:  91% (180/197)        
2022-05-21T14:36:05.2356829Z remote: Compressing objects:  92% (182/197)        
2022-05-21T14:36:05.2357143Z remote: Compressing objects:  93% (184/197)        
2022-05-21T14:36:05.2357434Z remote: Compressing objects:  94% (186/197)        
2022-05-21T14:36:05.2357744Z remote: Compressing objects:  95% (188/197)        
2022-05-21T14:36:05.2358056Z remote: Compressing objects:  96% (190/197)        
2022-05-21T14:36:05.2358378Z remote: Compressing objects:  97% (192/197)        
2022-05-21T14:36:05.2358747Z remote: Compressing objects:  98% (194/197)        
2022-05-21T14:36:05.2359078Z remote: Compressing objects:  99% (196/197)        
2022-05-21T14:36:05.2359319Z remote: Compressing objects: 100% (197/197)        
2022-05-21T14:36:05.2359642Z remote: Compressing objects: 100% (197/197), done.        
2022-05-21T14:36:05.2359947Z Receiving objects:   0% (1/1146)
2022-05-21T14:36:05.2360207Z Receiving objects:   1% (12/1146)
2022-05-21T14:36:05.2360601Z Receiving objects:   2% (23/1146)
2022-05-21T14:36:05.2360818Z Receiving objects:   3% (35/1146)
2022-05-21T14:36:05.2361083Z Receiving objects:   4% (46/1146)
2022-05-21T14:36:05.2361291Z Receiving objects:   5% (58/1146)
2022-05-21T14:36:05.2361532Z Receiving objects:   6% (69/1146)
2022-05-21T14:36:05.2361721Z Receiving objects:   7% (81/1146)
2022-05-21T14:36:05.2361914Z Receiving objects:   8% (92/1146)
2022-05-21T14:36:05.2362102Z Receiving objects:   9% (104/1146)
2022-05-21T14:36:05.2362315Z Receiving objects:  10% (115/1146)
2022-05-21T14:36:05.2362611Z Receiving objects:  11% (127/1146)
2022-05-21T14:36:05.2362802Z Receiving objects:  12% (138/1146)
2022-05-21T14:36:05.2362992Z Receiving objects:  13% (149/1146)
2022-05-21T14:36:05.2363181Z Receiving objects:  14% (161/1146)
2022-05-21T14:36:05.2363458Z Receiving objects:  15% (172/1146)
2022-05-21T14:36:05.2363666Z Receiving objects:  16% (184/1146)
2022-05-21T14:36:05.2363861Z Receiving objects:  17% (195/1146)
2022-05-21T14:36:05.2364053Z Receiving objects:  18% (207/1146)
2022-05-21T14:36:05.2364240Z Receiving objects:  19% (218/1146)
2022-05-21T14:36:05.2364426Z Receiving objects:  20% (230/1146)
2022-05-21T14:36:05.2364612Z Receiving objects:  21% (241/1146)
2022-05-21T14:36:05.2364806Z Receiving objects:  22% (253/1146)
2022-05-21T14:36:05.2365006Z Receiving objects:  23% (264/1146)
2022-05-21T14:36:05.2365301Z Receiving objects:  24% (276/1146)
2022-05-21T14:36:05.2365494Z Receiving objects:  25% (287/1146)
2022-05-21T14:36:05.2365682Z Receiving objects:  26% (298/1146)
2022-05-21T14:36:05.2365924Z Receiving objects:  27% (310/1146)
2022-05-21T14:36:05.2366200Z Receiving objects:  28% (321/1146)
2022-05-21T14:36:05.2366388Z Receiving objects:  29% (333/1146)
2022-05-21T14:36:05.2366580Z Receiving objects:  30% (344/1146)
2022-05-21T14:36:05.2366766Z Receiving objects:  31% (356/1146)
2022-05-21T14:36:05.2367031Z Receiving objects:  32% (367/1146)
2022-05-21T14:36:05.2367224Z Receiving objects:  33% (379/1146)
2022-05-21T14:36:05.2367410Z Receiving objects:  34% (390/1146)
2022-05-21T14:36:05.2367595Z Receiving objects:  35% (402/1146)
2022-05-21T14:36:05.2367849Z Receiving objects:  36% (413/1146)
2022-05-21T14:36:05.2368043Z Receiving objects:  37% (425/1146)
2022-05-21T14:36:05.2368425Z Receiving objects:  38% (436/1146)
2022-05-21T14:36:05.2368727Z Receiving objects:  39% (447/1146)
2022-05-21T14:36:05.2368921Z Receiving objects:  40% (459/1146)
2022-05-21T14:36:05.2369104Z Receiving objects:  41% (470/1146)
2022-05-21T14:36:05.2369406Z Receiving objects:  42% (482/1146)
2022-05-21T14:36:05.2369590Z Receiving objects:  43% (493/1146)
2022-05-21T14:36:05.2369779Z Receiving objects:  44% (505/1146)
2022-05-21T14:36:05.2369963Z Receiving objects:  45% (516/1146)
2022-05-21T14:36:05.2370147Z Receiving objects:  46% (528/1146)
2022-05-21T14:36:05.2370332Z Receiving objects:  47% (539/1146)
2022-05-21T14:36:05.2370515Z Receiving objects:  48% (551/1146)
2022-05-21T14:36:05.2370696Z Receiving objects:  49% (562/1146)
2022-05-21T14:36:05.2370886Z Receiving objects:  50% (573/1146)
2022-05-21T14:36:05.2371074Z Receiving objects:  51% (585/1146)
2022-05-21T14:36:05.2371259Z Receiving objects:  52% (596/1146)
2022-05-21T14:36:05.2371443Z Receiving objects:  53% (608/1146)
2022-05-21T14:36:05.2371626Z Receiving objects:  54% (619/1146)
2022-05-21T14:36:05.2371808Z Receiving objects:  55% (631/1146)
2022-05-21T14:36:05.2371991Z Receiving objects:  56% (642/1146)
2022-05-21T14:36:05.2372176Z Receiving objects:  57% (654/1146)
2022-05-21T14:36:05.2372370Z Receiving objects:  58% (665/1146)
2022-05-21T14:36:05.2372615Z Receiving objects:  59% (677/1146)
2022-05-21T14:36:05.2372836Z Receiving objects:  60% (688/1146)
2022-05-21T14:36:05.2373050Z Receiving objects:  61% (700/1146)
2022-05-21T14:36:05.2373382Z Receiving objects:  62% (711/1146)
2022-05-21T14:36:05.2373629Z Receiving objects:  63% (722/1146)
2022-05-21T14:36:05.2373847Z Receiving objects:  64% (734/1146)
2022-05-21T14:36:05.2374087Z Receiving objects:  65% (745/1146)
2022-05-21T14:36:05.2374386Z Receiving objects:  66% (757/1146)
2022-05-21T14:36:05.2374613Z Receiving objects:  67% (768/1146)
2022-05-21T14:36:05.2379932Z Receiving objects:  68% (780/1146)
2022-05-21T14:36:05.2382310Z Receiving objects:  69% (791/1146)
2022-05-21T14:36:05.2382759Z Receiving objects:  70% (803/1146)
2022-05-21T14:36:05.2383181Z Receiving objects:  71% (814/1146)
2022-05-21T14:36:05.2383604Z Receiving objects:  72% (826/1146)
2022-05-21T14:36:05.2384045Z Receiving objects:  73% (837/1146)
2022-05-21T14:36:05.2384410Z Receiving objects:  74% (849/1146)
2022-05-21T14:36:05.2384728Z Receiving objects:  75% (860/1146)
2022-05-21T14:36:05.2385158Z Receiving objects:  76% (871/1146)
2022-05-21T14:36:05.2385577Z Receiving objects:  77% (883/1146)
2022-05-21T14:36:05.2385966Z Receiving objects:  78% (894/1146)
2022-05-21T14:36:05.2386344Z Receiving objects:  79% (906/1146)
2022-05-21T14:36:05.2386746Z Receiving objects:  80% (917/1146)
2022-05-21T14:36:05.2387100Z Receiving objects:  81% (929/1146)
2022-05-21T14:36:05.2387413Z Receiving objects:  82% (940/1146)
2022-05-21T14:36:05.2387797Z Receiving objects:  83% (952/1146)
2022-05-21T14:36:05.2388680Z Receiving objects:  84% (963/1146)
2022-05-21T14:36:05.2389488Z remote: Total 1146 (delta 223), reused 316 (delta 151), pack-reused 758        
2022-05-21T14:36:05.2389823Z Receiving objects:  85% (975/1146)
2022-05-21T14:36:05.2390355Z Receiving objects:  86% (986/1146)
2022-05-21T14:36:05.2391013Z Receiving objects:  87% (998/1146)
2022-05-21T14:36:05.2391478Z Receiving objects:  88% (1009/1146)
2022-05-21T14:36:05.2392059Z Receiving objects:  89% (1020/1146)
2022-05-21T14:36:05.2392930Z Receiving objects:  90% (1032/1146)
2022-05-21T14:36:05.2395823Z Receiving objects:  91% (1043/1146)
2022-05-21T14:36:05.2398896Z Receiving objects:  92% (1055/1146)
2022-05-21T14:36:05.2400710Z Receiving objects:  93% (1066/1146)
2022-05-21T14:36:05.2401182Z Receiving objects:  94% (1078/1146)
2022-05-21T14:36:05.2493604Z Receiving objects:  95% (1089/1146)
2022-05-21T14:36:05.2494062Z Receiving objects:  96% (1101/1146)
2022-05-21T14:36:05.2494315Z Receiving objects:  97% (1112/1146)
2022-05-21T14:36:05.2494600Z Receiving objects:  98% (1124/1146)
2022-05-21T14:36:05.2494907Z Receiving objects:  99% (1135/1146)
2022-05-21T14:36:05.2495220Z Receiving objects: 100% (1146/1146)
2022-05-21T14:36:05.2495605Z Receiving objects: 100% (1146/1146), 124.46 KiB | 17.78 MiB/s, done.
2022-05-21T14:36:05.2496780Z Resolving deltas:   0% (0/615)
2022-05-21T14:36:05.2497443Z Resolving deltas:   1% (7/615)
2022-05-21T14:36:05.2498867Z Resolving deltas:   2% (13/615)
2022-05-21T14:36:05.2499361Z Resolving deltas:   3% (19/615)
2022-05-21T14:36:05.2499816Z Resolving deltas:   4% (25/615)
2022-05-21T14:36:05.2500269Z Resolving deltas:   5% (31/615)
2022-05-21T14:36:05.2500669Z Resolving deltas:   6% (37/615)
2022-05-21T14:36:05.2501097Z Resolving deltas:   7% (44/615)
2022-05-21T14:36:05.2501711Z Resolving deltas:   8% (50/615)
2022-05-21T14:36:05.2502195Z Resolving deltas:   9% (56/615)
2022-05-21T14:36:05.2502643Z Resolving deltas:  10% (62/615)
2022-05-21T14:36:05.2503073Z Resolving deltas:  11% (69/615)
2022-05-21T14:36:05.2503484Z Resolving deltas:  12% (74/615)
2022-05-21T14:36:05.2504056Z Resolving deltas:  13% (80/615)
2022-05-21T14:36:05.2504519Z Resolving deltas:  14% (87/615)
2022-05-21T14:36:05.2504844Z Resolving deltas:  15% (93/615)
2022-05-21T14:36:05.2505168Z Resolving deltas:  16% (100/615)
2022-05-21T14:36:05.2505478Z Resolving deltas:  17% (105/615)
2022-05-21T14:36:05.2505790Z Resolving deltas:  18% (111/615)
2022-05-21T14:36:05.2506091Z Resolving deltas:  19% (117/615)
2022-05-21T14:36:05.2506393Z Resolving deltas:  20% (124/615)
2022-05-21T14:36:05.2506694Z Resolving deltas:  21% (130/615)
2022-05-21T14:36:05.2506987Z Resolving deltas:  22% (136/615)
2022-05-21T14:36:05.2507275Z Resolving deltas:  23% (142/615)
2022-05-21T14:36:05.2507569Z Resolving deltas:  24% (148/615)
2022-05-21T14:36:05.2507839Z Resolving deltas:  25% (154/615)
2022-05-21T14:36:05.2508117Z Resolving deltas:  26% (160/615)
2022-05-21T14:36:05.2508605Z Resolving deltas:  27% (167/615)
2022-05-21T14:36:05.2508907Z Resolving deltas:  28% (173/615)
2022-05-21T14:36:05.2509185Z Resolving deltas:  29% (179/615)
2022-05-21T14:36:05.2509456Z Resolving deltas:  30% (185/615)
2022-05-21T14:36:05.2509739Z Resolving deltas:  31% (191/615)
2022-05-21T14:36:05.2510015Z Resolving deltas:  32% (197/615)
2022-05-21T14:36:05.2510290Z Resolving deltas:  33% (203/615)
2022-05-21T14:36:05.2510558Z Resolving deltas:  34% (210/615)
2022-05-21T14:36:05.2510840Z Resolving deltas:  35% (217/615)
2022-05-21T14:36:05.2511229Z Resolving deltas:  36% (222/615)
2022-05-21T14:36:05.2511598Z Resolving deltas:  37% (228/615)
2022-05-21T14:36:05.2511965Z Resolving deltas:  38% (234/615)
2022-05-21T14:36:05.2512330Z Resolving deltas:  39% (240/615)
2022-05-21T14:36:05.2512679Z Resolving deltas:  40% (246/615)
2022-05-21T14:36:05.2513037Z Resolving deltas:  41% (253/615)
2022-05-21T14:36:05.2513397Z Resolving deltas:  42% (259/615)
2022-05-21T14:36:05.2513757Z Resolving deltas:  43% (265/615)
2022-05-21T14:36:05.2514114Z Resolving deltas:  44% (271/615)
2022-05-21T14:36:05.2514463Z Resolving deltas:  45% (277/615)
2022-05-21T14:36:05.2514812Z Resolving deltas:  46% (283/615)
2022-05-21T14:36:05.2515195Z Resolving deltas:  47% (290/615)
2022-05-21T14:36:05.2515562Z Resolving deltas:  48% (296/615)
2022-05-21T14:36:05.2515931Z Resolving deltas:  49% (302/615)
2022-05-21T14:36:05.2516219Z Resolving deltas:  50% (308/615)
2022-05-21T14:36:05.2516512Z Resolving deltas:  51% (314/615)
2022-05-21T14:36:05.2516889Z Resolving deltas:  52% (320/615)
2022-05-21T14:36:05.2518034Z Resolving deltas:  53% (326/615)
2022-05-21T14:36:05.2518248Z Resolving deltas:  54% (333/615)
2022-05-21T14:36:05.2518531Z Resolving deltas:  55% (339/615)
2022-05-21T14:36:05.2518809Z Resolving deltas:  56% (347/615)
2022-05-21T14:36:05.2519032Z Resolving deltas:  57% (351/615)
2022-05-21T14:36:05.2519275Z Resolving deltas:  58% (357/615)
2022-05-21T14:36:05.2519560Z Resolving deltas:  59% (363/615)
2022-05-21T14:36:05.2519841Z Resolving deltas:  60% (369/615)
2022-05-21T14:36:05.2520116Z Resolving deltas:  61% (376/615)
2022-05-21T14:36:05.2520400Z Resolving deltas:  62% (382/615)
2022-05-21T14:36:05.2520668Z Resolving deltas:  63% (388/615)
2022-05-21T14:36:05.2520947Z Resolving deltas:  64% (394/615)
2022-05-21T14:36:05.2521353Z Resolving deltas:  65% (400/615)
2022-05-21T14:36:05.2521571Z Resolving deltas:  66% (406/615)
2022-05-21T14:36:05.2521787Z Resolving deltas:  67% (413/615)
2022-05-21T14:36:05.2522251Z Resolving deltas:  68% (419/615)
2022-05-21T14:36:05.2522469Z Resolving deltas:  69% (425/615)
2022-05-21T14:36:05.2522691Z Resolving deltas:  70% (431/615)
2022-05-21T14:36:05.2522909Z Resolving deltas:  71% (437/615)
2022-05-21T14:36:05.2523123Z Resolving deltas:  72% (443/615)
2022-05-21T14:36:05.2523335Z Resolving deltas:  73% (449/615)
2022-05-21T14:36:05.2523551Z Resolving deltas:  74% (456/615)
2022-05-21T14:36:05.2523763Z Resolving deltas:  75% (462/615)
2022-05-21T14:36:05.2523976Z Resolving deltas:  76% (468/615)
2022-05-21T14:36:05.2524195Z Resolving deltas:  77% (476/615)
2022-05-21T14:36:05.2524407Z Resolving deltas:  78% (482/615)
2022-05-21T14:36:05.2524617Z Resolving deltas:  79% (486/615)
2022-05-21T14:36:05.2524830Z Resolving deltas:  80% (492/615)
2022-05-21T14:36:05.2525038Z Resolving deltas:  81% (499/615)
2022-05-21T14:36:05.2525248Z Resolving deltas:  82% (505/615)
2022-05-21T14:36:05.2525458Z Resolving deltas:  83% (511/615)
2022-05-21T14:36:05.2525673Z Resolving deltas:  84% (518/615)
2022-05-21T14:36:05.2525893Z Resolving deltas:  85% (523/615)
2022-05-21T14:36:05.2526104Z Resolving deltas:  86% (530/615)
2022-05-21T14:36:05.2526315Z Resolving deltas:  87% (536/615)
2022-05-21T14:36:05.2526527Z Resolving deltas:  88% (542/615)
2022-05-21T14:36:05.2527077Z Resolving deltas:  89% (548/615)
2022-05-21T14:36:05.2527378Z Resolving deltas:  90% (554/615)
2022-05-21T14:36:05.2527676Z Resolving deltas:  91% (560/615)
2022-05-21T14:36:05.2527969Z Resolving deltas:  92% (567/615)
2022-05-21T14:36:05.2528759Z Resolving deltas:  93% (572/615)
2022-05-21T14:36:05.2529126Z Resolving deltas:  94% (579/615)
2022-05-21T14:36:05.2529426Z Resolving deltas:  95% (585/615)
2022-05-21T14:36:05.2529720Z Resolving deltas:  96% (591/615)
2022-05-21T14:36:05.2530019Z Resolving deltas:  97% (597/615)
2022-05-21T14:36:05.2530311Z Resolving deltas:  98% (603/615)
2022-05-21T14:36:05.2530595Z Resolving deltas:  99% (609/615)
2022-05-21T14:36:05.2530882Z Resolving deltas: 100% (615/615)
2022-05-21T14:36:05.2531183Z Resolving deltas: 100% (615/615), done.
2022-05-21T14:36:05.2622542Z From https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-21T14:36:05.2623070Z  * [new branch]      master     -> origin/master
2022-05-21T14:36:05.2655616Z [command]/usr/bin/git branch --list --remote origin/master
2022-05-21T14:36:05.2691698Z   origin/master
2022-05-21T14:36:05.2699146Z [command]/usr/bin/git rev-parse refs/remotes/origin/master
2022-05-21T14:36:05.2729560Z dec668f322c47559e2642cb16a0c81fa811533e4
2022-05-21T14:36:05.2733557Z ##[endgroup]
2022-05-21T14:36:05.2734531Z ##[group]Determining the checkout info
2022-05-21T14:36:05.2735997Z ##[endgroup]
2022-05-21T14:36:05.2736387Z ##[group]Checking out the ref
2022-05-21T14:36:05.2739125Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2022-05-21T14:36:05.2813880Z Reset branch 'master'
2022-05-21T14:36:05.2814847Z branch 'master' set up to track 'origin/master'.
2022-05-21T14:36:05.2817004Z ##[endgroup]
2022-05-21T14:36:05.2817870Z ##[group]Setting up auth for fetching submodules
2022-05-21T14:36:05.2822546Z [command]/usr/bin/git config --global http.https://ghe.coxautoinc.com/.extraheader AUTHORIZATION: basic ***
2022-05-21T14:36:05.2879823Z [command]/usr/bin/git config --global --unset-all url.https://ghe.coxautoinc.com/.insteadOf
2022-05-21T14:36:05.2915785Z [command]/usr/bin/git config --global --add url.https://ghe.coxautoinc.com/.insteadOf git@ghe.coxautoinc.com:
2022-05-21T14:36:05.2985911Z [command]/usr/bin/git config --global --add url.https://ghe.coxautoinc.com/.insteadOf org-8930@github.com:
2022-05-21T14:36:05.3053940Z ##[endgroup]
2022-05-21T14:36:05.3054711Z ##[group]Fetching submodules
2022-05-21T14:36:05.3058821Z [command]/usr/bin/git submodule sync --recursive
2022-05-21T14:36:05.3446748Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive
2022-05-21T14:36:05.3925778Z Submodule 'caiCustomResource' (https://ghe.coxautoinc.com/Consumer/consumer-tools-cfn-custom-resource) registered for path 'caiCustomResource'
2022-05-21T14:36:05.3958070Z Cloning into '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/caiCustomResource'...
2022-05-21T14:36:05.6270401Z Submodule path 'caiCustomResource': checked out 'fd6d0b28f28a54c3e1643af041b72308165bc6de'
2022-05-21T14:36:05.6298524Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0
2022-05-21T14:36:05.6630565Z Entering 'caiCustomResource'
2022-05-21T14:36:05.6693001Z ##[endgroup]
2022-05-21T14:36:05.6694310Z ##[group]Persisting credentials for submodules
2022-05-21T14:36:05.6700238Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'url\.https\:\/\/ghe\.coxautoinc\.com\/\.insteadOf' && git config --local --unset-all 'url.https://ghe.coxautoinc.com/.insteadOf' || :
2022-05-21T14:36:05.7028948Z Entering 'caiCustomResource'
2022-05-21T14:36:05.7090375Z [command]/usr/bin/git submodule foreach --recursive git config --local 'http.https://ghe.coxautoinc.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url
2022-05-21T14:36:05.7433277Z Entering 'caiCustomResource'
2022-05-21T14:36:05.7482499Z file:/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/.git/modules/caiCustomResource/config	remote.origin.url
2022-05-21T14:36:05.7534373Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://ghe.coxautoinc.com/.insteadOf' 'git@ghe.coxautoinc.com:'
2022-05-21T14:36:05.7871692Z Entering 'caiCustomResource'
2022-05-21T14:36:05.7932490Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://ghe.coxautoinc.com/.insteadOf' 'org-8930@github.com:'
2022-05-21T14:36:05.8244125Z Entering 'caiCustomResource'
2022-05-21T14:36:05.8300588Z ##[endgroup]
2022-05-21T14:36:05.8346701Z [command]/usr/bin/git log -1 --format='%H'
2022-05-21T14:36:05.8377948Z 'dec668f322c47559e2642cb16a0c81fa811533e4'
2022-05-21T14:36:05.8765760Z ##[group]Run tj-actions/changed-files@v20
2022-05-21T14:36:05.8766091Z with:
2022-05-21T14:36:05.8766428Z   files: ./robots_files/*
2022-05-21T14:36:05.8766856Z   old_new_files_separator: |
2022-05-21T14:36:05.8767477Z   token: ***
2022-05-21T14:36:05.8767725Z   separator:  
2022-05-21T14:36:05.8767976Z   old_new_separator: ,
2022-05-21T14:36:05.8768543Z   files_separator: 

2022-05-21T14:36:05.8768830Z   files_ignore_separator: 

2022-05-21T14:36:05.8769137Z   sha: dec668f322c47559e2642cb16a0c81fa811533e4
2022-05-21T14:36:05.8769435Z   since_last_remote_commit: false
2022-05-21T14:36:05.8769703Z   use_fork_point: false
2022-05-21T14:36:05.8769950Z   quotepath: true
2022-05-21T14:36:05.8770191Z ##[endgroup]
2022-05-21T14:36:05.9072712Z ##[group]Run # "Set base sha..."
2022-05-21T14:36:05.9073032Z �[36;1m# "Set base sha..."�[0m
2022-05-21T14:36:05.9073230Z �[36;1mif [[ -n "" ]]; then�[0m
2022-05-21T14:36:05.9073445Z �[36;1m  echo "::set-output name=base_sha::"�[0m
2022-05-21T14:36:05.9073746Z �[36;1melif [[ "false" == "true" && "" != "0000000000000000000000000000000000000000" ]]; then�[0m
2022-05-21T14:36:05.9074011Z �[36;1m    echo "::set-output name=base_sha::"�[0m
2022-05-21T14:36:05.9074220Z �[36;1mfi�[0m
2022-05-21T14:36:05.9090559Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-21T14:36:05.9090842Z ##[endgroup]
2022-05-21T14:36:05.9278446Z ##[group]Run # "Calculating the previous and current SHA..."
2022-05-21T14:36:05.9278919Z �[36;1m# "Calculating the previous and current SHA..."�[0m
2022-05-21T14:36:05.9279319Z �[36;1mbash $GITHUB_ACTION_PATH/diff-sha.sh�[0m
2022-05-21T14:36:05.9291435Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-21T14:36:05.9291808Z env:
2022-05-21T14:36:05.9292162Z   GITHUB_SERVER_URL: https://ghe.coxautoinc.com
2022-05-21T14:36:05.9292560Z   GITHUB_REPOSITORY: Consumer/SEO-AWS-TOOLS
2022-05-21T14:36:05.9292881Z   GITHUB_BASE_REF: 
2022-05-21T14:36:05.9293151Z   GITHUB_HEAD_REF: 
2022-05-21T14:36:05.9293531Z   GITHUB_ACTION_PATH: /runner/_work/_actions/tj-actions/changed-files/v20
2022-05-21T14:36:05.9294056Z   INPUT_SHA: dec668f322c47559e2642cb16a0c81fa811533e4
2022-05-21T14:36:05.9294381Z   INPUT_BASE_SHA: 
2022-05-21T14:36:05.9294929Z   INPUT_TOKEN: ***
2022-05-21T14:36:05.9295204Z   INPUT_PATH: 
2022-05-21T14:36:05.9295493Z   INPUT_USE_FORK_POINT: false
2022-05-21T14:36:05.9295781Z ##[endgroup]
2022-05-21T14:36:05.9369657Z ##[group]changed-files-diff-sha
2022-05-21T14:36:05.9370033Z Resolving repository path...
2022-05-21T14:36:05.9370315Z Getting HEAD SHA...
2022-05-21T14:36:06.1406667Z remote: Total 0 (delta 0), reused 0 (delta 0), pack-reused 0        
2022-05-21T14:36:06.1561263Z ##[endgroup]
2022-05-21T14:36:06.1598575Z ##[group]Run tj-actions/glob@v7.20
2022-05-21T14:36:06.1598791Z with:
2022-05-21T14:36:06.1598973Z   files: ./robots_files/*
2022-05-21T14:36:06.1599175Z   files-separator: 

2022-05-21T14:36:06.1599381Z   escape-paths: true
2022-05-21T14:36:06.1599597Z   excluded-files-separator: 

2022-05-21T14:36:06.1599851Z   base-sha: 321f5862800dcad26c51ff027443f06d27b52126
2022-05-21T14:36:06.1600122Z   sha: dec668f322c47559e2642cb16a0c81fa811533e4
2022-05-21T14:36:06.1600359Z   include-deleted-files: true
2022-05-21T14:36:06.1600563Z   separator: |
2022-05-21T14:36:06.1600783Z   files-from-source-file-separator: 

2022-05-21T14:36:06.1601070Z   excluded-files-from-source-file-separator: 

2022-05-21T14:36:06.1601330Z   follow-symbolic-links: true
2022-05-21T14:36:06.1601556Z   strip-top-level-dir: true
2022-05-21T14:36:06.1601760Z ##[endgroup]
2022-05-21T14:36:06.3311564Z [command]/usr/bin/git rev-parse --show-toplevel
2022-05-21T14:36:06.3356839Z /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-21T14:36:06.3381785Z [command]/usr/bin/git diff --diff-filter=D --name-only 321f5862800dcad26c51ff027443f06d27b52126 dec668f322c47559e2642cb16a0c81fa811533e4
2022-05-21T14:36:06.3419718Z 
2022-05-21T14:36:06.3432191Z 
2022-05-21T14:36:06.3436288Z Successfully created paths-output-file: /tmp/13ede37f-4c7a-417c-83d7-e0ede8dc1252.txt
2022-05-21T14:36:06.3493117Z ##[group]Run bash $GITHUB_ACTION_PATH/entrypoint.sh
2022-05-21T14:36:06.3493406Z �[36;1mbash $GITHUB_ACTION_PATH/entrypoint.sh�[0m
2022-05-21T14:36:06.3504734Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-21T14:36:06.3504964Z env:
2022-05-21T14:36:06.3505191Z   GITHUB_ACTION_PATH: /runner/_work/_actions/tj-actions/changed-files/v20
2022-05-21T14:36:06.3505498Z   INPUT_FILES_PATTERN_FILE: /tmp/13ede37f-4c7a-417c-83d7-e0ede8dc1252.txt
2022-05-21T14:36:06.3505747Z   INPUT_SEPARATOR:  
2022-05-21T14:36:06.3505932Z   INPUT_PATH: 
2022-05-21T14:36:06.3506151Z   INPUT_PREVIOUS_SHA: 321f5862800dcad26c51ff027443f06d27b52126
2022-05-21T14:36:06.3506415Z   INPUT_CURRENT_SHA: dec668f322c47559e2642cb16a0c81fa811533e4
2022-05-21T14:36:06.3506638Z   INPUT_TARGET_BRANCH: master
2022-05-21T14:36:06.3506837Z   INPUT_CURRENT_BRANCH: master
2022-05-21T14:36:06.3507030Z   INPUT_QUOTEPATH: true
2022-05-21T14:36:06.3507221Z   INPUT_OLD_NEW_SEPARATOR: ,
2022-05-21T14:36:06.3507437Z   INPUT_OLD_NEW_FILES_SEPARATOR: |
2022-05-21T14:36:06.3507632Z ##[endgroup]
2022-05-21T14:36:06.3587648Z ##[group]changed-files
2022-05-21T14:36:06.3588005Z Resolving repository path...
2022-05-21T14:36:06.3589183Z Retrieving changes between 321f5862800dcad26c51ff027443f06d27b52126 (master) → dec668f322c47559e2642cb16a0c81fa811533e4 (master)
2022-05-21T14:36:06.3589646Z Getting diff...
2022-05-21T14:36:07.0364036Z Matching changed files: robots_files/robots-kbb-1.txt|robots_files/robots-kbb-2.txt
2022-05-21T14:36:07.0410098Z Non Matching changed files: .github/workflows/test.yml host-mappings.json
2022-05-21T14:36:07.0872120Z Matching modified files: robots_files/robots-kbb-1.txt|robots_files/robots-kbb-2.txt
2022-05-21T14:36:07.0909683Z Non Matching modified files: .github/workflows/test.yml host-mappings.json
2022-05-21T14:36:07.1620202Z Added files: 
2022-05-21T14:36:07.1620654Z Copied files: 
2022-05-21T14:36:07.1620967Z Deleted files: 
2022-05-21T14:36:07.1621189Z Modified files: 
2022-05-21T14:36:07.1621885Z Renamed files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
2022-05-21T14:36:07.1622699Z Type Changed files: 
2022-05-21T14:36:07.1623060Z Unmerged files: 
2022-05-21T14:36:07.1623402Z Unknown files: 
2022-05-21T14:36:07.1623905Z All changed and modified files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
2022-05-21T14:36:07.1624536Z All changed files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
2022-05-21T14:36:07.1625191Z All modified files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
2022-05-21T14:36:07.1625523Z All old & new renamed files: 
2022-05-21T14:36:07.1629906Z ##[endgroup]
2022-05-21T14:36:07.1725113Z ##[group]Run for file in ; do
2022-05-21T14:36:07.1725363Z �[36;1mfor file in ; do�[0m
2022-05-21T14:36:07.1725546Z �[36;1m  echo $file�[0m
2022-05-21T14:36:07.1725715Z �[36;1mdone�[0m
2022-05-21T14:36:07.1738122Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-21T14:36:07.1738366Z ##[endgroup]
2022-05-21T14:36:07.1891368Z Post job cleanup.
2022-05-21T14:36:07.1920430Z Post job cleanup.
2022-05-21T14:36:07.2323004Z deleted paths-output-file: /tmp/13ede37f-4c7a-417c-83d7-e0ede8dc1252.txt
2022-05-21T14:36:07.2392712Z Post job cleanup.
2022-05-21T14:36:07.3623016Z [command]/usr/bin/git version
2022-05-21T14:36:07.3681098Z git version 2.36.1
2022-05-21T14:36:07.3722974Z Copying '/home/runner/.gitconfig' to '/runner/_work/_temp/a5aad3cc-9edc-4afa-8878-6675519920cf/.gitconfig'
2022-05-21T14:36:07.3735353Z Temporarily overriding HOME='/runner/_work/_temp/a5aad3cc-9edc-4afa-8878-6675519920cf' before making global git config changes
2022-05-21T14:36:07.3736158Z Adding repository directory to the temporary git global config as a safe directory
2022-05-21T14:36:07.3741555Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-21T14:36:07.3790144Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-21T14:36:07.3828793Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-21T14:36:07.4222196Z Entering 'caiCustomResource'
2022-05-21T14:36:07.4280620Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-21T14:36:07.4312258Z http.https://ghe.coxautoinc.com/.extraheader
2022-05-21T14:36:07.4320788Z [command]/usr/bin/git config --local --unset-all http.https://ghe.coxautoinc.com/.extraheader
2022-05-21T14:36:07.4354378Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-21T14:36:07.4811300Z Entering 'caiCustomResource'
2022-05-21T14:36:07.4833419Z http.https://ghe.coxautoinc.com/.extraheader
2022-05-21T14:36:07.5127663Z Cleaning up orphan processes

@jackton1
Copy link
Member

jackton1 commented May 21, 2022

@stevegroner Can you test it using this branch chore/test-rename

Using

     - name: Get Renamed robots.txt files
        id: renamed-files-robots-files
        uses: tj-actions/changed-files@chore/test-rename
        with:
          files: ./robots_files/*
          old_new_files_separator: "|"

@jackton1 jackton1 reopened this May 21, 2022
@jackton1 jackton1 linked a pull request May 21, 2022 that will close this issue
@stevegroner
Copy link

stevegroner commented May 21, 2022

Same response.

jobs:

  Process-Files-Test:

    runs-on: [ self-hosted ]
    defaults:
      run:
        shell: bash

    steps:

      - name: Checkout Source Code
        uses: actions/checkout@v3
        with:
          submodules: 'recursive'
          token: ${{ secrets.TOKEN }}
          fetch-depth: 0

      - name: Get Renamed robots.txt files
        id: renamed-files-robots-files
        uses: tj-actions/changed-files@chore/test-rename
        with:
          token: ${{ secrets.TOKEN }}
          files: ./robots_files/*
          old_new_files_separator: "|"

      - name: Rename Robots.txt Files
        if: steps.renamed-files-robots-files.outputs.any_changed == 'true'
        run: |
          for file in ${{ steps.renamed-files-robots-files.outputs.old_new_renamed_files }}; do
            echo $file
          done
2022-05-21T20:13:27.0014682Z Found online and idle self-hosted runner in the  current repository's enterprise account that matches the required labels: 'self-hosted'
2022-05-21T20:13:27.0563090Z Waiting for the runner to pick up this job...
2022-05-21T20:13:27.2066055Z Job is about to start running on the runner: cai-enterprise-ubuntu-awsactionrunners-d49hr-wjvg6 (enterprise)
2022-05-21T20:13:31.0938221Z Current runner version: '2.291.1'
2022-05-21T20:13:31.0943625Z Runner name: 'cai-enterprise-ubuntu-awsactionrunners-d49hr-wjvg6'
2022-05-21T20:13:31.0944121Z Runner group name: 'CAI Enterprise Runners'
2022-05-21T20:13:31.0944786Z Machine name: 'cai-enterprise-ubuntu-awsactionrunners-d49hr-wjvg6'
2022-05-21T20:13:31.0947066Z ##[group]GITHUB_TOKEN Permissions
2022-05-21T20:13:31.0947616Z Actions: write
2022-05-21T20:13:31.0947809Z Checks: write
2022-05-21T20:13:31.0948000Z Contents: write
2022-05-21T20:13:31.0948200Z Deployments: write
2022-05-21T20:13:31.0948410Z Discussions: write
2022-05-21T20:13:31.0948613Z Issues: write
2022-05-21T20:13:31.0948800Z Metadata: read
2022-05-21T20:13:31.0949046Z Packages: write
2022-05-21T20:13:31.0949238Z Pages: write
2022-05-21T20:13:31.0949439Z PullRequests: write
2022-05-21T20:13:31.0949677Z RepositoryProjects: write
2022-05-21T20:13:31.0949907Z SecurityEvents: write
2022-05-21T20:13:31.0950119Z Statuses: write
2022-05-21T20:13:31.0950408Z ##[endgroup]
2022-05-21T20:13:31.0953640Z Prepare workflow directory
2022-05-21T20:13:31.1734300Z Prepare all required actions
2022-05-21T20:13:31.1909169Z Getting action download info
2022-05-21T20:13:31.5817942Z Download action repository 'actions/checkout@v3' (SHA:2541b1294d2704b0964813337f33b291d3f8596b)
2022-05-21T20:13:31.7942421Z Download action repository 'tj-actions/changed-files@chore/test-rename' (SHA:81c6f3cfc5f9dab1e81974efa04ae01f2064de7c)
2022-05-21T20:13:32.1169472Z Getting action download info
2022-05-21T20:13:32.4383535Z Download action repository 'tj-actions/glob@v7.20' (SHA:95ff4236144967424139d2fb9776bb79d93afdca)
2022-05-21T20:13:32.7307548Z ##[group]Run actions/checkout@v3
2022-05-21T20:13:32.7307864Z with:
2022-05-21T20:13:32.7308174Z   submodules: recursive
2022-05-21T20:13:32.7308714Z   token: ***
2022-05-21T20:13:32.7308944Z   fetch-depth: 0
2022-05-21T20:13:32.7309202Z   repository: Consumer/SEO-AWS-TOOLS
2022-05-21T20:13:32.7309474Z   ssh-strict: true
2022-05-21T20:13:32.7309728Z   persist-credentials: true
2022-05-21T20:13:32.7309977Z   clean: true
2022-05-21T20:13:32.7310207Z   lfs: false
2022-05-21T20:13:32.7310444Z   set-safe-directory: true
2022-05-21T20:13:32.7310685Z ##[endgroup]
2022-05-21T20:13:33.0564538Z Syncing repository: Consumer/SEO-AWS-TOOLS
2022-05-21T20:13:33.0566171Z ##[group]Getting Git version info
2022-05-21T20:13:33.0566765Z Working directory is '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS'
2022-05-21T20:13:33.0567756Z [command]/usr/bin/git version
2022-05-21T20:13:33.0643456Z git version 2.36.1
2022-05-21T20:13:33.0668769Z ##[endgroup]
2022-05-21T20:13:33.0685713Z Temporarily overriding HOME='/runner/_work/_temp/4fff4a2b-9d39-427c-8715-5ee23b519ee1' before making global git config changes
2022-05-21T20:13:33.0686972Z Adding repository directory to the temporary git global config as a safe directory
2022-05-21T20:13:33.0690968Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-21T20:13:33.0732097Z Deleting the contents of '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS'
2022-05-21T20:13:33.0735189Z ##[group]Initializing the repository
2022-05-21T20:13:33.0738481Z [command]/usr/bin/git init /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-21T20:13:33.0778842Z hint: Using 'master' as the name for the initial branch. This default branch name
2022-05-21T20:13:33.0779777Z hint: is subject to change. To configure the initial branch name to use in all
2022-05-21T20:13:33.0781030Z hint: of your new repositories, which will suppress this warning, call:
2022-05-21T20:13:33.0781877Z hint: 
2022-05-21T20:13:33.0782312Z hint: 	git config --global init.defaultBranch <name>
2022-05-21T20:13:33.0782626Z hint: 
2022-05-21T20:13:33.0783045Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2022-05-21T20:13:33.0783559Z hint: 'development'. The just-created branch can be renamed via this command:
2022-05-21T20:13:33.0784105Z hint: 
2022-05-21T20:13:33.0784553Z hint: 	git branch -m <name>
2022-05-21T20:13:33.0785411Z Initialized empty Git repository in /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/.git/
2022-05-21T20:13:33.0792275Z [command]/usr/bin/git remote add origin https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-21T20:13:33.0826778Z ##[endgroup]
2022-05-21T20:13:33.0828165Z ##[group]Disabling automatic garbage collection
2022-05-21T20:13:33.0830162Z [command]/usr/bin/git config --local gc.auto 0
2022-05-21T20:13:33.0862137Z ##[endgroup]
2022-05-21T20:13:33.0862734Z ##[group]Setting up auth
2022-05-21T20:13:33.0868899Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-21T20:13:33.0902449Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-21T20:13:33.1359969Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-21T20:13:33.1397655Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-21T20:13:33.1835065Z [command]/usr/bin/git config --local http.https://ghe.coxautoinc.com/.extraheader AUTHORIZATION: basic ***
2022-05-21T20:13:33.1885502Z ##[endgroup]
2022-05-21T20:13:33.1886087Z ##[group]Fetching the repository
2022-05-21T20:13:33.1893233Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
2022-05-21T20:13:33.7632345Z remote: Enumerating objects: 1156, done.        
2022-05-21T20:13:33.7632879Z remote: Counting objects:   0% (1/398)        
2022-05-21T20:13:33.7633292Z remote: Counting objects:   1% (4/398)        
2022-05-21T20:13:33.7633722Z remote: Counting objects:   2% (8/398)        
2022-05-21T20:13:33.7634137Z remote: Counting objects:   3% (12/398)        
2022-05-21T20:13:33.7634517Z remote: Counting objects:   4% (16/398)        
2022-05-21T20:13:33.7634905Z remote: Counting objects:   5% (20/398)        
2022-05-21T20:13:33.7635289Z remote: Counting objects:   6% (24/398)        
2022-05-21T20:13:33.7635678Z remote: Counting objects:   7% (28/398)        
2022-05-21T20:13:33.7636051Z remote: Counting objects:   8% (32/398)        
2022-05-21T20:13:33.7636386Z remote: Counting objects:   9% (36/398)        
2022-05-21T20:13:33.7636650Z remote: Counting objects:  10% (40/398)        
2022-05-21T20:13:33.7636868Z remote: Counting objects:  11% (44/398)        
2022-05-21T20:13:33.7637084Z remote: Counting objects:  12% (48/398)        
2022-05-21T20:13:33.7637304Z remote: Counting objects:  13% (52/398)        
2022-05-21T20:13:33.7637513Z remote: Counting objects:  14% (56/398)        
2022-05-21T20:13:33.7637720Z remote: Counting objects:  15% (60/398)        
2022-05-21T20:13:33.7637935Z remote: Counting objects:  16% (64/398)        
2022-05-21T20:13:33.7638144Z remote: Counting objects:  17% (68/398)        
2022-05-21T20:13:33.7638354Z remote: Counting objects:  18% (72/398)        
2022-05-21T20:13:33.7638679Z remote: Counting objects:  19% (76/398)        
2022-05-21T20:13:33.7638969Z remote: Counting objects:  20% (80/398)        
2022-05-21T20:13:33.7639309Z remote: Counting objects:  21% (84/398)        
2022-05-21T20:13:33.7644644Z remote: Counting objects:  22% (88/398)        
2022-05-21T20:13:33.7679295Z remote: Counting objects:  23% (92/398)        
2022-05-21T20:13:33.7680174Z remote: Counting objects:  24% (96/398)        
2022-05-21T20:13:33.7680944Z remote: Counting objects:  25% (100/398)        
2022-05-21T20:13:33.7681857Z remote: Counting objects:  26% (104/398)        
2022-05-21T20:13:33.7686665Z remote: Counting objects:  27% (108/398)        
2022-05-21T20:13:33.7687460Z remote: Counting objects:  28% (112/398)        
2022-05-21T20:13:33.7688226Z remote: Counting objects:  29% (116/398)        
2022-05-21T20:13:33.7688973Z remote: Counting objects:  30% (120/398)        
2022-05-21T20:13:33.7689560Z remote: Counting objects:  31% (124/398)        
2022-05-21T20:13:33.7690430Z remote: Counting objects:  32% (128/398)        
2022-05-21T20:13:33.7690690Z remote: Counting objects:  33% (132/398)        
2022-05-21T20:13:33.7691061Z remote: Counting objects:  34% (136/398)        
2022-05-21T20:13:33.7691328Z remote: Counting objects:  35% (140/398)        
2022-05-21T20:13:33.7691596Z remote: Counting objects:  36% (144/398)        
2022-05-21T20:13:33.7692053Z remote: Counting objects:  37% (148/398)        
2022-05-21T20:13:33.7696347Z remote: Counting objects:  38% (152/398)        
2022-05-21T20:13:33.7696903Z remote: Counting objects:  39% (156/398)        
2022-05-21T20:13:33.7697374Z remote: Counting objects:  40% (160/398)        
2022-05-21T20:13:33.7697849Z remote: Counting objects:  41% (164/398)        
2022-05-21T20:13:33.7698318Z remote: Counting objects:  42% (168/398)        
2022-05-21T20:13:33.7698786Z remote: Counting objects:  43% (172/398)        
2022-05-21T20:13:33.7699207Z remote: Counting objects:  44% (176/398)        
2022-05-21T20:13:33.7699744Z remote: Counting objects:  45% (180/398)        
2022-05-21T20:13:33.7700209Z remote: Counting objects:  46% (184/398)        
2022-05-21T20:13:33.7700914Z remote: Counting objects:  47% (188/398)        
2022-05-21T20:13:33.7701365Z remote: Counting objects:  48% (192/398)        
2022-05-21T20:13:33.7701813Z remote: Counting objects:  49% (196/398)        
2022-05-21T20:13:33.7702501Z remote: Counting objects:  50% (199/398)        
2022-05-21T20:13:33.7702967Z remote: Counting objects:  51% (203/398)        
2022-05-21T20:13:33.7703831Z remote: Counting objects:  52% (207/398)        
2022-05-21T20:13:33.7704344Z remote: Counting objects:  53% (211/398)        
2022-05-21T20:13:33.7705248Z remote: Counting objects:  54% (215/398)        
2022-05-21T20:13:33.7705787Z remote: Counting objects:  55% (219/398)        
2022-05-21T20:13:33.7706249Z remote: Counting objects:  56% (223/398)        
2022-05-21T20:13:33.7708359Z remote: Counting objects:  57% (227/398)        
2022-05-21T20:13:33.7708738Z remote: Counting objects:  58% (231/398)        
2022-05-21T20:13:33.7709228Z remote: Counting objects:  59% (235/398)        
2022-05-21T20:13:33.7709677Z remote: Counting objects:  60% (239/398)        
2022-05-21T20:13:33.7710982Z remote: Counting objects:  61% (243/398)        
2022-05-21T20:13:33.7725781Z remote: Counting objects:  62% (247/398)        
2022-05-21T20:13:33.7726778Z remote: Counting objects:  63% (251/398)        
2022-05-21T20:13:33.7727441Z remote: Counting objects:  64% (255/398)        
2022-05-21T20:13:33.7728179Z remote: Counting objects:  65% (259/398)        
2022-05-21T20:13:33.7728772Z remote: Counting objects:  66% (263/398)        
2022-05-21T20:13:33.7729249Z remote: Counting objects:  67% (267/398)        
2022-05-21T20:13:33.7729705Z remote: Counting objects:  68% (271/398)        
2022-05-21T20:13:33.7730293Z remote: Counting objects:  69% (275/398)        
2022-05-21T20:13:33.7730989Z remote: Counting objects:  70% (279/398)        
2022-05-21T20:13:33.7731702Z remote: Counting objects:  71% (283/398)        
2022-05-21T20:13:33.7732400Z remote: Counting objects:  72% (287/398)        
2022-05-21T20:13:33.7733186Z remote: Counting objects:  73% (291/398)        
2022-05-21T20:13:33.7733906Z remote: Counting objects:  74% (295/398)        
2022-05-21T20:13:33.7734454Z remote: Counting objects:  75% (299/398)        
2022-05-21T20:13:33.7735092Z remote: Counting objects:  76% (303/398)        
2022-05-21T20:13:33.7735841Z remote: Counting objects:  77% (307/398)        
2022-05-21T20:13:33.7736372Z remote: Counting objects:  78% (311/398)        
2022-05-21T20:13:33.7736830Z remote: Counting objects:  79% (315/398)        
2022-05-21T20:13:33.7737397Z remote: Counting objects:  80% (319/398)        
2022-05-21T20:13:33.7738080Z remote: Counting objects:  81% (323/398)        
2022-05-21T20:13:33.7738498Z remote: Counting objects:  82% (327/398)        
2022-05-21T20:13:33.7738996Z remote: Counting objects:  83% (331/398)        
2022-05-21T20:13:33.7739670Z remote: Counting objects:  84% (335/398)        
2022-05-21T20:13:33.7740235Z remote: Counting objects:  85% (339/398)        
2022-05-21T20:13:33.7740735Z remote: Counting objects:  86% (343/398)        
2022-05-21T20:13:33.7741187Z remote: Counting objects:  87% (347/398)        
2022-05-21T20:13:33.7741876Z remote: Counting objects:  88% (351/398)        
2022-05-21T20:13:33.7742350Z remote: Counting objects:  89% (355/398)        
2022-05-21T20:13:33.7742923Z remote: Counting objects:  90% (359/398)        
2022-05-21T20:13:33.7743609Z remote: Counting objects:  91% (363/398)        
2022-05-21T20:13:33.7744119Z remote: Counting objects:  92% (367/398)        
2022-05-21T20:13:33.7744623Z remote: Counting objects:  93% (371/398)        
2022-05-21T20:13:33.7745151Z remote: Counting objects:  94% (375/398)        
2022-05-21T20:13:33.7745397Z remote: Counting objects:  95% (379/398)        
2022-05-21T20:13:33.7745843Z remote: Counting objects:  96% (383/398)        
2022-05-21T20:13:33.7746157Z remote: Counting objects:  97% (387/398)        
2022-05-21T20:13:33.7746478Z remote: Counting objects:  98% (391/398)        
2022-05-21T20:13:33.7746688Z remote: Counting objects:  99% (395/398)        
2022-05-21T20:13:33.7746969Z remote: Counting objects: 100% (398/398)        
2022-05-21T20:13:33.7747195Z remote: Counting objects: 100% (398/398), done.        
2022-05-21T20:13:33.7747528Z remote: Compressing objects:   0% (1/205)        
2022-05-21T20:13:33.7747779Z remote: Compressing objects:   1% (3/205)        
2022-05-21T20:13:33.7748128Z remote: Compressing objects:   2% (5/205)        
2022-05-21T20:13:33.7748451Z remote: Compressing objects:   3% (7/205)        
2022-05-21T20:13:33.7749022Z remote: Compressing objects:   4% (9/205)        
2022-05-21T20:13:33.7749917Z remote: Compressing objects:   5% (11/205)        
2022-05-21T20:13:33.7750341Z remote: Compressing objects:   6% (13/205)        
2022-05-21T20:13:33.7750598Z remote: Compressing objects:   7% (15/205)        
2022-05-21T20:13:33.7750894Z remote: Compressing objects:   8% (17/205)        
2022-05-21T20:13:33.7751439Z remote: Compressing objects:   9% (19/205)        
2022-05-21T20:13:33.7751916Z remote: Compressing objects:  10% (21/205)        
2022-05-21T20:13:33.7752387Z remote: Compressing objects:  11% (23/205)        
2022-05-21T20:13:33.7752874Z remote: Compressing objects:  12% (25/205)        
2022-05-21T20:13:33.7753312Z remote: Compressing objects:  13% (27/205)        
2022-05-21T20:13:33.7753558Z remote: Compressing objects:  14% (29/205)        
2022-05-21T20:13:33.7753843Z remote: Compressing objects:  15% (31/205)        
2022-05-21T20:13:33.7754349Z remote: Compressing objects:  16% (33/205)        
2022-05-21T20:13:33.7754943Z remote: Compressing objects:  17% (35/205)        
2022-05-21T20:13:33.7755229Z remote: Compressing objects:  18% (37/205)        
2022-05-21T20:13:33.7755758Z remote: Compressing objects:  19% (39/205)        
2022-05-21T20:13:33.7756249Z remote: Compressing objects:  20% (41/205)        
2022-05-21T20:13:33.7756547Z remote: Compressing objects:  21% (44/205)        
2022-05-21T20:13:33.7756956Z remote: Compressing objects:  22% (46/205)        
2022-05-21T20:13:33.7757619Z remote: Compressing objects:  23% (48/205)        
2022-05-21T20:13:33.7758068Z remote: Compressing objects:  24% (50/205)        
2022-05-21T20:13:33.7758616Z remote: Compressing objects:  25% (52/205)        
2022-05-21T20:13:33.7758857Z remote: Compressing objects:  26% (54/205)        
2022-05-21T20:13:33.7759084Z remote: Compressing objects:  27% (56/205)        
2022-05-21T20:13:33.7759370Z remote: Compressing objects:  28% (58/205)        
2022-05-21T20:13:33.7760177Z remote: Compressing objects:  29% (60/205)        
2022-05-21T20:13:33.7760728Z remote: Compressing objects:  30% (62/205)        
2022-05-21T20:13:33.7761291Z remote: Compressing objects:  31% (64/205)        
2022-05-21T20:13:33.7761869Z remote: Compressing objects:  32% (66/205)        
2022-05-21T20:13:33.7762493Z remote: Compressing objects:  33% (68/205)        
2022-05-21T20:13:33.7763068Z remote: Compressing objects:  34% (70/205)        
2022-05-21T20:13:33.7763633Z remote: Compressing objects:  35% (72/205)        
2022-05-21T20:13:33.7764167Z remote: Compressing objects:  36% (74/205)        
2022-05-21T20:13:33.7764606Z remote: Compressing objects:  37% (76/205)        
2022-05-21T20:13:33.7765053Z remote: Compressing objects:  38% (78/205)        
2022-05-21T20:13:33.7765505Z remote: Compressing objects:  39% (80/205)        
2022-05-21T20:13:33.7766004Z remote: Compressing objects:  40% (82/205)        
2022-05-21T20:13:33.7766609Z remote: Compressing objects:  41% (85/205)        
2022-05-21T20:13:33.7767056Z remote: Compressing objects:  42% (87/205)        
2022-05-21T20:13:33.7767495Z remote: Compressing objects:  43% (89/205)        
2022-05-21T20:13:33.7767925Z remote: Compressing objects:  44% (91/205)        
2022-05-21T20:13:33.7768359Z remote: Compressing objects:  45% (93/205)        
2022-05-21T20:13:33.7768798Z remote: Compressing objects:  46% (95/205)        
2022-05-21T20:13:33.7769345Z remote: Compressing objects:  47% (97/205)        
2022-05-21T20:13:33.7769885Z remote: Compressing objects:  48% (99/205)        
2022-05-21T20:13:33.7770332Z remote: Compressing objects:  49% (101/205)        
2022-05-21T20:13:33.7770803Z remote: Compressing objects:  50% (103/205)        
2022-05-21T20:13:33.7771360Z remote: Compressing objects:  51% (105/205)        
2022-05-21T20:13:33.7771670Z remote: Compressing objects:  52% (107/205)        
2022-05-21T20:13:33.7772249Z remote: Compressing objects:  53% (109/205)        
2022-05-21T20:13:33.7772567Z remote: Compressing objects:  54% (111/205)        
2022-05-21T20:13:33.7773048Z remote: Compressing objects:  55% (113/205)        
2022-05-21T20:13:33.7773534Z remote: Compressing objects:  56% (115/205)        
2022-05-21T20:13:33.7774043Z remote: Compressing objects:  57% (117/205)        
2022-05-21T20:13:33.7774282Z remote: Compressing objects:  58% (119/205)        
2022-05-21T20:13:33.7774509Z remote: Compressing objects:  59% (121/205)        
2022-05-21T20:13:33.7774796Z remote: Compressing objects:  60% (123/205)        
2022-05-21T20:13:33.7775372Z remote: Compressing objects:  61% (126/205)        
2022-05-21T20:13:33.7775834Z remote: Compressing objects:  62% (128/205)        
2022-05-21T20:13:33.7776374Z remote: Compressing objects:  63% (130/205)        
2022-05-21T20:13:33.7776831Z remote: Compressing objects:  64% (132/205)        
2022-05-21T20:13:33.7777307Z remote: Compressing objects:  65% (134/205)        
2022-05-21T20:13:33.7777548Z remote: Compressing objects:  66% (136/205)        
2022-05-21T20:13:33.7777826Z remote: Compressing objects:  67% (138/205)        
2022-05-21T20:13:33.7778260Z remote: Compressing objects:  68% (140/205)        
2022-05-21T20:13:33.7778713Z remote: Compressing objects:  69% (142/205)        
2022-05-21T20:13:33.7779197Z remote: Compressing objects:  70% (144/205)        
2022-05-21T20:13:33.7779660Z remote: Compressing objects:  71% (146/205)        
2022-05-21T20:13:33.7779906Z remote: Compressing objects:  72% (148/205)        
2022-05-21T20:13:33.7780139Z remote: Compressing objects:  73% (150/205)        
2022-05-21T20:13:33.7780431Z remote: Compressing objects:  74% (152/205)        
2022-05-21T20:13:33.7780907Z remote: Compressing objects:  75% (154/205)        
2022-05-21T20:13:33.7781412Z remote: Compressing objects:  76% (156/205)        
2022-05-21T20:13:33.7781963Z remote: Compressing objects:  77% (158/205)        
2022-05-21T20:13:33.7782639Z remote: Compressing objects:  78% (160/205)        
2022-05-21T20:13:33.7783060Z remote: Compressing objects:  79% (162/205)        
2022-05-21T20:13:33.7783629Z remote: Compressing objects:  80% (164/205)        
2022-05-21T20:13:33.7783933Z remote: Compressing objects:  81% (167/205)        
2022-05-21T20:13:33.7784172Z remote: Compressing objects:  82% (169/205)        
2022-05-21T20:13:33.7784456Z remote: Compressing objects:  83% (171/205)        
2022-05-21T20:13:33.7785024Z remote: Compressing objects:  84% (173/205)        
2022-05-21T20:13:33.7786212Z remote: Compressing objects:  85% (175/205)        
2022-05-21T20:13:33.7786509Z remote: Compressing objects:  86% (177/205)        
2022-05-21T20:13:33.7787926Z remote: Compressing objects:  87% (179/205)        
2022-05-21T20:13:33.7788215Z remote: Compressing objects:  88% (181/205)        
2022-05-21T20:13:33.7788444Z remote: Compressing objects:  89% (183/205)        
2022-05-21T20:13:33.7788741Z remote: Compressing objects:  90% (185/205)        
2022-05-21T20:13:33.7789294Z remote: Compressing objects:  91% (187/205)        
2022-05-21T20:13:33.7789768Z remote: Compressing objects:  92% (189/205)        
2022-05-21T20:13:33.7790059Z remote: Compressing objects:  93% (191/205)        
2022-05-21T20:13:33.7790751Z remote: Compressing objects:  94% (193/205)        
2022-05-21T20:13:33.7791461Z remote: Compressing objects:  95% (195/205)        
2022-05-21T20:13:33.7791744Z remote: Compressing objects:  96% (197/205)        
2022-05-21T20:13:33.7792244Z remote: Compressing objects:  97% (199/205)        
2022-05-21T20:13:33.7792684Z remote: Compressing objects:  98% (201/205)        
2022-05-21T20:13:33.7793115Z remote: Compressing objects:  99% (203/205)        
2022-05-21T20:13:33.7793571Z remote: Compressing objects: 100% (205/205)        
2022-05-21T20:13:33.7794014Z remote: Compressing objects: 100% (205/205), done.        
2022-05-21T20:13:33.7794474Z Receiving objects:   0% (1/1156)
2022-05-21T20:13:33.7794914Z Receiving objects:   1% (12/1156)
2022-05-21T20:13:33.7795252Z Receiving objects:   2% (24/1156)
2022-05-21T20:13:33.7795714Z Receiving objects:   3% (35/1156)
2022-05-21T20:13:33.7796181Z Receiving objects:   4% (47/1156)
2022-05-21T20:13:33.7796621Z Receiving objects:   5% (58/1156)
2022-05-21T20:13:33.7797110Z Receiving objects:   6% (70/1156)
2022-05-21T20:13:33.7797687Z Receiving objects:   7% (81/1156)
2022-05-21T20:13:33.7798107Z Receiving objects:   8% (93/1156)
2022-05-21T20:13:33.7798564Z Receiving objects:   9% (105/1156)
2022-05-21T20:13:33.7798834Z Receiving objects:  10% (116/1156)
2022-05-21T20:13:33.7799295Z Receiving objects:  11% (128/1156)
2022-05-21T20:13:33.7799977Z Receiving objects:  12% (139/1156)
2022-05-21T20:13:33.7800245Z Receiving objects:  13% (151/1156)
2022-05-21T20:13:33.7800722Z Receiving objects:  14% (162/1156)
2022-05-21T20:13:33.7801193Z Receiving objects:  15% (174/1156)
2022-05-21T20:13:33.7801607Z Receiving objects:  16% (185/1156)
2022-05-21T20:13:33.7802031Z Receiving objects:  17% (197/1156)
2022-05-21T20:13:33.7802462Z Receiving objects:  18% (209/1156)
2022-05-21T20:13:33.7802922Z Receiving objects:  19% (220/1156)
2022-05-21T20:13:33.7803341Z Receiving objects:  20% (232/1156)
2022-05-21T20:13:33.7803753Z Receiving objects:  21% (243/1156)
2022-05-21T20:13:33.7804176Z Receiving objects:  22% (255/1156)
2022-05-21T20:13:33.7804614Z Receiving objects:  23% (266/1156)
2022-05-21T20:13:33.7805074Z Receiving objects:  24% (278/1156)
2022-05-21T20:13:33.7805332Z Receiving objects:  25% (289/1156)
2022-05-21T20:13:33.7805547Z Receiving objects:  26% (301/1156)
2022-05-21T20:13:33.7806046Z Receiving objects:  27% (313/1156)
2022-05-21T20:13:33.7806653Z Receiving objects:  28% (324/1156)
2022-05-21T20:13:33.7806918Z Receiving objects:  29% (336/1156)
2022-05-21T20:13:33.7807391Z Receiving objects:  30% (347/1156)
2022-05-21T20:13:33.7807956Z Receiving objects:  31% (359/1156)
2022-05-21T20:13:33.7808436Z Receiving objects:  32% (370/1156)
2022-05-21T20:13:33.7808900Z Receiving objects:  33% (382/1156)
2022-05-21T20:13:33.7809432Z Receiving objects:  34% (394/1156)
2022-05-21T20:13:33.7809898Z Receiving objects:  35% (405/1156)
2022-05-21T20:13:33.7810353Z Receiving objects:  36% (417/1156)
2022-05-21T20:13:33.7810802Z Receiving objects:  37% (428/1156)
2022-05-21T20:13:33.7811233Z Receiving objects:  38% (440/1156)
2022-05-21T20:13:33.7811699Z Receiving objects:  39% (451/1156)
2022-05-21T20:13:33.7812294Z Receiving objects:  40% (463/1156)
2022-05-21T20:13:33.7812662Z Receiving objects:  41% (474/1156)
2022-05-21T20:13:33.7813270Z Receiving objects:  42% (486/1156)
2022-05-21T20:13:33.7813483Z Receiving objects:  43% (498/1156)
2022-05-21T20:13:33.7813676Z Receiving objects:  44% (509/1156)
2022-05-21T20:13:33.7813871Z Receiving objects:  45% (521/1156)
2022-05-21T20:13:33.7814133Z Receiving objects:  46% (532/1156)
2022-05-21T20:13:33.7814576Z Receiving objects:  47% (544/1156)
2022-05-21T20:13:33.7815048Z Receiving objects:  48% (555/1156)
2022-05-21T20:13:33.7815484Z Receiving objects:  49% (567/1156)
2022-05-21T20:13:33.7815909Z Receiving objects:  50% (578/1156)
2022-05-21T20:13:33.7816671Z Receiving objects:  51% (590/1156)
2022-05-21T20:13:33.7817095Z Receiving objects:  52% (602/1156)
2022-05-21T20:13:33.7817532Z Receiving objects:  53% (613/1156)
2022-05-21T20:13:33.7817844Z Receiving objects:  54% (625/1156)
2022-05-21T20:13:33.7818180Z Receiving objects:  55% (636/1156)
2022-05-21T20:13:33.7818379Z Receiving objects:  56% (648/1156)
2022-05-21T20:13:33.7818646Z Receiving objects:  57% (659/1156)
2022-05-21T20:13:33.7819201Z Receiving objects:  58% (671/1156)
2022-05-21T20:13:33.7819714Z Receiving objects:  59% (683/1156)
2022-05-21T20:13:33.7820276Z Receiving objects:  60% (694/1156)
2022-05-21T20:13:33.7820888Z Receiving objects:  61% (706/1156)
2022-05-21T20:13:33.7821367Z Receiving objects:  62% (717/1156)
2022-05-21T20:13:33.7821900Z Receiving objects:  63% (729/1156)
2022-05-21T20:13:33.7822401Z Receiving objects:  64% (740/1156)
2022-05-21T20:13:33.7822942Z Receiving objects:  65% (752/1156)
2022-05-21T20:13:33.7823643Z Receiving objects:  66% (763/1156)
2022-05-21T20:13:33.7824103Z Receiving objects:  67% (775/1156)
2022-05-21T20:13:33.7824530Z Receiving objects:  68% (787/1156)
2022-05-21T20:13:33.7824930Z Receiving objects:  69% (798/1156)
2022-05-21T20:13:33.7825336Z Receiving objects:  70% (810/1156)
2022-05-21T20:13:33.7825818Z Receiving objects:  71% (821/1156)
2022-05-21T20:13:33.7828251Z remote: Total 1156 (delta 229), reused 320 (delta 151), pack-reused 758        
2022-05-21T20:13:33.7828797Z Receiving objects:  72% (833/1156)
2022-05-21T20:13:33.7829202Z Receiving objects:  73% (844/1156)
2022-05-21T20:13:33.7829625Z Receiving objects:  74% (856/1156)
2022-05-21T20:13:33.7830028Z Receiving objects:  75% (867/1156)
2022-05-21T20:13:33.7830406Z Receiving objects:  76% (879/1156)
2022-05-21T20:13:33.7830776Z Receiving objects:  77% (891/1156)
2022-05-21T20:13:33.7831154Z Receiving objects:  78% (902/1156)
2022-05-21T20:13:33.7831522Z Receiving objects:  79% (914/1156)
2022-05-21T20:13:33.7831891Z Receiving objects:  80% (925/1156)
2022-05-21T20:13:33.7832265Z Receiving objects:  81% (937/1156)
2022-05-21T20:13:33.7832630Z Receiving objects:  82% (948/1156)
2022-05-21T20:13:33.7833015Z Receiving objects:  83% (960/1156)
2022-05-21T20:13:33.7833392Z Receiving objects:  84% (972/1156)
2022-05-21T20:13:33.7833954Z Receiving objects:  85% (983/1156)
2022-05-21T20:13:33.7834354Z Receiving objects:  86% (995/1156)
2022-05-21T20:13:33.7834748Z Receiving objects:  87% (1006/1156)
2022-05-21T20:13:33.7835138Z Receiving objects:  88% (1018/1156)
2022-05-21T20:13:33.7835529Z Receiving objects:  89% (1029/1156)
2022-05-21T20:13:33.7835925Z Receiving objects:  90% (1041/1156)
2022-05-21T20:13:33.7836312Z Receiving objects:  91% (1052/1156)
2022-05-21T20:13:33.7836695Z Receiving objects:  92% (1064/1156)
2022-05-21T20:13:33.7837072Z Receiving objects:  93% (1076/1156)
2022-05-21T20:13:33.7837573Z Receiving objects:  94% (1087/1156)
2022-05-21T20:13:33.7838127Z Receiving objects:  95% (1099/1156)
2022-05-21T20:13:33.7838568Z Receiving objects:  96% (1110/1156)
2022-05-21T20:13:33.7839007Z Receiving objects:  97% (1122/1156)
2022-05-21T20:13:33.7839477Z Receiving objects:  98% (1133/1156)
2022-05-21T20:13:33.7840200Z Receiving objects:  99% (1145/1156)
2022-05-21T20:13:33.7840688Z Receiving objects: 100% (1156/1156)
2022-05-21T20:13:33.7841205Z Receiving objects: 100% (1156/1156), 125.13 KiB | 15.64 MiB/s, done.
2022-05-21T20:13:33.7841764Z Resolving deltas:   0% (0/621)
2022-05-21T20:13:33.7842468Z Resolving deltas:   1% (7/621)
2022-05-21T20:13:33.7842987Z Resolving deltas:   2% (13/621)
2022-05-21T20:13:33.7843506Z Resolving deltas:   3% (19/621)
2022-05-21T20:13:33.7844051Z Resolving deltas:   4% (25/621)
2022-05-21T20:13:33.7844555Z Resolving deltas:   5% (32/621)
2022-05-21T20:13:33.7845057Z Resolving deltas:   6% (38/621)
2022-05-21T20:13:33.7845523Z Resolving deltas:   7% (44/621)
2022-05-21T20:13:33.7846116Z Resolving deltas:   8% (50/621)
2022-05-21T20:13:33.7846670Z Resolving deltas:   9% (57/621)
2022-05-21T20:13:33.7847210Z Resolving deltas:  10% (63/621)
2022-05-21T20:13:33.7847759Z Resolving deltas:  11% (70/621)
2022-05-21T20:13:33.7848258Z Resolving deltas:  12% (75/621)
2022-05-21T20:13:33.7848749Z Resolving deltas:  13% (81/621)
2022-05-21T20:13:33.7849286Z Resolving deltas:  14% (87/621)
2022-05-21T20:13:33.7849758Z Resolving deltas:  15% (94/621)
2022-05-21T20:13:33.7850241Z Resolving deltas:  16% (100/621)
2022-05-21T20:13:33.7850729Z Resolving deltas:  17% (106/621)
2022-05-21T20:13:33.7927458Z Resolving deltas:  18% (112/621)
2022-05-21T20:13:33.7933094Z Resolving deltas:  19% (118/621)
2022-05-21T20:13:33.7933444Z Resolving deltas:  20% (125/621)
2022-05-21T20:13:33.7933670Z Resolving deltas:  21% (132/621)
2022-05-21T20:13:33.7933876Z Resolving deltas:  22% (137/621)
2022-05-21T20:13:33.7934084Z Resolving deltas:  23% (143/621)
2022-05-21T20:13:33.7934365Z Resolving deltas:  24% (150/621)
2022-05-21T20:13:33.7935014Z Resolving deltas:  25% (156/621)
2022-05-21T20:13:33.7935519Z Resolving deltas:  26% (162/621)
2022-05-21T20:13:33.7936217Z Resolving deltas:  27% (168/621)
2022-05-21T20:13:33.7936513Z Resolving deltas:  28% (174/621)
2022-05-21T20:13:33.7936728Z Resolving deltas:  29% (181/621)
2022-05-21T20:13:33.7937019Z Resolving deltas:  30% (187/621)
2022-05-21T20:13:33.7937208Z Resolving deltas:  31% (194/621)
2022-05-21T20:13:33.7937459Z Resolving deltas:  32% (199/621)
2022-05-21T20:13:33.7937665Z Resolving deltas:  33% (205/621)
2022-05-21T20:13:33.7937913Z Resolving deltas:  34% (212/621)
2022-05-21T20:13:33.7938119Z Resolving deltas:  35% (219/621)
2022-05-21T20:13:33.7938836Z Resolving deltas:  36% (224/621)
2022-05-21T20:13:33.7939075Z Resolving deltas:  37% (230/621)
2022-05-21T20:13:33.7939603Z Resolving deltas:  38% (236/621)
2022-05-21T20:13:33.7939819Z Resolving deltas:  39% (243/621)
2022-05-21T20:13:33.7940020Z Resolving deltas:  40% (249/621)
2022-05-21T20:13:33.7940285Z Resolving deltas:  41% (256/621)
2022-05-21T20:13:33.7941171Z Resolving deltas:  42% (261/621)
2022-05-21T20:13:33.7941774Z Resolving deltas:  43% (268/621)
2022-05-21T20:13:33.7941998Z Resolving deltas:  44% (274/621)
2022-05-21T20:13:33.7942194Z Resolving deltas:  45% (280/621)
2022-05-21T20:13:33.7942383Z Resolving deltas:  46% (286/621)
2022-05-21T20:13:33.7942582Z Resolving deltas:  47% (292/621)
2022-05-21T20:13:33.7942838Z Resolving deltas:  48% (299/621)
2022-05-21T20:13:33.7943041Z Resolving deltas:  49% (305/621)
2022-05-21T20:13:33.7943289Z Resolving deltas:  50% (312/621)
2022-05-21T20:13:33.7943759Z Resolving deltas:  51% (317/621)
2022-05-21T20:13:33.7944251Z Resolving deltas:  52% (323/621)
2022-05-21T20:13:33.7944464Z Resolving deltas:  53% (330/621)
2022-05-21T20:13:33.7944656Z Resolving deltas:  54% (336/621)
2022-05-21T20:13:33.7944908Z Resolving deltas:  55% (342/621)
2022-05-21T20:13:33.7945435Z Resolving deltas:  56% (348/621)
2022-05-21T20:13:33.7947238Z Resolving deltas:  57% (354/621)
2022-05-21T20:13:33.7947470Z Resolving deltas:  58% (361/621)
2022-05-21T20:13:33.7947680Z Resolving deltas:  59% (367/621)
2022-05-21T20:13:33.7947985Z Resolving deltas:  60% (373/621)
2022-05-21T20:13:33.7948640Z Resolving deltas:  61% (379/621)
2022-05-21T20:13:33.7949309Z Resolving deltas:  62% (386/621)
2022-05-21T20:13:33.7949760Z Resolving deltas:  63% (392/621)
2022-05-21T20:13:33.7950240Z Resolving deltas:  64% (398/621)
2022-05-21T20:13:33.7950581Z Resolving deltas:  65% (404/621)
2022-05-21T20:13:33.7950789Z Resolving deltas:  66% (410/621)
2022-05-21T20:13:33.7951114Z Resolving deltas:  67% (417/621)
2022-05-21T20:13:33.7951387Z Resolving deltas:  68% (423/621)
2022-05-21T20:13:33.7951592Z Resolving deltas:  69% (429/621)
2022-05-21T20:13:33.7951885Z Resolving deltas:  70% (435/621)
2022-05-21T20:13:33.7952405Z Resolving deltas:  71% (441/621)
2022-05-21T20:13:33.7952855Z Resolving deltas:  72% (448/621)
2022-05-21T20:13:33.7953382Z Resolving deltas:  73% (454/621)
2022-05-21T20:13:33.7953879Z Resolving deltas:  74% (460/621)
2022-05-21T20:13:33.7954401Z Resolving deltas:  75% (466/621)
2022-05-21T20:13:33.7954994Z Resolving deltas:  76% (472/621)
2022-05-21T20:13:33.7955610Z Resolving deltas:  77% (480/621)
2022-05-21T20:13:33.7956090Z Resolving deltas:  78% (485/621)
2022-05-21T20:13:33.7956304Z Resolving deltas:  79% (491/621)
2022-05-21T20:13:33.7956498Z Resolving deltas:  80% (497/621)
2022-05-21T20:13:33.7956760Z Resolving deltas:  81% (504/621)
2022-05-21T20:13:33.7957336Z Resolving deltas:  82% (510/621)
2022-05-21T20:13:33.7957620Z Resolving deltas:  83% (516/621)
2022-05-21T20:13:33.7957823Z Resolving deltas:  84% (522/621)
2022-05-21T20:13:33.7958079Z Resolving deltas:  85% (528/621)
2022-05-21T20:13:33.7958315Z Resolving deltas:  86% (535/621)
2022-05-21T20:13:33.7958514Z Resolving deltas:  87% (541/621)
2022-05-21T20:13:33.7958769Z Resolving deltas:  88% (547/621)
2022-05-21T20:13:33.7958999Z Resolving deltas:  89% (553/621)
2022-05-21T20:13:33.7959190Z Resolving deltas:  90% (561/621)
2022-05-21T20:13:33.7959438Z Resolving deltas:  91% (566/621)
2022-05-21T20:13:33.7959964Z Resolving deltas:  92% (572/621)
2022-05-21T20:13:33.7960270Z Resolving deltas:  93% (578/621)
2022-05-21T20:13:33.7960582Z Resolving deltas:  94% (584/621)
2022-05-21T20:13:33.7960795Z Resolving deltas:  95% (590/621)
2022-05-21T20:13:33.7960986Z Resolving deltas:  96% (597/621)
2022-05-21T20:13:33.7961245Z Resolving deltas:  97% (603/621)
2022-05-21T20:13:33.7961447Z Resolving deltas:  98% (609/621)
2022-05-21T20:13:33.7961639Z Resolving deltas:  99% (615/621)
2022-05-21T20:13:33.7962079Z Resolving deltas: 100% (621/621)
2022-05-21T20:13:33.7962873Z Resolving deltas: 100% (621/621), done.
2022-05-21T20:13:33.7963623Z From https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-21T20:13:33.7964055Z  * [new branch]      master     -> origin/master
2022-05-21T20:13:33.7964434Z [command]/usr/bin/git branch --list --remote origin/master
2022-05-21T20:13:33.7965151Z   origin/master
2022-05-21T20:13:33.7965474Z [command]/usr/bin/git rev-parse refs/remotes/origin/master
2022-05-21T20:13:33.7989025Z b1b87a9ce814a5f0166c4c2f62320311c9d3dd5d
2022-05-21T20:13:33.7991867Z ##[endgroup]
2022-05-21T20:13:33.7992523Z ##[group]Determining the checkout info
2022-05-21T20:13:33.7993792Z ##[endgroup]
2022-05-21T20:13:33.7994387Z ##[group]Checking out the ref
2022-05-21T20:13:33.7997043Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2022-05-21T20:13:33.8064345Z Reset branch 'master'
2022-05-21T20:13:33.8065003Z branch 'master' set up to track 'origin/master'.
2022-05-21T20:13:33.8068847Z ##[endgroup]
2022-05-21T20:13:33.8069572Z ##[group]Setting up auth for fetching submodules
2022-05-21T20:13:33.8073513Z [command]/usr/bin/git config --global http.https://ghe.coxautoinc.com/.extraheader AUTHORIZATION: basic ***
2022-05-21T20:13:33.8122899Z [command]/usr/bin/git config --global --unset-all url.https://ghe.coxautoinc.com/.insteadOf
2022-05-21T20:13:33.8151950Z [command]/usr/bin/git config --global --add url.https://ghe.coxautoinc.com/.insteadOf git@ghe.coxautoinc.com:
2022-05-21T20:13:33.8191231Z [command]/usr/bin/git config --global --add url.https://ghe.coxautoinc.com/.insteadOf org-8930@github.com:
2022-05-21T20:13:33.8220170Z ##[endgroup]
2022-05-21T20:13:33.8221053Z ##[group]Fetching submodules
2022-05-21T20:13:33.8223378Z [command]/usr/bin/git submodule sync --recursive
2022-05-21T20:13:33.8530901Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive
2022-05-21T20:13:33.8862580Z Submodule 'caiCustomResource' (https://ghe.coxautoinc.com/Consumer/consumer-tools-cfn-custom-resource) registered for path 'caiCustomResource'
2022-05-21T20:13:33.8890188Z Cloning into '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/caiCustomResource'...
2022-05-21T20:13:34.0461076Z Submodule path 'caiCustomResource': checked out 'fd6d0b28f28a54c3e1643af041b72308165bc6de'
2022-05-21T20:13:34.0487648Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0
2022-05-21T20:13:34.0795443Z Entering 'caiCustomResource'
2022-05-21T20:13:34.0848289Z ##[endgroup]
2022-05-21T20:13:34.0850711Z ##[group]Persisting credentials for submodules
2022-05-21T20:13:34.0853614Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'url\.https\:\/\/ghe\.coxautoinc\.com\/\.insteadOf' && git config --local --unset-all 'url.https://ghe.coxautoinc.com/.insteadOf' || :
2022-05-21T20:13:34.1125822Z Entering 'caiCustomResource'
2022-05-21T20:13:34.1178334Z [command]/usr/bin/git submodule foreach --recursive git config --local 'http.https://ghe.coxautoinc.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url
2022-05-21T20:13:34.1462178Z Entering 'caiCustomResource'
2022-05-21T20:13:34.1501245Z file:/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/.git/modules/caiCustomResource/config	remote.origin.url
2022-05-21T20:13:34.1551374Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://ghe.coxautoinc.com/.insteadOf' 'git@ghe.coxautoinc.com:'
2022-05-21T20:13:34.1826967Z Entering 'caiCustomResource'
2022-05-21T20:13:34.1881047Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://ghe.coxautoinc.com/.insteadOf' 'org-8930@github.com:'
2022-05-21T20:13:34.2161195Z Entering 'caiCustomResource'
2022-05-21T20:13:34.2210232Z ##[endgroup]
2022-05-21T20:13:34.2250089Z [command]/usr/bin/git log -1 --format='%H'
2022-05-21T20:13:34.2274834Z 'b1b87a9ce814a5f0166c4c2f62320311c9d3dd5d'
2022-05-21T20:13:34.2610997Z ##[group]Run tj-actions/changed-files@chore/test-rename
2022-05-21T20:13:34.2611279Z with:
2022-05-21T20:13:34.2611611Z   token: ***
2022-05-21T20:13:34.2611795Z   files: ./robots_files/*
2022-05-21T20:13:34.2611993Z   old_new_files_separator: |
2022-05-21T20:13:34.2612185Z   separator:  
2022-05-21T20:13:34.2612366Z   old_new_separator: ,
2022-05-21T20:13:34.2612553Z   files_separator: 

2022-05-21T20:13:34.2612745Z   files_ignore_separator: 

2022-05-21T20:13:34.2612964Z   sha: b1b87a9ce814a5f0166c4c2f62320311c9d3dd5d
2022-05-21T20:13:34.2613190Z   since_last_remote_commit: false
2022-05-21T20:13:34.2613388Z   use_fork_point: false
2022-05-21T20:13:34.2613572Z   quotepath: true
2022-05-21T20:13:34.2613747Z ##[endgroup]
2022-05-21T20:13:34.2888076Z ##[group]Run # "Set base sha..."
2022-05-21T20:13:34.2888384Z �[36;1m# "Set base sha..."�[0m
2022-05-21T20:13:34.2888597Z �[36;1mif [[ -n "" ]]; then�[0m
2022-05-21T20:13:34.2888816Z �[36;1m  echo "::set-output name=base_sha::"�[0m
2022-05-21T20:13:34.2889114Z �[36;1melif [[ "false" == "true" && "" != "0000000000000000000000000000000000000000" ]]; then�[0m
2022-05-21T20:13:34.2889377Z �[36;1m    echo "::set-output name=base_sha::"�[0m
2022-05-21T20:13:34.2889585Z �[36;1mfi�[0m
2022-05-21T20:13:34.2903752Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-21T20:13:34.2904018Z ##[endgroup]
2022-05-21T20:13:34.3051269Z ##[group]Run # "Calculating the previous and current SHA..."
2022-05-21T20:13:34.3051718Z �[36;1m# "Calculating the previous and current SHA..."�[0m
2022-05-21T20:13:34.3051982Z �[36;1mbash $GITHUB_ACTION_PATH/diff-sha.sh�[0m
2022-05-21T20:13:34.3061923Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-21T20:13:34.3062180Z env:
2022-05-21T20:13:34.3062416Z   GITHUB_SERVER_URL: https://ghe.coxautoinc.com
2022-05-21T20:13:34.3062679Z   GITHUB_REPOSITORY: Consumer/SEO-AWS-TOOLS
2022-05-21T20:13:34.3063037Z   GITHUB_BASE_REF: 
2022-05-21T20:13:34.3063292Z   GITHUB_HEAD_REF: 
2022-05-21T20:13:34.3063602Z   GITHUB_ACTION_PATH: /runner/_work/_actions/tj-actions/changed-files/chore/test-rename
2022-05-21T20:13:34.3064054Z   INPUT_SHA: b1b87a9ce814a5f0166c4c2f62320311c9d3dd5d
2022-05-21T20:13:34.3064335Z   INPUT_BASE_SHA: 
2022-05-21T20:13:34.3064774Z   INPUT_TOKEN: ***
2022-05-21T20:13:34.3065004Z   INPUT_PATH: 
2022-05-21T20:13:34.3065291Z   INPUT_USE_FORK_POINT: false
2022-05-21T20:13:34.3065525Z ##[endgroup]
2022-05-21T20:13:34.3131487Z ##[group]changed-files-diff-sha
2022-05-21T20:13:34.3131850Z Resolving repository path...
2022-05-21T20:13:34.3132257Z Getting HEAD SHA...
2022-05-21T20:13:34.4799749Z remote: Total 0 (delta 0), reused 0 (delta 0), pack-reused 0        
2022-05-21T20:13:34.4939979Z ##[endgroup]
2022-05-21T20:13:34.4979627Z ##[group]Run tj-actions/glob@v7.20
2022-05-21T20:13:34.4979832Z with:
2022-05-21T20:13:34.4980008Z   files: ./robots_files/*
2022-05-21T20:13:34.4980200Z   files-separator: 

2022-05-21T20:13:34.4980399Z   escape-paths: true
2022-05-21T20:13:34.4980617Z   excluded-files-separator: 

2022-05-21T20:13:34.4980880Z   base-sha: 04ba953ece1d236db3d2fd621dababdcc720f6aa
2022-05-21T20:13:34.4981133Z   sha: b1b87a9ce814a5f0166c4c2f62320311c9d3dd5d
2022-05-21T20:13:34.4981356Z   include-deleted-files: true
2022-05-21T20:13:34.4981552Z   separator: |
2022-05-21T20:13:34.4981763Z   files-from-source-file-separator: 

2022-05-21T20:13:34.4982033Z   excluded-files-from-source-file-separator: 

2022-05-21T20:13:34.4982280Z   follow-symbolic-links: true
2022-05-21T20:13:34.4982501Z   strip-top-level-dir: true
2022-05-21T20:13:34.4982701Z ##[endgroup]
2022-05-21T20:13:34.6769662Z [command]/usr/bin/git rev-parse --show-toplevel
2022-05-21T20:13:34.6817539Z /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-21T20:13:34.6842502Z [command]/usr/bin/git diff --diff-filter=D --name-only 04ba953ece1d236db3d2fd621dababdcc720f6aa b1b87a9ce814a5f0166c4c2f62320311c9d3dd5d
2022-05-21T20:13:34.6876991Z 
2022-05-21T20:13:34.6891408Z 
2022-05-21T20:13:34.6894877Z Successfully created paths-output-file: /tmp/a283da9d-3ec0-457c-9ed7-faa13df70ce6.txt
2022-05-21T20:13:34.6956259Z ##[group]Run bash $GITHUB_ACTION_PATH/entrypoint.sh
2022-05-21T20:13:34.6956557Z �[36;1mbash $GITHUB_ACTION_PATH/entrypoint.sh�[0m
2022-05-21T20:13:34.6967220Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-21T20:13:34.6967463Z env:
2022-05-21T20:13:34.6967720Z   GITHUB_ACTION_PATH: /runner/_work/_actions/tj-actions/changed-files/chore/test-rename
2022-05-21T20:13:34.6968061Z   INPUT_FILES_PATTERN_FILE: /tmp/a283da9d-3ec0-457c-9ed7-faa13df70ce6.txt
2022-05-21T20:13:34.6968314Z   INPUT_SEPARATOR:  
2022-05-21T20:13:34.6968515Z   INPUT_PATH: 
2022-05-21T20:13:34.6968753Z   INPUT_PREVIOUS_SHA: 04ba953ece1d236db3d2fd621dababdcc720f6aa
2022-05-21T20:13:34.6969040Z   INPUT_CURRENT_SHA: b1b87a9ce814a5f0166c4c2f62320311c9d3dd5d
2022-05-21T20:13:34.6969272Z   INPUT_TARGET_BRANCH: master
2022-05-21T20:13:34.6969478Z   INPUT_CURRENT_BRANCH: master
2022-05-21T20:13:34.6969678Z   INPUT_QUOTEPATH: true
2022-05-21T20:13:34.6969883Z   INPUT_OLD_NEW_SEPARATOR: ,
2022-05-21T20:13:34.6970114Z   INPUT_OLD_NEW_FILES_SEPARATOR: |
2022-05-21T20:13:34.6970316Z ##[endgroup]
2022-05-21T20:13:34.7059651Z ##[group]changed-files
2022-05-21T20:13:34.7060054Z Resolving repository path...
2022-05-21T20:13:34.7061314Z Retrieving changes between 04ba953ece1d236db3d2fd621dababdcc720f6aa (master) → b1b87a9ce814a5f0166c4c2f62320311c9d3dd5d (master)
2022-05-21T20:13:34.7061841Z Getting diff...
2022-05-21T20:13:35.4016161Z Matching changed files: robots_files/robots-kbb-1.txt|robots_files/robots-kbb-2.txt
2022-05-21T20:13:35.4064184Z Non Matching changed files: .github/workflows/test.yml host-mappings.json
2022-05-21T20:13:35.4539376Z Matching modified files: robots_files/robots-kbb-1.txt|robots_files/robots-kbb-2.txt
2022-05-21T20:13:35.4578843Z Non Matching modified files: .github/workflows/test.yml host-mappings.json
2022-05-21T20:13:35.5233843Z Added files: 
2022-05-21T20:13:35.5234194Z Copied files: 
2022-05-21T20:13:35.5234490Z Deleted files: 
2022-05-21T20:13:35.5234785Z Modified files: 
2022-05-21T20:13:35.5235882Z Renamed files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
2022-05-21T20:13:35.5236303Z Type Changed files: 
2022-05-21T20:13:35.5236589Z Unmerged files: 
2022-05-21T20:13:35.5236773Z Unknown files: 
2022-05-21T20:13:35.5237140Z All changed and modified files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
2022-05-21T20:13:35.5237563Z All changed files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
2022-05-21T20:13:35.5238016Z All modified files: robots_files/robots-kbb-1.txt robots_files/robots-kbb-2.txt
2022-05-21T20:13:35.5238362Z All old & new renamed files: 
2022-05-21T20:13:35.5242338Z ##[endgroup]
2022-05-21T20:13:35.5341317Z ##[group]Run for file in ; do
2022-05-21T20:13:35.5341572Z �[36;1mfor file in ; do�[0m
2022-05-21T20:13:35.5341765Z �[36;1m  echo $file�[0m
2022-05-21T20:13:35.5341941Z �[36;1mdone�[0m
2022-05-21T20:13:35.5352412Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-21T20:13:35.5352655Z ##[endgroup]
2022-05-21T20:13:35.5498059Z Post job cleanup.
2022-05-21T20:13:35.5527743Z Post job cleanup.
2022-05-21T20:13:35.5934767Z deleted paths-output-file: /tmp/a283da9d-3ec0-457c-9ed7-faa13df70ce6.txt
2022-05-21T20:13:35.5992968Z Post job cleanup.
2022-05-21T20:13:35.6994387Z [command]/usr/bin/git version
2022-05-21T20:13:35.7046152Z git version 2.36.1
2022-05-21T20:13:35.7081816Z Copying '/home/runner/.gitconfig' to '/runner/_work/_temp/7e0086db-565c-4180-b829-1e1c45e07bda/.gitconfig'
2022-05-21T20:13:35.7092915Z Temporarily overriding HOME='/runner/_work/_temp/7e0086db-565c-4180-b829-1e1c45e07bda' before making global git config changes
2022-05-21T20:13:35.7093789Z Adding repository directory to the temporary git global config as a safe directory
2022-05-21T20:13:35.7098202Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-21T20:13:35.7139568Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-21T20:13:35.7173223Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-21T20:13:35.7571189Z Entering 'caiCustomResource'
2022-05-21T20:13:35.7629999Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-21T20:13:35.7660727Z http.https://ghe.coxautoinc.com/.extraheader
2022-05-21T20:13:35.7668895Z [command]/usr/bin/git config --local --unset-all http.https://ghe.coxautoinc.com/.extraheader
2022-05-21T20:13:35.7699722Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-21T20:13:35.8086602Z Entering 'caiCustomResource'
2022-05-21T20:13:35.8110680Z http.https://ghe.coxautoinc.com/.extraheader
2022-05-21T20:13:35.8361052Z Cleaning up orphan processes

@stevegroner
Copy link

FYI, same with or without the token line...

@jackton1 jackton1 reopened this May 22, 2022
@jackton1
Copy link
Member

jackton1 commented May 22, 2022

@stevegroner Can you verify that the commit being compared has the renamed files from all the tests I ran it returns an output with the old and new filenames?

I recommend using the pull_request event to verify that the rename is present on a pull request branch.

on:
  pull_request:
    branches:
      - main

Test

On Workflow Dispatch

See:

9B8D3F65-C92E-4F44-BF10-5834275529A5

On Pull request
95E0BA3D-4D9B-443C-ACD3-87C4265FD9B3

On Push
7CF85DFC-A193-4FD7-A581-FBFE5BE3428B

@stevegroner
Copy link

stevegroner commented May 22, 2022

@jackton1

I tested it with the following:

name: Process File Changes

on:
  pull_request:
    branches:
      - master

jobs:

  Process-Files-Test:

    runs-on: [ self-hosted ]
    defaults:
      run:
        shell: bash

    steps:

      - name: Git checkout
        uses: actions/checkout@v2
        with:
          fetch-depth: '0'

      - name: Checkout Source Code
        uses: actions/checkout@v3
        with:
          submodules: 'recursive'
          token: ${{ secrets.TOKEN }}
          fetch-depth: 0

      - name: Get Renamed robots.txt files
        id: renamed-files-robots-files
        uses: tj-actions/changed-files@v20
        with:
          files: ./robots_files/*
          old_new_files_separator: "|"

      - name: Rename Robots.txt Files
        if: steps.renamed-files-robots-files.outputs.any_changed == 'true'
        run: |
          for file in ${{ steps.renamed-files-robots-files.outputs.old_new_renamed_files }}; do
            echo $file
          done

The result was the same. I did not see any difference.

2022-05-22T14:20:49.9681718Z Found online and idle self-hosted runner in the  current repository's enterprise account that matches the required labels: 'self-hosted'
2022-05-22T14:20:50.0221389Z Waiting for the runner to pick up this job...
2022-05-22T14:20:50.1289071Z Job is about to start running on the runner: cai-enterprise-ubuntu-awsactionrunners-6gb-rxkh9-5jvng (enterprise)
2022-05-22T14:20:56.2149418Z Current runner version: '2.289.1'
2022-05-22T14:20:56.2155643Z Runner name: 'cai-enterprise-ubuntu-awsactionrunners-6gb-rxkh9-5jvng'
2022-05-22T14:20:56.2156287Z Runner group name: 'CAI Enterprise Runners'
2022-05-22T14:20:56.2157048Z Machine name: 'cai-enterprise-ubuntu-awsactionrunners-6gb-rxkh9-5jvng'
2022-05-22T14:20:56.2159225Z ##[group]GITHUB_TOKEN Permissions
2022-05-22T14:20:56.2160153Z Actions: write
2022-05-22T14:20:56.2160453Z Checks: write
2022-05-22T14:20:56.2160731Z Contents: write
2022-05-22T14:20:56.2161023Z Deployments: write
2022-05-22T14:20:56.2161325Z Discussions: write
2022-05-22T14:20:56.2161607Z Issues: write
2022-05-22T14:20:56.2161876Z Metadata: read
2022-05-22T14:20:56.2162187Z Packages: write
2022-05-22T14:20:56.2162601Z Pages: write
2022-05-22T14:20:56.2163088Z PullRequests: write
2022-05-22T14:20:56.2163462Z RepositoryProjects: write
2022-05-22T14:20:56.2163962Z SecurityEvents: write
2022-05-22T14:20:56.2164415Z Statuses: write
2022-05-22T14:20:56.2164959Z ##[endgroup]
2022-05-22T14:20:56.2168610Z Prepare workflow directory
2022-05-22T14:20:56.3034465Z Prepare all required actions
2022-05-22T14:20:56.3220734Z Getting action download info
2022-05-22T14:20:56.6735956Z Download action repository 'actions/checkout@v2' (SHA:7884fcad6b5d53d10323aee724dc68d8b9096a2e)
2022-05-22T14:20:57.0077557Z Download action repository 'actions/checkout@v3' (SHA:2541b1294d2704b0964813337f33b291d3f8596b)
2022-05-22T14:20:57.2506144Z Download action repository 'tj-actions/changed-files@v20' (SHA:581eef0495dd5b75a3dd93047ff9f0d42dc09370)
2022-05-22T14:20:57.5579426Z Getting action download info
2022-05-22T14:20:57.8633261Z Download action repository 'tj-actions/glob@v7.20' (SHA:95ff4236144967424139d2fb9776bb79d93afdca)
2022-05-22T14:20:58.1524610Z ##[group]Run actions/checkout@v2
2022-05-22T14:20:58.1524855Z with:
2022-05-22T14:20:58.1525024Z   fetch-depth: 0
2022-05-22T14:20:58.1525227Z   repository: Consumer/SEO-AWS-TOOLS
2022-05-22T14:20:58.1525569Z   token: ***
2022-05-22T14:20:58.1525742Z   ssh-strict: true
2022-05-22T14:20:58.1525939Z   persist-credentials: true
2022-05-22T14:20:58.1526127Z   clean: true
2022-05-22T14:20:58.1526290Z   lfs: false
2022-05-22T14:20:58.1526448Z   submodules: false
2022-05-22T14:20:58.1526639Z   set-safe-directory: true
2022-05-22T14:20:58.1526827Z ##[endgroup]
2022-05-22T14:20:58.2789080Z Syncing repository: Consumer/SEO-AWS-TOOLS
2022-05-22T14:20:58.2790482Z ##[group]Getting Git version info
2022-05-22T14:20:58.2790927Z Working directory is '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS'
2022-05-22T14:20:58.2791470Z [command]/usr/bin/git version
2022-05-22T14:20:58.2850138Z git version 2.35.1
2022-05-22T14:20:58.2868318Z ##[endgroup]
2022-05-22T14:20:58.2882284Z Temporarily overriding HOME='/runner/_work/_temp/3383d632-82b7-43fc-9fe3-7ed01e30ddc4' before making global git config changes
2022-05-22T14:20:58.2882971Z Adding repository directory to the temporary git global config as a safe directory
2022-05-22T14:20:58.2886335Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T14:20:58.2921939Z Deleting the contents of '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS'
2022-05-22T14:20:58.2925398Z ##[group]Initializing the repository
2022-05-22T14:20:58.2928471Z [command]/usr/bin/git init /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T14:20:58.2965894Z hint: Using 'master' as the name for the initial branch. This default branch name
2022-05-22T14:20:58.2966508Z hint: is subject to change. To configure the initial branch name to use in all
2022-05-22T14:20:58.2967104Z hint: of your new repositories, which will suppress this warning, call:
2022-05-22T14:20:58.2967494Z hint: 
2022-05-22T14:20:58.2967956Z hint: 	git config --global init.defaultBranch <name>
2022-05-22T14:20:58.3002360Z hint: 
2022-05-22T14:20:58.3002912Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2022-05-22T14:20:58.3003475Z hint: 'development'. The just-created branch can be renamed via this command:
2022-05-22T14:20:58.3003829Z hint: 
2022-05-22T14:20:58.3004402Z hint: 	git branch -m <name>
2022-05-22T14:20:58.3004926Z Initialized empty Git repository in /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/.git/
2022-05-22T14:20:58.3005579Z [command]/usr/bin/git remote add origin https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-22T14:20:58.3020583Z ##[endgroup]
2022-05-22T14:20:58.3021113Z ##[group]Disabling automatic garbage collection
2022-05-22T14:20:58.3024234Z [command]/usr/bin/git config --local gc.auto 0
2022-05-22T14:20:58.3049817Z ##[endgroup]
2022-05-22T14:20:58.3050278Z ##[group]Setting up auth
2022-05-22T14:20:58.3056397Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-22T14:20:58.3084926Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-22T14:20:58.3675441Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-22T14:20:58.3703690Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-22T14:20:58.4047189Z [command]/usr/bin/git config --local http.https://ghe.coxautoinc.com/.extraheader AUTHORIZATION: basic ***
2022-05-22T14:20:58.4087070Z ##[endgroup]
2022-05-22T14:20:58.4087585Z ##[group]Fetching the repository
2022-05-22T14:20:58.4094947Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* +148b60f7f473801e9b30dc03a1199cf9508f4a85:refs/remotes/pull/1/merge
2022-05-22T14:20:58.9939352Z remote: Enumerating objects: 1184, done.        
2022-05-22T14:20:58.9939757Z remote: Counting objects:   0% (1/426)        
2022-05-22T14:20:58.9940094Z remote: Counting objects:   1% (5/426)        
2022-05-22T14:20:58.9940323Z remote: Counting objects:   2% (9/426)        
2022-05-22T14:20:58.9940545Z remote: Counting objects:   3% (13/426)        
2022-05-22T14:20:58.9940762Z remote: Counting objects:   4% (18/426)        
2022-05-22T14:20:58.9941018Z remote: Counting objects:   5% (22/426)        
2022-05-22T14:20:58.9941270Z remote: Counting objects:   6% (26/426)        
2022-05-22T14:20:58.9941668Z remote: Counting objects:   7% (30/426)        
2022-05-22T14:20:58.9942088Z remote: Counting objects:   8% (35/426)        
2022-05-22T14:20:58.9942482Z remote: Counting objects:   9% (39/426)        
2022-05-22T14:20:58.9942864Z remote: Counting objects:  10% (43/426)        
2022-05-22T14:20:58.9943259Z remote: Counting objects:  11% (47/426)        
2022-05-22T14:20:58.9943645Z remote: Counting objects:  12% (52/426)        
2022-05-22T14:20:58.9944031Z remote: Counting objects:  13% (56/426)        
2022-05-22T14:20:58.9944424Z remote: Counting objects:  14% (60/426)        
2022-05-22T14:20:58.9944738Z remote: Counting objects:  15% (64/426)        
2022-05-22T14:20:58.9945164Z remote: Counting objects:  16% (69/426)        
2022-05-22T14:20:58.9945609Z remote: Counting objects:  17% (73/426)        
2022-05-22T14:20:58.9946041Z remote: Counting objects:  18% (77/426)        
2022-05-22T14:20:58.9946450Z remote: Counting objects:  19% (81/426)        
2022-05-22T14:20:58.9946855Z remote: Counting objects:  20% (86/426)        
2022-05-22T14:20:58.9947262Z remote: Counting objects:  21% (90/426)        
2022-05-22T14:20:58.9947650Z remote: Counting objects:  22% (94/426)        
2022-05-22T14:20:58.9947996Z remote: Counting objects:  23% (98/426)        
2022-05-22T14:20:58.9948260Z remote: Counting objects:  24% (103/426)        
2022-05-22T14:20:58.9948536Z remote: Counting objects:  25% (107/426)        
2022-05-22T14:20:58.9948793Z remote: Counting objects:  26% (111/426)        
2022-05-22T14:20:58.9949049Z remote: Counting objects:  27% (116/426)        
2022-05-22T14:20:58.9949300Z remote: Counting objects:  28% (120/426)        
2022-05-22T14:20:58.9949740Z remote: Counting objects:  29% (124/426)        
2022-05-22T14:20:58.9949986Z remote: Counting objects:  30% (128/426)        
2022-05-22T14:20:58.9950229Z remote: Counting objects:  31% (133/426)        
2022-05-22T14:20:58.9950471Z remote: Counting objects:  32% (137/426)        
2022-05-22T14:20:58.9950715Z remote: Counting objects:  33% (141/426)        
2022-05-22T14:20:58.9950955Z remote: Counting objects:  34% (145/426)        
2022-05-22T14:20:58.9951193Z remote: Counting objects:  35% (150/426)        
2022-05-22T14:20:58.9951433Z remote: Counting objects:  36% (154/426)        
2022-05-22T14:20:58.9951645Z remote: Counting objects:  37% (158/426)        
2022-05-22T14:20:58.9951849Z remote: Counting objects:  38% (162/426)        
2022-05-22T14:20:58.9952057Z remote: Counting objects:  39% (167/426)        
2022-05-22T14:20:58.9952249Z remote: Counting objects:  40% (171/426)        
2022-05-22T14:20:58.9952442Z remote: Counting objects:  41% (175/426)        
2022-05-22T14:20:58.9952641Z remote: Counting objects:  42% (179/426)        
2022-05-22T14:20:58.9952834Z remote: Counting objects:  43% (184/426)        
2022-05-22T14:20:58.9953031Z remote: Counting objects:  44% (188/426)        
2022-05-22T14:20:58.9953223Z remote: Counting objects:  45% (192/426)        
2022-05-22T14:20:58.9953415Z remote: Counting objects:  46% (196/426)        
2022-05-22T14:20:58.9953611Z remote: Counting objects:  47% (201/426)        
2022-05-22T14:20:58.9953807Z remote: Counting objects:  48% (205/426)        
2022-05-22T14:20:58.9954002Z remote: Counting objects:  49% (209/426)        
2022-05-22T14:20:58.9954194Z remote: Counting objects:  50% (213/426)        
2022-05-22T14:20:58.9954464Z remote: Counting objects:  51% (218/426)        
2022-05-22T14:20:58.9954843Z remote: Counting objects:  52% (222/426)        
2022-05-22T14:20:58.9955186Z remote: Counting objects:  53% (226/426)        
2022-05-22T14:20:58.9955502Z remote: Counting objects:  54% (231/426)        
2022-05-22T14:20:58.9955819Z remote: Counting objects:  55% (235/426)        
2022-05-22T14:20:58.9956023Z remote: Counting objects:  56% (239/426)        
2022-05-22T14:20:58.9956225Z remote: Counting objects:  57% (243/426)        
2022-05-22T14:20:58.9956419Z remote: Counting objects:  58% (248/426)        
2022-05-22T14:20:58.9956611Z remote: Counting objects:  59% (252/426)        
2022-05-22T14:20:58.9956804Z remote: Counting objects:  60% (256/426)        
2022-05-22T14:20:58.9957007Z remote: Counting objects:  61% (260/426)        
2022-05-22T14:20:58.9957202Z remote: Counting objects:  62% (265/426)        
2022-05-22T14:20:58.9957406Z remote: Counting objects:  63% (269/426)        
2022-05-22T14:20:58.9957684Z remote: Counting objects:  64% (273/426)        
2022-05-22T14:20:58.9957879Z remote: Counting objects:  65% (277/426)        
2022-05-22T14:20:58.9958075Z remote: Counting objects:  66% (282/426)        
2022-05-22T14:20:58.9958269Z remote: Counting objects:  67% (286/426)        
2022-05-22T14:20:58.9958465Z remote: Counting objects:  68% (290/426)        
2022-05-22T14:20:58.9958658Z remote: Counting objects:  69% (294/426)        
2022-05-22T14:20:58.9958849Z remote: Counting objects:  70% (299/426)        
2022-05-22T14:20:58.9959039Z remote: Counting objects:  71% (303/426)        
2022-05-22T14:20:58.9959232Z remote: Counting objects:  72% (307/426)        
2022-05-22T14:20:58.9959426Z remote: Counting objects:  73% (311/426)        
2022-05-22T14:20:58.9959827Z remote: Counting objects:  74% (316/426)        
2022-05-22T14:20:58.9960032Z remote: Counting objects:  75% (320/426)        
2022-05-22T14:20:58.9960229Z remote: Counting objects:  76% (324/426)        
2022-05-22T14:20:58.9960424Z remote: Counting objects:  77% (329/426)        
2022-05-22T14:20:58.9960630Z remote: Counting objects:  78% (333/426)        
2022-05-22T14:20:58.9960826Z remote: Counting objects:  79% (337/426)        
2022-05-22T14:20:58.9961021Z remote: Counting objects:  80% (341/426)        
2022-05-22T14:20:58.9961327Z remote: Counting objects:  81% (346/426)        
2022-05-22T14:20:58.9961522Z remote: Counting objects:  82% (350/426)        
2022-05-22T14:20:58.9961716Z remote: Counting objects:  83% (354/426)        
2022-05-22T14:20:58.9961908Z remote: Counting objects:  84% (358/426)        
2022-05-22T14:20:58.9962105Z remote: Counting objects:  85% (363/426)        
2022-05-22T14:20:58.9962303Z remote: Counting objects:  86% (367/426)        
2022-05-22T14:20:58.9962496Z remote: Counting objects:  87% (371/426)        
2022-05-22T14:20:58.9962691Z remote: Counting objects:  88% (375/426)        
2022-05-22T14:20:58.9962884Z remote: Counting objects:  89% (380/426)        
2022-05-22T14:20:58.9963079Z remote: Counting objects:  90% (384/426)        
2022-05-22T14:20:58.9963273Z remote: Counting objects:  91% (388/426)        
2022-05-22T14:20:58.9963473Z remote: Counting objects:  92% (392/426)        
2022-05-22T14:20:58.9963665Z remote: Counting objects:  93% (397/426)        
2022-05-22T14:20:58.9963905Z remote: Counting objects:  94% (401/426)        
2022-05-22T14:20:58.9964107Z remote: Counting objects:  95% (405/426)        
2022-05-22T14:20:58.9964303Z remote: Counting objects:  96% (409/426)        
2022-05-22T14:20:58.9964496Z remote: Counting objects:  97% (414/426)        
2022-05-22T14:20:58.9964691Z remote: Counting objects:  98% (418/426)        
2022-05-22T14:20:58.9964886Z remote: Counting objects:  99% (422/426)        
2022-05-22T14:20:58.9965080Z remote: Counting objects: 100% (426/426)        
2022-05-22T14:20:58.9965390Z remote: Counting objects: 100% (426/426), done.        
2022-05-22T14:20:58.9965755Z remote: Compressing objects:   0% (1/225)        
2022-05-22T14:20:58.9966169Z remote: Compressing objects:   1% (3/225)        
2022-05-22T14:20:58.9966512Z remote: Compressing objects:   2% (5/225)        
2022-05-22T14:20:58.9966842Z remote: Compressing objects:   3% (7/225)        
2022-05-22T14:20:58.9967176Z remote: Compressing objects:   4% (9/225)        
2022-05-22T14:20:58.9967508Z remote: Compressing objects:   5% (12/225)        
2022-05-22T14:20:58.9967855Z remote: Compressing objects:   6% (14/225)        
2022-05-22T14:20:58.9968109Z remote: Compressing objects:   7% (16/225)        
2022-05-22T14:20:58.9968423Z remote: Compressing objects:   8% (18/225)        
2022-05-22T14:20:58.9968762Z remote: Compressing objects:   9% (21/225)        
2022-05-22T14:20:58.9969090Z remote: Compressing objects:  10% (23/225)        
2022-05-22T14:20:58.9969317Z remote: Compressing objects:  11% (25/225)        
2022-05-22T14:20:58.9969523Z remote: Compressing objects:  12% (27/225)        
2022-05-22T14:20:58.9969742Z remote: Compressing objects:  13% (30/225)        
2022-05-22T14:20:58.9970102Z remote: Compressing objects:  14% (32/225)        
2022-05-22T14:20:58.9970447Z remote: Compressing objects:  15% (34/225)        
2022-05-22T14:20:58.9970789Z remote: Compressing objects:  16% (36/225)        
2022-05-22T14:20:58.9971125Z remote: Compressing objects:  17% (39/225)        
2022-05-22T14:20:58.9971456Z remote: Compressing objects:  18% (41/225)        
2022-05-22T14:20:58.9971784Z remote: Compressing objects:  19% (43/225)        
2022-05-22T14:20:58.9972113Z remote: Compressing objects:  20% (45/225)        
2022-05-22T14:20:58.9972441Z remote: Compressing objects:  21% (48/225)        
2022-05-22T14:20:58.9972767Z remote: Compressing objects:  22% (50/225)        
2022-05-22T14:20:58.9973088Z remote: Compressing objects:  23% (52/225)        
2022-05-22T14:20:58.9973425Z remote: Compressing objects:  24% (54/225)        
2022-05-22T14:20:58.9973751Z remote: Compressing objects:  25% (57/225)        
2022-05-22T14:20:58.9974077Z remote: Compressing objects:  26% (59/225)        
2022-05-22T14:20:58.9974407Z remote: Compressing objects:  27% (61/225)        
2022-05-22T14:20:58.9974748Z remote: Compressing objects:  28% (63/225)        
2022-05-22T14:20:58.9975091Z remote: Compressing objects:  29% (66/225)        
2022-05-22T14:20:58.9975421Z remote: Compressing objects:  30% (68/225)        
2022-05-22T14:20:58.9975771Z remote: Compressing objects:  31% (70/225)        
2022-05-22T14:20:58.9975975Z remote: Compressing objects:  32% (72/225)        
2022-05-22T14:20:58.9976183Z remote: Compressing objects:  33% (75/225)        
2022-05-22T14:20:58.9976385Z remote: Compressing objects:  34% (77/225)        
2022-05-22T14:20:58.9976587Z remote: Compressing objects:  35% (79/225)        
2022-05-22T14:20:58.9976866Z remote: Compressing objects:  36% (81/225)        
2022-05-22T14:20:58.9977197Z remote: Compressing objects:  37% (84/225)        
2022-05-22T14:20:58.9977518Z remote: Compressing objects:  38% (86/225)        
2022-05-22T14:20:58.9977833Z remote: Compressing objects:  39% (88/225)        
2022-05-22T14:20:58.9978168Z remote: Compressing objects:  40% (90/225)        
2022-05-22T14:20:58.9978499Z remote: Compressing objects:  41% (93/225)        
2022-05-22T14:20:58.9978841Z remote: Compressing objects:  42% (95/225)        
2022-05-22T14:20:58.9979169Z remote: Compressing objects:  43% (97/225)        
2022-05-22T14:20:58.9979502Z remote: Compressing objects:  44% (99/225)        
2022-05-22T14:20:58.9979839Z remote: Compressing objects:  45% (102/225)        
2022-05-22T14:20:58.9980187Z remote: Compressing objects:  46% (104/225)        
2022-05-22T14:20:58.9980535Z remote: Compressing objects:  47% (106/225)        
2022-05-22T14:20:58.9980874Z remote: Compressing objects:  48% (108/225)        
2022-05-22T14:20:58.9981206Z remote: Compressing objects:  49% (111/225)        
2022-05-22T14:20:58.9981537Z remote: Compressing objects:  50% (113/225)        
2022-05-22T14:20:58.9981862Z remote: Compressing objects:  51% (115/225)        
2022-05-22T14:20:58.9982260Z remote: Compressing objects:  52% (117/225)        
2022-05-22T14:20:58.9982609Z remote: Compressing objects:  53% (120/225)        
2022-05-22T14:20:58.9982950Z remote: Compressing objects:  54% (122/225)        
2022-05-22T14:20:58.9983282Z remote: Compressing objects:  55% (124/225)        
2022-05-22T14:20:58.9983625Z remote: Compressing objects:  56% (126/225)        
2022-05-22T14:20:58.9983962Z remote: Compressing objects:  57% (129/225)        
2022-05-22T14:20:58.9984290Z remote: Compressing objects:  58% (131/225)        
2022-05-22T14:20:58.9984622Z remote: Compressing objects:  59% (133/225)        
2022-05-22T14:20:58.9984954Z remote: Compressing objects:  60% (135/225)        
2022-05-22T14:20:58.9985277Z remote: Compressing objects:  61% (138/225)        
2022-05-22T14:20:58.9985612Z remote: Compressing objects:  62% (140/225)        
2022-05-22T14:20:58.9985947Z remote: Compressing objects:  63% (142/225)        
2022-05-22T14:20:58.9986277Z remote: Compressing objects:  64% (144/225)        
2022-05-22T14:20:58.9986610Z remote: Compressing objects:  65% (147/225)        
2022-05-22T14:20:58.9986943Z remote: Compressing objects:  66% (149/225)        
2022-05-22T14:20:58.9987274Z remote: Compressing objects:  67% (151/225)        
2022-05-22T14:20:58.9987604Z remote: Compressing objects:  68% (153/225)        
2022-05-22T14:20:58.9987948Z remote: Compressing objects:  69% (156/225)        
2022-05-22T14:20:58.9988278Z remote: Compressing objects:  70% (158/225)        
2022-05-22T14:20:58.9988611Z remote: Compressing objects:  71% (160/225)        
2022-05-22T14:20:58.9988933Z remote: Compressing objects:  72% (162/225)        
2022-05-22T14:20:58.9989216Z remote: Compressing objects:  73% (165/225)        
2022-05-22T14:20:58.9989545Z remote: Compressing objects:  74% (167/225)        
2022-05-22T14:20:58.9989809Z remote: Compressing objects:  75% (169/225)        
2022-05-22T14:20:58.9990106Z remote: Compressing objects:  76% (171/225)        
2022-05-22T14:20:58.9990433Z remote: Compressing objects:  77% (174/225)        
2022-05-22T14:20:58.9990760Z remote: Compressing objects:  78% (176/225)        
2022-05-22T14:20:58.9991095Z remote: Compressing objects:  79% (178/225)        
2022-05-22T14:20:58.9991390Z remote: Compressing objects:  80% (180/225)        
2022-05-22T14:20:58.9991598Z remote: Compressing objects:  81% (183/225)        
2022-05-22T14:20:58.9991869Z remote: Compressing objects:  82% (185/225)        
2022-05-22T14:20:58.9992081Z remote: Compressing objects:  83% (187/225)        
2022-05-22T14:20:58.9992287Z remote: Compressing objects:  84% (189/225)        
2022-05-22T14:20:58.9992490Z remote: Compressing objects:  85% (192/225)        
2022-05-22T14:20:58.9992695Z remote: Compressing objects:  86% (194/225)        
2022-05-22T14:20:58.9992895Z remote: Compressing objects:  87% (196/225)        
2022-05-22T14:20:58.9993098Z remote: Compressing objects:  88% (198/225)        
2022-05-22T14:20:58.9993301Z remote: Compressing objects:  89% (201/225)        
2022-05-22T14:20:58.9993527Z remote: Compressing objects:  90% (203/225)        
2022-05-22T14:20:58.9993735Z remote: Compressing objects:  91% (205/225)        
2022-05-22T14:20:58.9993938Z remote: Compressing objects:  92% (207/225)        
2022-05-22T14:20:58.9994139Z remote: Compressing objects:  93% (210/225)        
2022-05-22T14:20:58.9994341Z remote: Compressing objects:  94% (212/225)        
2022-05-22T14:20:58.9994545Z remote: Compressing objects:  95% (214/225)        
2022-05-22T14:20:58.9994913Z remote: Compressing objects:  96% (216/225)        
2022-05-22T14:20:58.9995119Z remote: Compressing objects:  97% (219/225)        
2022-05-22T14:20:58.9995324Z remote: Compressing objects:  98% (221/225)        
2022-05-22T14:20:58.9995528Z remote: Compressing objects:  99% (223/225)        
2022-05-22T14:20:58.9995731Z remote: Compressing objects: 100% (225/225)        
2022-05-22T14:20:58.9995952Z remote: Compressing objects: 100% (225/225), done.        
2022-05-22T14:20:58.9996199Z Receiving objects:   0% (1/1184)
2022-05-22T14:20:58.9996441Z Receiving objects:   1% (12/1184)
2022-05-22T14:20:58.9996634Z Receiving objects:   2% (24/1184)
2022-05-22T14:20:58.9996818Z Receiving objects:   3% (36/1184)
2022-05-22T14:20:58.9997001Z Receiving objects:   4% (48/1184)
2022-05-22T14:20:58.9997183Z Receiving objects:   5% (60/1184)
2022-05-22T14:20:58.9997365Z Receiving objects:   6% (72/1184)
2022-05-22T14:20:58.9997544Z Receiving objects:   7% (83/1184)
2022-05-22T14:20:58.9997727Z Receiving objects:   8% (95/1184)
2022-05-22T14:20:58.9997912Z Receiving objects:   9% (107/1184)
2022-05-22T14:20:58.9998101Z Receiving objects:  10% (119/1184)
2022-05-22T14:20:58.9998289Z Receiving objects:  11% (131/1184)
2022-05-22T14:20:58.9998473Z Receiving objects:  12% (143/1184)
2022-05-22T14:20:58.9998663Z Receiving objects:  13% (154/1184)
2022-05-22T14:20:58.9998851Z Receiving objects:  14% (166/1184)
2022-05-22T14:20:58.9999034Z Receiving objects:  15% (178/1184)
2022-05-22T14:20:58.9999213Z Receiving objects:  16% (190/1184)
2022-05-22T14:20:58.9999394Z Receiving objects:  17% (202/1184)
2022-05-22T14:20:58.9999726Z Receiving objects:  18% (214/1184)
2022-05-22T14:20:58.9999943Z Receiving objects:  19% (225/1184)
2022-05-22T14:20:59.0000122Z Receiving objects:  20% (237/1184)
2022-05-22T14:20:59.0000299Z Receiving objects:  21% (249/1184)
2022-05-22T14:20:59.0000480Z Receiving objects:  22% (261/1184)
2022-05-22T14:20:59.0000660Z Receiving objects:  23% (273/1184)
2022-05-22T14:20:59.0000835Z Receiving objects:  24% (285/1184)
2022-05-22T14:20:59.0001011Z Receiving objects:  25% (296/1184)
2022-05-22T14:20:59.0001194Z Receiving objects:  26% (308/1184)
2022-05-22T14:20:59.0001388Z Receiving objects:  27% (320/1184)
2022-05-22T14:20:59.0001678Z Receiving objects:  28% (332/1184)
2022-05-22T14:20:59.0001965Z Receiving objects:  29% (344/1184)
2022-05-22T14:20:59.0002211Z Receiving objects:  30% (356/1184)
2022-05-22T14:20:59.0002508Z Receiving objects:  31% (368/1184)
2022-05-22T14:20:59.0002794Z Receiving objects:  32% (379/1184)
2022-05-22T14:20:59.0003083Z Receiving objects:  33% (391/1184)
2022-05-22T14:20:59.0003375Z Receiving objects:  34% (403/1184)
2022-05-22T14:20:59.0003663Z Receiving objects:  35% (415/1184)
2022-05-22T14:20:59.0003948Z Receiving objects:  36% (427/1184)
2022-05-22T14:20:59.0004234Z Receiving objects:  37% (439/1184)
2022-05-22T14:20:59.0004587Z Receiving objects:  38% (450/1184)
2022-05-22T14:20:59.0004767Z Receiving objects:  39% (462/1184)
2022-05-22T14:20:59.0005000Z Receiving objects:  40% (474/1184)
2022-05-22T14:20:59.0005188Z Receiving objects:  41% (486/1184)
2022-05-22T14:20:59.0005420Z Receiving objects:  42% (498/1184)
2022-05-22T14:20:59.0005599Z Receiving objects:  43% (510/1184)
2022-05-22T14:20:59.0005775Z Receiving objects:  44% (521/1184)
2022-05-22T14:20:59.0005955Z Receiving objects:  45% (533/1184)
2022-05-22T14:20:59.0006234Z Receiving objects:  46% (545/1184)
2022-05-22T14:20:59.0006522Z Receiving objects:  47% (557/1184)
2022-05-22T14:20:59.0006774Z Receiving objects:  48% (569/1184)
2022-05-22T14:20:59.0006957Z Receiving objects:  49% (581/1184)
2022-05-22T14:20:59.0007138Z Receiving objects:  50% (592/1184)
2022-05-22T14:20:59.0007316Z Receiving objects:  51% (604/1184)
2022-05-22T14:20:59.0007494Z Receiving objects:  52% (616/1184)
2022-05-22T14:20:59.0007678Z Receiving objects:  53% (628/1184)
2022-05-22T14:20:59.0007858Z Receiving objects:  54% (640/1184)
2022-05-22T14:20:59.0008034Z Receiving objects:  55% (652/1184)
2022-05-22T14:20:59.0008211Z Receiving objects:  56% (664/1184)
2022-05-22T14:20:59.0008500Z Receiving objects:  57% (675/1184)
2022-05-22T14:20:59.0008786Z Receiving objects:  58% (687/1184)
2022-05-22T14:20:59.0009009Z Receiving objects:  59% (699/1184)
2022-05-22T14:20:59.0009189Z Receiving objects:  60% (711/1184)
2022-05-22T14:20:59.0009365Z Receiving objects:  61% (723/1184)
2022-05-22T14:20:59.0009543Z Receiving objects:  62% (735/1184)
2022-05-22T14:20:59.0009731Z Receiving objects:  63% (746/1184)
2022-05-22T14:20:59.0010008Z Receiving objects:  64% (758/1184)
2022-05-22T14:20:59.0010377Z Receiving objects:  65% (770/1184)
2022-05-22T14:20:59.0010675Z Receiving objects:  66% (782/1184)
2022-05-22T14:20:59.0010970Z Receiving objects:  67% (794/1184)
2022-05-22T14:20:59.0011263Z Receiving objects:  68% (806/1184)
2022-05-22T14:20:59.0011546Z Receiving objects:  69% (817/1184)
2022-05-22T14:20:59.0011835Z Receiving objects:  70% (829/1184)
2022-05-22T14:20:59.0012075Z Receiving objects:  71% (841/1184)
2022-05-22T14:20:59.0012275Z Receiving objects:  72% (853/1184)
2022-05-22T14:20:59.0012571Z Receiving objects:  73% (865/1184)
2022-05-22T14:20:59.0012855Z Receiving objects:  74% (877/1184)
2022-05-22T14:20:59.0013052Z Receiving objects:  75% (888/1184)
2022-05-22T14:20:59.0013228Z Receiving objects:  76% (900/1184)
2022-05-22T14:20:59.0013407Z Receiving objects:  77% (912/1184)
2022-05-22T14:20:59.0013594Z Receiving objects:  78% (924/1184)
2022-05-22T14:20:59.0013771Z Receiving objects:  79% (936/1184)
2022-05-22T14:20:59.0014064Z Receiving objects:  80% (948/1184)
2022-05-22T14:20:59.0014351Z Receiving objects:  81% (960/1184)
2022-05-22T14:20:59.0014883Z remote: Total 1184 (delta 245), reused 334 (delta 154), pack-reused 758        
2022-05-22T14:20:59.0015130Z Receiving objects:  82% (971/1184)
2022-05-22T14:20:59.0015360Z Receiving objects:  83% (983/1184)
2022-05-22T14:20:59.0015663Z Receiving objects:  84% (995/1184)
2022-05-22T14:20:59.0015991Z Receiving objects:  85% (1007/1184)
2022-05-22T14:20:59.0016292Z Receiving objects:  86% (1019/1184)
2022-05-22T14:20:59.0016601Z Receiving objects:  87% (1031/1184)
2022-05-22T14:20:59.0016912Z Receiving objects:  88% (1042/1184)
2022-05-22T14:20:59.0017217Z Receiving objects:  89% (1054/1184)
2022-05-22T14:20:59.0017521Z Receiving objects:  90% (1066/1184)
2022-05-22T14:20:59.0017785Z Receiving objects:  91% (1078/1184)
2022-05-22T14:20:59.0017985Z Receiving objects:  92% (1090/1184)
2022-05-22T14:20:59.0018209Z Receiving objects:  93% (1102/1184)
2022-05-22T14:20:59.0018523Z Receiving objects:  94% (1113/1184)
2022-05-22T14:20:59.0018848Z Receiving objects:  95% (1125/1184)
2022-05-22T14:20:59.0019096Z Receiving objects:  96% (1137/1184)
2022-05-22T14:20:59.0019381Z Receiving objects:  97% (1149/1184)
2022-05-22T14:20:59.0019686Z Receiving objects:  98% (1161/1184)
2022-05-22T14:20:59.0019983Z Receiving objects:  99% (1173/1184)
2022-05-22T14:20:59.0020280Z Receiving objects: 100% (1184/1184)
2022-05-22T14:20:59.0020724Z Receiving objects: 100% (1184/1184), 127.18 KiB | 25.44 MiB/s, done.
2022-05-22T14:20:59.0021073Z Resolving deltas:   0% (0/637)
2022-05-22T14:20:59.0021377Z Resolving deltas:   1% (7/637)
2022-05-22T14:20:59.0021673Z Resolving deltas:   2% (13/637)
2022-05-22T14:20:59.0021972Z Resolving deltas:   3% (20/637)
2022-05-22T14:20:59.0022281Z Resolving deltas:   4% (26/637)
2022-05-22T14:20:59.0022586Z Resolving deltas:   5% (32/637)
2022-05-22T14:20:59.0022898Z Resolving deltas:   6% (39/637)
2022-05-22T14:20:59.0023207Z Resolving deltas:   7% (45/637)
2022-05-22T14:20:59.0023497Z Resolving deltas:   8% (51/637)
2022-05-22T14:20:59.0029802Z Resolving deltas:   9% (58/637)
2022-05-22T14:20:59.0030165Z Resolving deltas:  10% (64/637)
2022-05-22T14:20:59.0030505Z Resolving deltas:  11% (71/637)
2022-05-22T14:20:59.0030796Z Resolving deltas:  12% (77/637)
2022-05-22T14:20:59.0031120Z Resolving deltas:  13% (83/637)
2022-05-22T14:20:59.0031451Z Resolving deltas:  14% (90/637)
2022-05-22T14:20:59.0031663Z Resolving deltas:  15% (96/637)
2022-05-22T14:20:59.0031896Z Resolving deltas:  16% (102/637)
2022-05-22T14:20:59.0032220Z Resolving deltas:  17% (110/637)
2022-05-22T14:20:59.0032503Z Resolving deltas:  18% (115/637)
2022-05-22T14:20:59.0032771Z Resolving deltas:  19% (122/637)
2022-05-22T14:20:59.0033087Z Resolving deltas:  20% (128/637)
2022-05-22T14:20:59.0033315Z Resolving deltas:  21% (134/637)
2022-05-22T14:20:59.0033620Z Resolving deltas:  22% (142/637)
2022-05-22T14:20:59.0033942Z Resolving deltas:  23% (147/637)
2022-05-22T14:20:59.0034153Z Resolving deltas:  24% (153/637)
2022-05-22T14:20:59.0034435Z Resolving deltas:  25% (160/637)
2022-05-22T14:20:59.0034898Z Resolving deltas:  26% (166/637)
2022-05-22T14:20:59.0035195Z Resolving deltas:  27% (172/637)
2022-05-22T14:20:59.0035492Z Resolving deltas:  28% (179/637)
2022-05-22T14:20:59.0035799Z Resolving deltas:  29% (185/637)
2022-05-22T14:20:59.0036108Z Resolving deltas:  30% (192/637)
2022-05-22T14:20:59.0036422Z Resolving deltas:  31% (198/637)
2022-05-22T14:20:59.0036733Z Resolving deltas:  32% (204/637)
2022-05-22T14:20:59.0037070Z Resolving deltas:  33% (211/637)
2022-05-22T14:20:59.0037379Z Resolving deltas:  34% (217/637)
2022-05-22T14:20:59.0037687Z Resolving deltas:  35% (223/637)
2022-05-22T14:20:59.0037995Z Resolving deltas:  36% (230/637)
2022-05-22T14:20:59.0038310Z Resolving deltas:  37% (236/637)
2022-05-22T14:20:59.0038619Z Resolving deltas:  38% (243/637)
2022-05-22T14:20:59.0038926Z Resolving deltas:  39% (249/637)
2022-05-22T14:20:59.0039260Z Resolving deltas:  40% (256/637)
2022-05-22T14:20:59.0039803Z Resolving deltas:  41% (262/637)
2022-05-22T14:20:59.0040139Z Resolving deltas:  42% (268/637)
2022-05-22T14:20:59.0040448Z Resolving deltas:  43% (274/637)
2022-05-22T14:20:59.0040755Z Resolving deltas:  44% (281/637)
2022-05-22T14:20:59.0042752Z Resolving deltas:  45% (287/637)
2022-05-22T14:20:59.0043200Z Resolving deltas:  46% (294/637)
2022-05-22T14:20:59.0043618Z Resolving deltas:  47% (300/637)
2022-05-22T14:20:59.0044027Z Resolving deltas:  48% (306/637)
2022-05-22T14:20:59.0044428Z Resolving deltas:  49% (313/637)
2022-05-22T14:20:59.0045072Z Resolving deltas:  50% (319/637)
2022-05-22T14:20:59.0045827Z Resolving deltas:  51% (325/637)
2022-05-22T14:20:59.0046260Z Resolving deltas:  52% (332/637)
2022-05-22T14:20:59.0046598Z Resolving deltas:  53% (338/637)
2022-05-22T14:20:59.0047176Z Resolving deltas:  54% (344/637)
2022-05-22T14:20:59.0047533Z Resolving deltas:  55% (351/637)
2022-05-22T14:20:59.0048147Z Resolving deltas:  56% (357/637)
2022-05-22T14:20:59.0048540Z Resolving deltas:  57% (364/637)
2022-05-22T14:20:59.0048938Z Resolving deltas:  58% (370/637)
2022-05-22T14:20:59.0049547Z Resolving deltas:  59% (376/637)
2022-05-22T14:20:59.0049930Z Resolving deltas:  60% (383/637)
2022-05-22T14:20:59.0050595Z Resolving deltas:  61% (389/637)
2022-05-22T14:20:59.0051013Z Resolving deltas:  62% (395/637)
2022-05-22T14:20:59.0051416Z Resolving deltas:  63% (402/637)
2022-05-22T14:20:59.0051996Z Resolving deltas:  64% (408/637)
2022-05-22T14:20:59.0052649Z Resolving deltas:  65% (415/637)
2022-05-22T14:20:59.0053184Z Resolving deltas:  66% (421/637)
2022-05-22T14:20:59.0053772Z Resolving deltas:  67% (427/637)
2022-05-22T14:20:59.0054189Z Resolving deltas:  68% (434/637)
2022-05-22T14:20:59.0054528Z Resolving deltas:  69% (440/637)
2022-05-22T14:20:59.0055125Z Resolving deltas:  70% (446/637)
2022-05-22T14:20:59.0055681Z Resolving deltas:  71% (453/637)
2022-05-22T14:20:59.0056179Z Resolving deltas:  72% (459/637)
2022-05-22T14:20:59.0056685Z Resolving deltas:  73% (466/637)
2022-05-22T14:20:59.0057188Z Resolving deltas:  74% (472/637)
2022-05-22T14:20:59.0057711Z Resolving deltas:  75% (478/637)
2022-05-22T14:20:59.0058219Z Resolving deltas:  76% (485/637)
2022-05-22T14:20:59.0058704Z Resolving deltas:  77% (491/637)
2022-05-22T14:20:59.0059320Z Resolving deltas:  78% (497/637)
2022-05-22T14:20:59.0059765Z Resolving deltas:  79% (504/637)
2022-05-22T14:20:59.0060146Z Resolving deltas:  80% (510/637)
2022-05-22T14:20:59.0060806Z Resolving deltas:  81% (516/637)
2022-05-22T14:20:59.0061272Z Resolving deltas:  82% (523/637)
2022-05-22T14:20:59.0061900Z Resolving deltas:  83% (529/637)
2022-05-22T14:20:59.0062313Z Resolving deltas:  84% (536/637)
2022-05-22T14:20:59.0062803Z Resolving deltas:  85% (542/637)
2022-05-22T14:20:59.0063262Z Resolving deltas:  86% (548/637)
2022-05-22T14:20:59.0063813Z Resolving deltas:  87% (555/637)
2022-05-22T14:20:59.0064513Z Resolving deltas:  88% (561/637)
2022-05-22T14:20:59.0065123Z Resolving deltas:  89% (567/637)
2022-05-22T14:20:59.0065591Z Resolving deltas:  90% (574/637)
2022-05-22T14:20:59.0066090Z Resolving deltas:  91% (580/637)
2022-05-22T14:20:59.0066741Z Resolving deltas:  92% (587/637)
2022-05-22T14:20:59.0067085Z Resolving deltas:  93% (593/637)
2022-05-22T14:20:59.0067571Z Resolving deltas:  94% (599/637)
2022-05-22T14:20:59.0068104Z Resolving deltas:  95% (606/637)
2022-05-22T14:20:59.0068551Z Resolving deltas:  96% (612/637)
2022-05-22T14:20:59.0069040Z Resolving deltas:  97% (618/637)
2022-05-22T14:20:59.0069668Z Resolving deltas:  98% (625/637)
2022-05-22T14:20:59.0070184Z Resolving deltas:  99% (631/637)
2022-05-22T14:20:59.0070648Z Resolving deltas: 100% (637/637)
2022-05-22T14:20:59.0071144Z Resolving deltas: 100% (637/637), done.
2022-05-22T14:20:59.0167671Z From https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-22T14:20:59.0168459Z  * [new branch]      develop                                  -> origin/develop
2022-05-22T14:20:59.0170030Z  * [new branch]      master                                   -> origin/master
2022-05-22T14:20:59.0173666Z  * [new ref]         148b60f7f473801e9b30dc03a1199cf9508f4a85 -> pull/1/merge
2022-05-22T14:20:59.0198390Z ##[endgroup]
2022-05-22T14:20:59.0199019Z ##[group]Determining the checkout info
2022-05-22T14:20:59.0199842Z ##[endgroup]
2022-05-22T14:20:59.0200572Z ##[group]Checking out the ref
2022-05-22T14:20:59.0203945Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1/merge
2022-05-22T14:20:59.0258997Z Note: switching to 'refs/remotes/pull/1/merge'.
2022-05-22T14:20:59.0259402Z 
2022-05-22T14:20:59.0259807Z You are in 'detached HEAD' state. You can look around, make experimental
2022-05-22T14:20:59.0260171Z changes and commit them, and you can discard any commits you make in this
2022-05-22T14:20:59.0260745Z state without impacting any branches by switching back to a branch.
2022-05-22T14:20:59.0261115Z 
2022-05-22T14:20:59.0261430Z If you want to create a new branch to retain commits you create, you may
2022-05-22T14:20:59.0261939Z do so (now or later) by using -c with the switch command. Example:
2022-05-22T14:20:59.0262139Z 
2022-05-22T14:20:59.0262436Z   git switch -c <new-branch-name>
2022-05-22T14:20:59.0262690Z 
2022-05-22T14:20:59.0262911Z Or undo this operation with:
2022-05-22T14:20:59.0263442Z 
2022-05-22T14:20:59.0263771Z   git switch -
2022-05-22T14:20:59.0263905Z 
2022-05-22T14:20:59.0264074Z Turn off this advice by setting config variable advice.detachedHead to false
2022-05-22T14:20:59.0264397Z 
2022-05-22T14:20:59.0264614Z HEAD is now at 148b60f Merge 0fd3e2c6e2ec79736547c55ac30aec18c864dddd into b6b9a419aff796fe293d934a255c9510762544c1
2022-05-22T14:20:59.0265250Z ##[endgroup]
2022-05-22T14:20:59.0297770Z [command]/usr/bin/git log -1 --format='%H'
2022-05-22T14:20:59.0322216Z '148b60f7f473801e9b30dc03a1199cf9508f4a85'
2022-05-22T14:20:59.0578781Z ##[group]Run actions/checkout@v3
2022-05-22T14:20:59.0579070Z with:
2022-05-22T14:20:59.0579239Z   submodules: recursive
2022-05-22T14:20:59.0579594Z   token: ***
2022-05-22T14:20:59.0579771Z   fetch-depth: 0
2022-05-22T14:20:59.0579974Z   repository: Consumer/SEO-AWS-TOOLS
2022-05-22T14:20:59.0580192Z   ssh-strict: true
2022-05-22T14:20:59.0580383Z   persist-credentials: true
2022-05-22T14:20:59.0580573Z   clean: true
2022-05-22T14:20:59.0580733Z   lfs: false
2022-05-22T14:20:59.0580917Z   set-safe-directory: true
2022-05-22T14:20:59.0581105Z ##[endgroup]
2022-05-22T14:20:59.3334629Z Syncing repository: Consumer/SEO-AWS-TOOLS
2022-05-22T14:20:59.3341202Z ##[group]Getting Git version info
2022-05-22T14:20:59.3341983Z Working directory is '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS'
2022-05-22T14:20:59.3376283Z [command]/usr/bin/git version
2022-05-22T14:20:59.3421861Z git version 2.35.1
2022-05-22T14:20:59.3447565Z ##[endgroup]
2022-05-22T14:20:59.3456787Z Temporarily overriding HOME='/runner/_work/_temp/ed9759bb-47ff-40e6-82f9-8ecf74b2deda' before making global git config changes
2022-05-22T14:20:59.3457658Z Adding repository directory to the temporary git global config as a safe directory
2022-05-22T14:20:59.3460911Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T14:20:59.3498908Z [command]/usr/bin/git config --local --get remote.origin.url
2022-05-22T14:20:59.3528722Z https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-22T14:20:59.3531985Z ##[group]Removing previously created refs, to avoid conflicts
2022-05-22T14:20:59.3534981Z [command]/usr/bin/git rev-parse --symbolic-full-name --verify --quiet HEAD
2022-05-22T14:20:59.3566348Z HEAD
2022-05-22T14:20:59.3570315Z [command]/usr/bin/git rev-parse --symbolic-full-name --branches
2022-05-22T14:20:59.3599817Z ##[endgroup]
2022-05-22T14:20:59.3600656Z ##[group]Cleaning the repository
2022-05-22T14:20:59.3601287Z [command]/usr/bin/git clean -ffdx
2022-05-22T14:20:59.3629900Z [command]/usr/bin/git reset --hard HEAD
2022-05-22T14:20:59.3665739Z HEAD is now at 148b60f Merge 0fd3e2c6e2ec79736547c55ac30aec18c864dddd into b6b9a419aff796fe293d934a255c9510762544c1
2022-05-22T14:20:59.3668738Z ##[endgroup]
2022-05-22T14:20:59.3670300Z ##[group]Disabling automatic garbage collection
2022-05-22T14:20:59.3673247Z [command]/usr/bin/git config --local gc.auto 0
2022-05-22T14:20:59.3699042Z ##[endgroup]
2022-05-22T14:20:59.3699817Z ##[group]Setting up auth
2022-05-22T14:20:59.3705754Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-22T14:20:59.3735490Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-22T14:20:59.4141622Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-22T14:20:59.4164749Z http.https://ghe.coxautoinc.com/.extraheader
2022-05-22T14:20:59.4171263Z [command]/usr/bin/git config --local --unset-all http.https://ghe.coxautoinc.com/.extraheader
2022-05-22T14:20:59.4206544Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-22T14:20:59.4575488Z [command]/usr/bin/git config --local http.https://ghe.coxautoinc.com/.extraheader AUTHORIZATION: basic ***
2022-05-22T14:20:59.4626543Z ##[endgroup]
2022-05-22T14:20:59.4627111Z ##[group]Fetching the repository
2022-05-22T14:20:59.4635757Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* +148b60f7f473801e9b30dc03a1199cf9508f4a85:refs/remotes/pull/1/merge
2022-05-22T14:20:59.5808769Z ##[endgroup]
2022-05-22T14:20:59.5809533Z ##[group]Determining the checkout info
2022-05-22T14:20:59.5810451Z ##[endgroup]
2022-05-22T14:20:59.5811168Z ##[group]Checking out the ref
2022-05-22T14:20:59.5812557Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1/merge
2022-05-22T14:20:59.5853893Z HEAD is now at 148b60f Merge 0fd3e2c6e2ec79736547c55ac30aec18c864dddd into b6b9a419aff796fe293d934a255c9510762544c1
2022-05-22T14:20:59.5856318Z ##[endgroup]
2022-05-22T14:20:59.5857084Z ##[group]Setting up auth for fetching submodules
2022-05-22T14:20:59.5861475Z [command]/usr/bin/git config --global http.https://ghe.coxautoinc.com/.extraheader AUTHORIZATION: basic ***
2022-05-22T14:20:59.8383081Z [command]/usr/bin/git config --global --unset-all url.https://ghe.coxautoinc.com/.insteadOf
2022-05-22T14:20:59.8425290Z [command]/usr/bin/git config --global --add url.https://ghe.coxautoinc.com/.insteadOf git@ghe.coxautoinc.com:
2022-05-22T14:20:59.8453195Z [command]/usr/bin/git config --global --add url.https://ghe.coxautoinc.com/.insteadOf org-8930@github.com:
2022-05-22T14:20:59.8481868Z ##[endgroup]
2022-05-22T14:20:59.8482478Z ##[group]Fetching submodules
2022-05-22T14:20:59.8485182Z [command]/usr/bin/git submodule sync --recursive
2022-05-22T14:20:59.8749193Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive
2022-05-22T14:20:59.9011519Z Submodule 'caiCustomResource' (https://ghe.coxautoinc.com/Consumer/consumer-tools-cfn-custom-resource) registered for path 'caiCustomResource'
2022-05-22T14:20:59.9074427Z Cloning into '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/caiCustomResource'...
2022-05-22T14:21:00.0560296Z Submodule path 'caiCustomResource': checked out 'fd6d0b28f28a54c3e1643af041b72308165bc6de'
2022-05-22T14:21:00.0631067Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0
2022-05-22T14:21:00.0905784Z Entering 'caiCustomResource'
2022-05-22T14:21:00.0953052Z ##[endgroup]
2022-05-22T14:21:00.0953801Z ##[group]Persisting credentials for submodules
2022-05-22T14:21:00.0958483Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'url\.https\:\/\/ghe\.coxautoinc\.com\/\.insteadOf' && git config --local --unset-all 'url.https://ghe.coxautoinc.com/.insteadOf' || :
2022-05-22T14:21:00.1219754Z Entering 'caiCustomResource'
2022-05-22T14:21:00.1270213Z [command]/usr/bin/git submodule foreach --recursive git config --local 'http.https://ghe.coxautoinc.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url
2022-05-22T14:21:00.1545747Z Entering 'caiCustomResource'
2022-05-22T14:21:00.1584608Z file:/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/.git/modules/caiCustomResource/config	remote.origin.url
2022-05-22T14:21:00.1623376Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://ghe.coxautoinc.com/.insteadOf' 'git@ghe.coxautoinc.com:'
2022-05-22T14:21:00.1957891Z Entering 'caiCustomResource'
2022-05-22T14:21:00.2007223Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://ghe.coxautoinc.com/.insteadOf' 'org-8930@github.com:'
2022-05-22T14:21:00.2313650Z Entering 'caiCustomResource'
2022-05-22T14:21:00.2360646Z ##[endgroup]
2022-05-22T14:21:00.2394281Z [command]/usr/bin/git log -1 --format='%H'
2022-05-22T14:21:00.2418356Z '148b60f7f473801e9b30dc03a1199cf9508f4a85'
2022-05-22T14:21:00.2622737Z ##[group]Run tj-actions/changed-files@v20
2022-05-22T14:21:00.2623135Z with:
2022-05-22T14:21:00.2623338Z   files: ./robots_files/*
2022-05-22T14:21:00.2623581Z   old_new_files_separator: |
2022-05-22T14:21:00.2623960Z   token: ***
2022-05-22T14:21:00.2624164Z   separator:  
2022-05-22T14:21:00.2643221Z   old_new_separator: ,
2022-05-22T14:21:00.2643604Z   files_separator: 

2022-05-22T14:21:00.2643791Z   files_ignore_separator: 

2022-05-22T14:21:00.2643999Z   sha: 148b60f7f473801e9b30dc03a1199cf9508f4a85
2022-05-22T14:21:00.2644216Z   since_last_remote_commit: false
2022-05-22T14:21:00.2644408Z   use_fork_point: false
2022-05-22T14:21:00.2644583Z   quotepath: true
2022-05-22T14:21:00.2644751Z ##[endgroup]
2022-05-22T14:21:00.2911459Z ##[group]Run # "Set base sha..."
2022-05-22T14:21:00.2911721Z �[36;1m# "Set base sha..."�[0m
2022-05-22T14:21:00.2911913Z �[36;1mif [[ -n "" ]]; then�[0m
2022-05-22T14:21:00.2912133Z �[36;1m  echo "::set-output name=base_sha::"�[0m
2022-05-22T14:21:00.2912448Z �[36;1melif [[ "false" == "true" && "e1c45c81eac3b9089a6a79aba6f3fc8bd99424ff" != "0000000000000000000000000000000000000000" ]]; then�[0m
2022-05-22T14:21:00.2912778Z �[36;1m    echo "::set-output name=base_sha::e1c45c81eac3b9089a6a79aba6f3fc8bd99424ff"�[0m
2022-05-22T14:21:00.2913011Z �[36;1mfi�[0m
2022-05-22T14:21:00.2927850Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T14:21:00.2928118Z ##[endgroup]
2022-05-22T14:21:00.3068121Z ##[group]Run # "Calculating the previous and current SHA..."
2022-05-22T14:21:00.3068405Z �[36;1m# "Calculating the previous and current SHA..."�[0m
2022-05-22T14:21:00.3068658Z �[36;1mbash $GITHUB_ACTION_PATH/diff-sha.sh�[0m
2022-05-22T14:21:00.3077028Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T14:21:00.3077265Z env:
2022-05-22T14:21:00.3077485Z   GITHUB_SERVER_URL: https://ghe.coxautoinc.com
2022-05-22T14:21:00.3077747Z   GITHUB_REPOSITORY: Consumer/SEO-AWS-TOOLS
2022-05-22T14:21:00.3077969Z   GITHUB_BASE_REF: master
2022-05-22T14:21:00.3078156Z   GITHUB_HEAD_REF: develop
2022-05-22T14:21:00.3078402Z   GITHUB_ACTION_PATH: /runner/_work/_actions/tj-actions/changed-files/v20
2022-05-22T14:21:00.3078676Z   INPUT_SHA: 148b60f7f473801e9b30dc03a1199cf9508f4a85
2022-05-22T14:21:00.3078880Z   INPUT_BASE_SHA: 
2022-05-22T14:21:00.3079164Z   INPUT_TOKEN: ***
2022-05-22T14:21:00.3079349Z   INPUT_PATH: 
2022-05-22T14:21:00.3079533Z   INPUT_USE_FORK_POINT: false
2022-05-22T14:21:00.3079932Z ##[endgroup]
2022-05-22T14:21:00.3124646Z ##[group]changed-files-diff-sha
2022-05-22T14:21:00.3125060Z Resolving repository path...
2022-05-22T14:21:00.3125505Z Getting HEAD SHA...
2022-05-22T14:21:00.4928608Z remote: Total 0 (delta 0), reused 0 (delta 0), pack-reused 0        
2022-05-22T14:21:00.4970173Z From https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-22T14:21:00.4971010Z  * [new branch]      master     -> master
2022-05-22T14:21:00.5007673Z Verifying commit SHA...
2022-05-22T14:21:00.5042680Z ##[endgroup]
2022-05-22T14:21:00.5077481Z ##[group]Run tj-actions/glob@v7.20
2022-05-22T14:21:00.5077668Z with:
2022-05-22T14:21:00.5077830Z   files: ./robots_files/*
2022-05-22T14:21:00.5078013Z   files-separator: 

2022-05-22T14:21:00.5078194Z   escape-paths: true
2022-05-22T14:21:00.5078387Z   excluded-files-separator: 

2022-05-22T14:21:00.5078612Z   base-sha: b6b9a419aff796fe293d934a255c9510762544c1
2022-05-22T14:21:00.5078855Z   sha: 148b60f7f473801e9b30dc03a1199cf9508f4a85
2022-05-22T14:21:00.5079063Z   include-deleted-files: true
2022-05-22T14:21:00.5079247Z   separator: |
2022-05-22T14:21:00.5079445Z   files-from-source-file-separator: 

2022-05-22T14:21:00.5079972Z   excluded-files-from-source-file-separator: 

2022-05-22T14:21:00.5080217Z   follow-symbolic-links: true
2022-05-22T14:21:00.5080414Z   strip-top-level-dir: true
2022-05-22T14:21:00.5080606Z ##[endgroup]
2022-05-22T14:21:00.5720164Z [command]/usr/bin/git rev-parse --show-toplevel
2022-05-22T14:21:00.5758457Z /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T14:21:00.5781736Z [command]/usr/bin/git diff --diff-filter=D --name-only b6b9a419aff796fe293d934a255c9510762544c1 148b60f7f473801e9b30dc03a1199cf9508f4a85
2022-05-22T14:21:00.5815362Z 
2022-05-22T14:21:00.5826642Z 
2022-05-22T14:21:00.5830542Z Successfully created paths-output-file: /tmp/b4ed932d-ff2e-422f-959d-c20ca1c40c8d.txt
2022-05-22T14:21:00.5876619Z ##[group]Run bash $GITHUB_ACTION_PATH/entrypoint.sh
2022-05-22T14:21:00.5876991Z �[36;1mbash $GITHUB_ACTION_PATH/entrypoint.sh�[0m
2022-05-22T14:21:00.5886516Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T14:21:00.5886761Z env:
2022-05-22T14:21:00.5886989Z   GITHUB_ACTION_PATH: /runner/_work/_actions/tj-actions/changed-files/v20
2022-05-22T14:21:00.5887294Z   INPUT_FILES_PATTERN_FILE: /tmp/b4ed932d-ff2e-422f-959d-c20ca1c40c8d.txt
2022-05-22T14:21:00.5887539Z   INPUT_SEPARATOR:  
2022-05-22T14:21:00.5887712Z   INPUT_PATH: 
2022-05-22T14:21:00.5887933Z   INPUT_PREVIOUS_SHA: b6b9a419aff796fe293d934a255c9510762544c1
2022-05-22T14:21:00.5888194Z   INPUT_CURRENT_SHA: 148b60f7f473801e9b30dc03a1199cf9508f4a85
2022-05-22T14:21:00.5888414Z   INPUT_TARGET_BRANCH: master
2022-05-22T14:21:00.5888607Z   INPUT_CURRENT_BRANCH: develop
2022-05-22T14:21:00.5888797Z   INPUT_QUOTEPATH: true
2022-05-22T14:21:00.5888981Z   INPUT_OLD_NEW_SEPARATOR: ,
2022-05-22T14:21:00.5889180Z   INPUT_OLD_NEW_FILES_SEPARATOR: |
2022-05-22T14:21:00.5889374Z ##[endgroup]
2022-05-22T14:21:00.5953383Z ##[group]changed-files
2022-05-22T14:21:00.5953722Z Resolving repository path...
2022-05-22T14:21:00.5954665Z Retrieving changes between b6b9a419aff796fe293d934a255c9510762544c1 (master) → 148b60f7f473801e9b30dc03a1199cf9508f4a85 (develop)
2022-05-22T14:21:00.5955213Z Getting diff...
2022-05-22T14:21:01.2364355Z Matching changed files: robots_files/robots-kbb-3.txt|robots_files/robots-kbb-4.txt
2022-05-22T14:21:01.2421281Z Non Matching changed files: .github/workflows/test.yml host-mappings.json
2022-05-22T14:21:01.2877713Z Matching modified files: robots_files/robots-kbb-3.txt|robots_files/robots-kbb-4.txt
2022-05-22T14:21:01.2913234Z Non Matching modified files: .github/workflows/test.yml host-mappings.json
2022-05-22T14:21:01.3543408Z Added files: 
2022-05-22T14:21:01.3543872Z Copied files: 
2022-05-22T14:21:01.3544218Z Deleted files: 
2022-05-22T14:21:01.3544541Z Modified files: 
2022-05-22T14:21:01.3545146Z Renamed files: robots_files/robots-kbb-3.txt robots_files/robots-kbb-4.txt
2022-05-22T14:21:01.3545648Z Type Changed files: 
2022-05-22T14:21:01.3545968Z Unmerged files: 
2022-05-22T14:21:01.3546188Z Unknown files: 
2022-05-22T14:21:01.3546565Z All changed and modified files: robots_files/robots-kbb-3.txt robots_files/robots-kbb-4.txt
2022-05-22T14:21:01.3547014Z All changed files: robots_files/robots-kbb-3.txt robots_files/robots-kbb-4.txt
2022-05-22T14:21:01.3547463Z All modified files: robots_files/robots-kbb-3.txt robots_files/robots-kbb-4.txt
2022-05-22T14:21:01.3547750Z All old & new renamed files: 
2022-05-22T14:21:01.3564674Z ##[endgroup]
2022-05-22T14:21:01.3667727Z ##[group]Run for file in ; do
2022-05-22T14:21:01.3668000Z �[36;1mfor file in ; do�[0m
2022-05-22T14:21:01.3668278Z �[36;1m  echo $file�[0m
2022-05-22T14:21:01.3668535Z �[36;1mdone�[0m
2022-05-22T14:21:01.3678200Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T14:21:01.3678439Z ##[endgroup]
2022-05-22T14:21:01.3793589Z Post job cleanup.
2022-05-22T14:21:01.3823507Z Post job cleanup.
2022-05-22T14:21:01.4198423Z deleted paths-output-file: /tmp/b4ed932d-ff2e-422f-959d-c20ca1c40c8d.txt
2022-05-22T14:21:01.4297055Z Post job cleanup.
2022-05-22T14:21:01.5371341Z [command]/usr/bin/git version
2022-05-22T14:21:01.5422507Z git version 2.35.1
2022-05-22T14:21:01.5458924Z Copying '/home/runner/.gitconfig' to '/runner/_work/_temp/ab488d5d-b29d-4b35-adf1-e05d4e3087ac/.gitconfig'
2022-05-22T14:21:01.5470520Z Temporarily overriding HOME='/runner/_work/_temp/ab488d5d-b29d-4b35-adf1-e05d4e3087ac' before making global git config changes
2022-05-22T14:21:01.5471200Z Adding repository directory to the temporary git global config as a safe directory
2022-05-22T14:21:01.5477268Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T14:21:01.5513057Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-22T14:21:01.5544813Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-22T14:21:01.5920795Z Entering 'caiCustomResource'
2022-05-22T14:21:01.5977133Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-22T14:21:01.6003698Z http.https://ghe.coxautoinc.com/.extraheader
2022-05-22T14:21:01.6011286Z [command]/usr/bin/git config --local --unset-all http.https://ghe.coxautoinc.com/.extraheader
2022-05-22T14:21:01.6041759Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-22T14:21:01.6361655Z Entering 'caiCustomResource'
2022-05-22T14:21:01.6385410Z http.https://ghe.coxautoinc.com/.extraheader
2022-05-22T14:21:01.6547187Z Post job cleanup.
2022-05-22T14:21:01.7521540Z [command]/usr/bin/git version
2022-05-22T14:21:01.7566204Z git version 2.35.1
2022-05-22T14:21:01.7597651Z Copying '/home/runner/.gitconfig' to '/runner/_work/_temp/86161476-87c1-477e-8fd0-e718ba948027/.gitconfig'
2022-05-22T14:21:01.7605907Z Temporarily overriding HOME='/runner/_work/_temp/86161476-87c1-477e-8fd0-e718ba948027' before making global git config changes
2022-05-22T14:21:01.7606357Z Adding repository directory to the temporary git global config as a safe directory
2022-05-22T14:21:01.7609264Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T14:21:01.7643728Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-22T14:21:01.7671935Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-22T14:21:01.8090718Z Entering 'caiCustomResource'
2022-05-22T14:21:01.8146376Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-22T14:21:01.8189964Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-22T14:21:01.8467286Z Entering 'caiCustomResource'
2022-05-22T14:21:01.8713694Z Cleaning up orphan processes

@stevegroner
Copy link

@jackton1 If I add this step to the bottom you can see the files do appear using git commands

      - name: Git Version of Renamed Files
        run: |
          git log --summary --pretty='format:' --diff-filter=RD HEAD^..HEAD
2022-05-22T14:36:37.4464544Z ##[group]Run git log --summary --pretty='format:' --diff-filter=RD HEAD^..HEAD
2022-05-22T14:36:37.4464951Z �[36;1mgit log --summary --pretty='format:' --diff-filter=RD HEAD^..HEAD�[0m
2022-05-22T14:36:37.4473015Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T14:36:37.4473267Z ##[endgroup]
2022-05-22T14:36:37.4519252Z  rename robots_files/{robots-kbb-1.txt => robots-kbb-3.txt} (100%)
2022-05-22T14:36:37.4534789Z  rename robots_files/{robots-kbb-2.txt => robots-kbb-4.txt} (100%)

@jackton1
Copy link
Member

jackton1 commented May 22, 2022

@stevegroner Can you verify that the result is the same without selecting Deleted files

git log --diff-filter=R HEAD^..HEAD

@stevegroner
Copy link

stevegroner commented May 22, 2022

@jackton1 When I run locally here is what I get

sgroner@GRONER-ALIEN-11142021:/mnt/d/repos/SEO-AWS-TOOLS$ git log --diff-filter=RD HEAD^..HEAD
commit 2c9c8bdfc56f7c8df9cfbc01f9fb24d983b6f3c6 (HEAD -> develop, origin/develop)
Author: Steve Groner <>
Date:   Sun May 22 07:56:20 2022 -0700

    .
sgroner@GRONER-ALIEN-11142021:/mnt/d/repos/SEO-AWS-TOOLS$ git log --diff-filter=R HEAD^..HEAD
commit 2c9c8bdfc56f7c8df9cfbc01f9fb24d983b6f3c6 (HEAD -> develop, origin/develop)
Author: Steve Groner <>
Date:   Sun May 22 07:56:20 2022 -0700

    .
sgroner@GRONER-ALIEN-11142021:/mnt/d/repos/SEO-AWS-TOOLS$
sgroner@GRONER-ALIEN-11142021:/mnt/d/repos/SEO-AWS-TOOLS$ git log --summary --pretty='format:' --diff-filter=RD HEAD^..HEAD
 rename robots_files/{robots-kbb-3.txt => robots-kbb-1.txt} (100%)
 rename robots_files/{robots-kbb-4.txt => robots-kbb-2.txt} (100%)
sgroner@GRONER-ALIEN-11142021:/mnt/d/repos/SEO-AWS-TOOLS$ git log --summary --pretty='format:' --diff-filter=R HEAD^..HE
AD
 rename robots_files/{robots-kbb-3.txt => robots-kbb-1.txt} (100%)
 rename robots_files/{robots-kbb-4.txt => robots-kbb-2.txt} (100%)
sgroner@GRONER-ALIEN-11142021:/mnt/d/repos/SEO-AWS-TOOLS$

@jackton1
Copy link
Member

jackton1 commented May 22, 2022

@stevegroner From the code, we run

git log --name-status --ignore-submodules=all HEAD^..HEAD | grep -E "^R" | awk -F '\t' -v d="," '{print $2d$3}'

I've released a new version v20.1 but I suggest running the above to see if the output is the same

@stevegroner
Copy link

Yep that works locally let me try to push to the repo and see.

@stevegroner
Copy link

Interesting... here is the action

name: Process File Changes Test

on:
  workflow_dispatch:
    inputs:
      environment:
        description: Account Environment
        required: true

# on:
#   pull_request:
#     branches:
#       - master

jobs:

  Process-Files-Test:

    runs-on: [ self-hosted ]
    defaults:
      run:
        shell: bash

    steps:

      - name: Checkout Source Code
        uses: actions/checkout@v3
        with:
          submodules: 'recursive'
          token: ${{ secrets.TOKEN }}
          fetch-depth: 0

      - name: Get Renamed robots.txt files
        id: renamed-files-robots-files
        uses: tj-actions/changed-files@v20.1
        with:
          files: ./robots_files/*
          old_new_files_separator: "|"

      - name: Rename Robots.txt Files
        if: steps.renamed-files-robots-files.outputs.any_changed == 'true'
        run: |
          for file in ${{ steps.renamed-files-robots-files.outputs.old_new_renamed_files }}; do
            echo $file
          done

      - name: Git Version of Renamed Files
        run: |
          git log --name-status --ignore-submodules=all HEAD^..HEAD | grep -E "^R" | awk -F '\t' -v d="," '{print $2d$3}'

The Command works but still returns nothing from the changed-files action itself.

2022-05-22T17:38:06.9610573Z Found online and idle self-hosted runner in the  current repository's enterprise account that matches the required labels: 'self-hosted'
2022-05-22T17:38:07.0138583Z Waiting for the runner to pick up this job...
2022-05-22T17:38:07.1197975Z Job is about to start running on the runner: cai-enterprise-ubuntu-awsactionrunners-6gb-rxkh9-5jvng (enterprise)
2022-05-22T17:38:11.5996901Z Current runner version: '2.289.1'
2022-05-22T17:38:11.6002521Z Runner name: 'cai-enterprise-ubuntu-awsactionrunners-6gb-rxkh9-5jvng'
2022-05-22T17:38:11.6003059Z Runner group name: 'CAI Enterprise Runners'
2022-05-22T17:38:11.6003760Z Machine name: 'cai-enterprise-ubuntu-awsactionrunners-6gb-rxkh9-5jvng'
2022-05-22T17:38:11.6005560Z ##[group]GITHUB_TOKEN Permissions
2022-05-22T17:38:11.6006178Z Actions: write
2022-05-22T17:38:11.6006372Z Checks: write
2022-05-22T17:38:11.6006566Z Contents: write
2022-05-22T17:38:11.6006769Z Deployments: write
2022-05-22T17:38:11.6006977Z Discussions: write
2022-05-22T17:38:11.6007182Z Issues: write
2022-05-22T17:38:11.6007367Z Metadata: read
2022-05-22T17:38:11.6007649Z Packages: write
2022-05-22T17:38:11.6007848Z Pages: write
2022-05-22T17:38:11.6008049Z PullRequests: write
2022-05-22T17:38:11.6008284Z RepositoryProjects: write
2022-05-22T17:38:11.6008514Z SecurityEvents: write
2022-05-22T17:38:11.6008726Z Statuses: write
2022-05-22T17:38:11.6009022Z ##[endgroup]
2022-05-22T17:38:11.6012966Z Prepare workflow directory
2022-05-22T17:38:11.6800620Z Prepare all required actions
2022-05-22T17:38:11.6978893Z Getting action download info
2022-05-22T17:38:12.4438450Z Download action repository 'actions/checkout@v3' (SHA:2541b1294d2704b0964813337f33b291d3f8596b)
2022-05-22T17:38:12.9440973Z Download action repository 'tj-actions/changed-files@v20.1' (SHA:944a8b89098b24b0723ed9264888eb7fcffbbe9a)
2022-05-22T17:38:13.2817138Z Getting action download info
2022-05-22T17:38:13.8567629Z Download action repository 'tj-actions/glob@v7.20' (SHA:95ff4236144967424139d2fb9776bb79d93afdca)
2022-05-22T17:38:14.1740599Z ##[group]Run actions/checkout@v3
2022-05-22T17:38:14.1740938Z with:
2022-05-22T17:38:14.1741125Z   submodules: recursive
2022-05-22T17:38:14.1741665Z   token: ***
2022-05-22T17:38:14.1741884Z   fetch-depth: 0
2022-05-22T17:38:14.1742086Z   repository: Consumer/SEO-AWS-TOOLS
2022-05-22T17:38:14.1742293Z   ssh-strict: true
2022-05-22T17:38:14.1742559Z   persist-credentials: true
2022-05-22T17:38:14.1742765Z   clean: true
2022-05-22T17:38:14.1742943Z   lfs: false
2022-05-22T17:38:14.1743124Z   set-safe-directory: true
2022-05-22T17:38:14.1743400Z ##[endgroup]
2022-05-22T17:38:14.5188708Z Syncing repository: Consumer/SEO-AWS-TOOLS
2022-05-22T17:38:14.5190496Z ##[group]Getting Git version info
2022-05-22T17:38:14.5191048Z Working directory is '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS'
2022-05-22T17:38:14.5191593Z [command]/usr/bin/git version
2022-05-22T17:38:14.5289709Z git version 2.35.1
2022-05-22T17:38:14.5316867Z ##[endgroup]
2022-05-22T17:38:14.5336488Z Temporarily overriding HOME='/runner/_work/_temp/58bf10c2-f1ea-498b-b102-e0daf9e4c34e' before making global git config changes
2022-05-22T17:38:14.5337452Z Adding repository directory to the temporary git global config as a safe directory
2022-05-22T17:38:14.5342718Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T17:38:14.5397327Z Deleting the contents of '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS'
2022-05-22T17:38:14.5400821Z ##[group]Initializing the repository
2022-05-22T17:38:14.5404404Z [command]/usr/bin/git init /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T17:38:14.5454043Z hint: Using 'master' as the name for the initial branch. This default branch name
2022-05-22T17:38:14.5454589Z hint: is subject to change. To configure the initial branch name to use in all
2022-05-22T17:38:14.5455132Z hint: of your new repositories, which will suppress this warning, call:
2022-05-22T17:38:14.5455827Z hint: 
2022-05-22T17:38:14.5456276Z hint: 	git config --global init.defaultBranch <name>
2022-05-22T17:38:14.5456601Z hint: 
2022-05-22T17:38:14.5463283Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2022-05-22T17:38:14.5464171Z hint: 'development'. The just-created branch can be renamed via this command:
2022-05-22T17:38:14.5464735Z hint: 
2022-05-22T17:38:14.5465243Z hint: 	git branch -m <name>
2022-05-22T17:38:14.5466157Z Initialized empty Git repository in /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/.git/
2022-05-22T17:38:14.5469809Z [command]/usr/bin/git remote add origin https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-22T17:38:14.5533604Z ##[endgroup]
2022-05-22T17:38:14.5534225Z ##[group]Disabling automatic garbage collection
2022-05-22T17:38:14.5538187Z [command]/usr/bin/git config --local gc.auto 0
2022-05-22T17:38:14.5571454Z ##[endgroup]
2022-05-22T17:38:14.5572419Z ##[group]Setting up auth
2022-05-22T17:38:14.5578507Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-22T17:38:14.5618264Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-22T17:38:14.6122890Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-22T17:38:14.6173388Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-22T17:38:14.6534737Z [command]/usr/bin/git config --local http.https://ghe.coxautoinc.com/.extraheader AUTHORIZATION: basic ***
2022-05-22T17:38:14.6604689Z ##[endgroup]
2022-05-22T17:38:14.6605318Z ##[group]Fetching the repository
2022-05-22T17:38:14.6614862Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
2022-05-22T17:38:15.1882230Z remote: Enumerating objects: 1208, done.        
2022-05-22T17:38:15.1882813Z remote: Counting objects:   0% (1/450)        
2022-05-22T17:38:15.1883238Z remote: Counting objects:   1% (5/450)        
2022-05-22T17:38:15.1883685Z remote: Counting objects:   2% (9/450)        
2022-05-22T17:38:15.1884184Z remote: Counting objects:   3% (14/450)        
2022-05-22T17:38:15.1884635Z remote: Counting objects:   4% (18/450)        
2022-05-22T17:38:15.1885146Z remote: Counting objects:   5% (23/450)        
2022-05-22T17:38:15.1885561Z remote: Counting objects:   6% (27/450)        
2022-05-22T17:38:15.1885981Z remote: Counting objects:   7% (32/450)        
2022-05-22T17:38:15.1886515Z remote: Counting objects:   8% (36/450)        
2022-05-22T17:38:15.1887127Z remote: Counting objects:   9% (41/450)        
2022-05-22T17:38:15.1887521Z remote: Counting objects:  10% (45/450)        
2022-05-22T17:38:15.1888034Z remote: Counting objects:  11% (50/450)        
2022-05-22T17:38:15.1888676Z remote: Counting objects:  12% (54/450)        
2022-05-22T17:38:15.1889270Z remote: Counting objects:  13% (59/450)        
2022-05-22T17:38:15.1889684Z remote: Counting objects:  14% (63/450)        
2022-05-22T17:38:15.1890264Z remote: Counting objects:  15% (68/450)        
2022-05-22T17:38:15.1890724Z remote: Counting objects:  16% (72/450)        
2022-05-22T17:38:15.1891190Z remote: Counting objects:  17% (77/450)        
2022-05-22T17:38:15.1891667Z remote: Counting objects:  18% (81/450)        
2022-05-22T17:38:15.1892116Z remote: Counting objects:  19% (86/450)        
2022-05-22T17:38:15.1892612Z remote: Counting objects:  20% (90/450)        
2022-05-22T17:38:15.1893054Z remote: Counting objects:  21% (95/450)        
2022-05-22T17:38:15.1893484Z remote: Counting objects:  22% (99/450)        
2022-05-22T17:38:15.1893922Z remote: Counting objects:  23% (104/450)        
2022-05-22T17:38:15.1894411Z remote: Counting objects:  24% (108/450)        
2022-05-22T17:38:15.1894884Z remote: Counting objects:  25% (113/450)        
2022-05-22T17:38:15.1895393Z remote: Counting objects:  26% (117/450)        
2022-05-22T17:38:15.1895855Z remote: Counting objects:  27% (122/450)        
2022-05-22T17:38:15.1896334Z remote: Counting objects:  28% (126/450)        
2022-05-22T17:38:15.1896803Z remote: Counting objects:  29% (131/450)        
2022-05-22T17:38:15.1897304Z remote: Counting objects:  30% (135/450)        
2022-05-22T17:38:15.1897999Z remote: Counting objects:  31% (140/450)        
2022-05-22T17:38:15.1898395Z remote: Counting objects:  32% (144/450)        
2022-05-22T17:38:15.1899078Z remote: Counting objects:  33% (149/450)        
2022-05-22T17:38:15.1899474Z remote: Counting objects:  34% (153/450)        
2022-05-22T17:38:15.1900268Z remote: Counting objects:  35% (158/450)        
2022-05-22T17:38:15.1900875Z remote: Counting objects:  36% (162/450)        
2022-05-22T17:38:15.1901399Z remote: Counting objects:  37% (167/450)        
2022-05-22T17:38:15.1901799Z remote: Counting objects:  38% (171/450)        
2022-05-22T17:38:15.1902172Z remote: Counting objects:  39% (176/450)        
2022-05-22T17:38:15.1902526Z remote: Counting objects:  40% (180/450)        
2022-05-22T17:38:15.1902881Z remote: Counting objects:  41% (185/450)        
2022-05-22T17:38:15.1903357Z remote: Counting objects:  42% (189/450)        
2022-05-22T17:38:15.1903756Z remote: Counting objects:  43% (194/450)        
2022-05-22T17:38:15.1904238Z remote: Counting objects:  44% (198/450)        
2022-05-22T17:38:15.1904660Z remote: Counting objects:  45% (203/450)        
2022-05-22T17:38:15.1905049Z remote: Counting objects:  46% (207/450)        
2022-05-22T17:38:15.1905439Z remote: Counting objects:  47% (212/450)        
2022-05-22T17:38:15.1905874Z remote: Counting objects:  48% (216/450)        
2022-05-22T17:38:15.1906283Z remote: Counting objects:  49% (221/450)        
2022-05-22T17:38:15.1906755Z remote: Counting objects:  50% (225/450)        
2022-05-22T17:38:15.1907183Z remote: Counting objects:  51% (230/450)        
2022-05-22T17:38:15.1907795Z remote: Counting objects:  52% (234/450)        
2022-05-22T17:38:15.1908306Z remote: Counting objects:  53% (239/450)        
2022-05-22T17:38:15.1908767Z remote: Counting objects:  54% (243/450)        
2022-05-22T17:38:15.1909244Z remote: Counting objects:  55% (248/450)        
2022-05-22T17:38:15.1909713Z remote: Counting objects:  56% (252/450)        
2022-05-22T17:38:15.1910181Z remote: Counting objects:  57% (257/450)        
2022-05-22T17:38:15.1910619Z remote: Counting objects:  58% (261/450)        
2022-05-22T17:38:15.1911047Z remote: Counting objects:  59% (266/450)        
2022-05-22T17:38:15.1911523Z remote: Counting objects:  60% (270/450)        
2022-05-22T17:38:15.1911981Z remote: Counting objects:  61% (275/450)        
2022-05-22T17:38:15.1912417Z remote: Counting objects:  62% (279/450)        
2022-05-22T17:38:15.1912870Z remote: Counting objects:  63% (284/450)        
2022-05-22T17:38:15.1913355Z remote: Counting objects:  64% (288/450)        
2022-05-22T17:38:15.1913812Z remote: Counting objects:  65% (293/450)        
2022-05-22T17:38:15.1914246Z remote: Counting objects:  66% (297/450)        
2022-05-22T17:38:15.1914683Z remote: Counting objects:  67% (302/450)        
2022-05-22T17:38:15.1915143Z remote: Counting objects:  68% (306/450)        
2022-05-22T17:38:15.1915612Z remote: Counting objects:  69% (311/450)        
2022-05-22T17:38:15.1916062Z remote: Counting objects:  70% (315/450)        
2022-05-22T17:38:15.1916522Z remote: Counting objects:  71% (320/450)        
2022-05-22T17:38:15.1916977Z remote: Counting objects:  72% (324/450)        
2022-05-22T17:38:15.1917430Z remote: Counting objects:  73% (329/450)        
2022-05-22T17:38:15.1917880Z remote: Counting objects:  74% (333/450)        
2022-05-22T17:38:15.1918342Z remote: Counting objects:  75% (338/450)        
2022-05-22T17:38:15.1918812Z remote: Counting objects:  76% (342/450)        
2022-05-22T17:38:15.1919254Z remote: Counting objects:  77% (347/450)        
2022-05-22T17:38:15.1919674Z remote: Counting objects:  78% (351/450)        
2022-05-22T17:38:15.1920097Z remote: Counting objects:  79% (356/450)        
2022-05-22T17:38:15.1920539Z remote: Counting objects:  80% (360/450)        
2022-05-22T17:38:15.1920976Z remote: Counting objects:  81% (365/450)        
2022-05-22T17:38:15.1921412Z remote: Counting objects:  82% (369/450)        
2022-05-22T17:38:15.1921850Z remote: Counting objects:  83% (374/450)        
2022-05-22T17:38:15.1922545Z remote: Counting objects:  84% (378/450)        
2022-05-22T17:38:15.1923012Z remote: Counting objects:  85% (383/450)        
2022-05-22T17:38:15.1923463Z remote: Counting objects:  86% (387/450)        
2022-05-22T17:38:15.1923910Z remote: Counting objects:  87% (392/450)        
2022-05-22T17:38:15.1924368Z remote: Counting objects:  88% (396/450)        
2022-05-22T17:38:15.1924840Z remote: Counting objects:  89% (401/450)        
2022-05-22T17:38:15.1925293Z remote: Counting objects:  90% (405/450)        
2022-05-22T17:38:15.1925742Z remote: Counting objects:  91% (410/450)        
2022-05-22T17:38:15.1926194Z remote: Counting objects:  92% (414/450)        
2022-05-22T17:38:15.1926631Z remote: Counting objects:  93% (419/450)        
2022-05-22T17:38:15.1927092Z remote: Counting objects:  94% (423/450)        
2022-05-22T17:38:15.1927552Z remote: Counting objects:  95% (428/450)        
2022-05-22T17:38:15.1927990Z remote: Counting objects:  96% (432/450)        
2022-05-22T17:38:15.1928446Z remote: Counting objects:  97% (437/450)        
2022-05-22T17:38:15.1928938Z remote: Counting objects:  98% (441/450)        
2022-05-22T17:38:15.1929357Z remote: Counting objects:  99% (446/450)        
2022-05-22T17:38:15.1929766Z remote: Counting objects: 100% (450/450)        
2022-05-22T17:38:15.1930290Z remote: Counting objects: 100% (450/450), done.        
2022-05-22T17:38:15.1931650Z remote: Compressing objects:   0% (1/245)        
2022-05-22T17:38:15.1932157Z remote: Compressing objects:   1% (3/245)        
2022-05-22T17:38:15.1932755Z remote: Compressing objects:   2% (5/245)        
2022-05-22T17:38:15.1933254Z remote: Compressing objects:   3% (8/245)        
2022-05-22T17:38:15.1933748Z remote: Compressing objects:   4% (10/245)        
2022-05-22T17:38:15.1934232Z remote: Compressing objects:   5% (13/245)        
2022-05-22T17:38:15.1934705Z remote: Compressing objects:   6% (15/245)        
2022-05-22T17:38:15.1935171Z remote: Compressing objects:   7% (18/245)        
2022-05-22T17:38:15.1935671Z remote: Compressing objects:   8% (20/245)        
2022-05-22T17:38:15.1936136Z remote: Compressing objects:   9% (23/245)        
2022-05-22T17:38:15.1936597Z remote: Compressing objects:  10% (25/245)        
2022-05-22T17:38:15.1937063Z remote: Compressing objects:  11% (27/245)        
2022-05-22T17:38:15.1937528Z remote: Compressing objects:  12% (30/245)        
2022-05-22T17:38:15.1938002Z remote: Compressing objects:  13% (32/245)        
2022-05-22T17:38:15.1938468Z remote: Compressing objects:  14% (35/245)        
2022-05-22T17:38:15.1939244Z remote: Compressing objects:  15% (37/245)        
2022-05-22T17:38:15.1939720Z remote: Compressing objects:  16% (40/245)        
2022-05-22T17:38:15.1940186Z remote: Compressing objects:  17% (42/245)        
2022-05-22T17:38:15.1940665Z remote: Compressing objects:  18% (45/245)        
2022-05-22T17:38:15.1941120Z remote: Compressing objects:  19% (47/245)        
2022-05-22T17:38:15.1941581Z remote: Compressing objects:  20% (49/245)        
2022-05-22T17:38:15.1942066Z remote: Compressing objects:  21% (52/245)        
2022-05-22T17:38:15.1942533Z remote: Compressing objects:  22% (54/245)        
2022-05-22T17:38:15.1943003Z remote: Compressing objects:  23% (57/245)        
2022-05-22T17:38:15.1943455Z remote: Compressing objects:  24% (59/245)        
2022-05-22T17:38:15.1943905Z remote: Compressing objects:  25% (62/245)        
2022-05-22T17:38:15.1944380Z remote: Compressing objects:  26% (64/245)        
2022-05-22T17:38:15.1944844Z remote: Compressing objects:  27% (67/245)        
2022-05-22T17:38:15.1945317Z remote: Compressing objects:  28% (69/245)        
2022-05-22T17:38:15.1945768Z remote: Compressing objects:  29% (72/245)        
2022-05-22T17:38:15.1946226Z remote: Compressing objects:  30% (74/245)        
2022-05-22T17:38:15.1946690Z remote: Compressing objects:  31% (76/245)        
2022-05-22T17:38:15.1947154Z remote: Compressing objects:  32% (79/245)        
2022-05-22T17:38:15.1947798Z remote: Compressing objects:  33% (81/245)        
2022-05-22T17:38:15.1948266Z remote: Compressing objects:  34% (84/245)        
2022-05-22T17:38:15.1948727Z remote: Compressing objects:  35% (86/245)        
2022-05-22T17:38:15.1949223Z remote: Compressing objects:  36% (89/245)        
2022-05-22T17:38:15.1949595Z remote: Compressing objects:  37% (91/245)        
2022-05-22T17:38:15.1949958Z remote: Compressing objects:  38% (94/245)        
2022-05-22T17:38:15.1950435Z remote: Compressing objects:  39% (96/245)        
2022-05-22T17:38:15.1950884Z remote: Compressing objects:  40% (98/245)        
2022-05-22T17:38:15.1951353Z remote: Compressing objects:  41% (101/245)        
2022-05-22T17:38:15.1951814Z remote: Compressing objects:  42% (103/245)        
2022-05-22T17:38:15.1952285Z remote: Compressing objects:  43% (106/245)        
2022-05-22T17:38:15.1952759Z remote: Compressing objects:  44% (108/245)        
2022-05-22T17:38:15.1953218Z remote: Compressing objects:  45% (111/245)        
2022-05-22T17:38:15.1953683Z remote: Compressing objects:  46% (113/245)        
2022-05-22T17:38:15.1954154Z remote: Compressing objects:  47% (116/245)        
2022-05-22T17:38:15.1954656Z remote: Compressing objects:  48% (118/245)        
2022-05-22T17:38:15.1955137Z remote: Compressing objects:  49% (121/245)        
2022-05-22T17:38:15.1955607Z remote: Compressing objects:  50% (123/245)        
2022-05-22T17:38:15.1956083Z remote: Compressing objects:  51% (125/245)        
2022-05-22T17:38:15.1956568Z remote: Compressing objects:  52% (128/245)        
2022-05-22T17:38:15.1957129Z remote: Compressing objects:  53% (130/245)        
2022-05-22T17:38:15.1957596Z remote: Compressing objects:  54% (133/245)        
2022-05-22T17:38:15.1958141Z remote: Compressing objects:  55% (135/245)        
2022-05-22T17:38:15.1958570Z remote: Compressing objects:  56% (138/245)        
2022-05-22T17:38:15.1958939Z remote: Compressing objects:  57% (140/245)        
2022-05-22T17:38:15.1959299Z remote: Compressing objects:  58% (143/245)        
2022-05-22T17:38:15.1959739Z remote: Compressing objects:  59% (145/245)        
2022-05-22T17:38:15.1960215Z remote: Compressing objects:  60% (147/245)        
2022-05-22T17:38:15.1960652Z remote: Compressing objects:  61% (150/245)        
2022-05-22T17:38:15.1961072Z remote: Compressing objects:  62% (152/245)        
2022-05-22T17:38:15.1961495Z remote: Compressing objects:  63% (155/245)        
2022-05-22T17:38:15.1961943Z remote: Compressing objects:  64% (157/245)        
2022-05-22T17:38:15.1962384Z remote: Compressing objects:  65% (160/245)        
2022-05-22T17:38:15.1962807Z remote: Compressing objects:  66% (162/245)        
2022-05-22T17:38:15.1963227Z remote: Compressing objects:  67% (165/245)        
2022-05-22T17:38:15.1963658Z remote: Compressing objects:  68% (167/245)        
2022-05-22T17:38:15.1964077Z remote: Compressing objects:  69% (170/245)        
2022-05-22T17:38:15.1964502Z remote: Compressing objects:  70% (172/245)        
2022-05-22T17:38:15.1964972Z remote: Compressing objects:  71% (174/245)        
2022-05-22T17:38:15.1965437Z remote: Compressing objects:  72% (177/245)        
2022-05-22T17:38:15.1965898Z remote: Compressing objects:  73% (179/245)        
2022-05-22T17:38:15.1966335Z remote: Compressing objects:  74% (182/245)        
2022-05-22T17:38:15.1966775Z remote: Compressing objects:  75% (184/245)        
2022-05-22T17:38:15.1967237Z remote: Compressing objects:  76% (187/245)        
2022-05-22T17:38:15.1967680Z remote: Compressing objects:  77% (189/245)        
2022-05-22T17:38:15.1968154Z remote: Compressing objects:  78% (192/245)        
2022-05-22T17:38:15.1968602Z remote: Compressing objects:  79% (194/245)        
2022-05-22T17:38:15.1969059Z remote: Compressing objects:  80% (196/245)        
2022-05-22T17:38:15.1969510Z remote: Compressing objects:  81% (199/245)        
2022-05-22T17:38:15.1969934Z remote: Compressing objects:  82% (201/245)        
2022-05-22T17:38:15.1970434Z remote: Compressing objects:  83% (204/245)        
2022-05-22T17:38:15.1971544Z remote: Compressing objects:  84% (206/245)        
2022-05-22T17:38:15.1971900Z remote: Compressing objects:  85% (209/245)        
2022-05-22T17:38:15.1972235Z remote: Compressing objects:  86% (211/245)        
2022-05-22T17:38:15.1972578Z remote: Compressing objects:  87% (214/245)        
2022-05-22T17:38:15.1972916Z remote: Compressing objects:  88% (216/245)        
2022-05-22T17:38:15.1973260Z remote: Compressing objects:  89% (219/245)        
2022-05-22T17:38:15.1973661Z remote: Compressing objects:  90% (221/245)        
2022-05-22T17:38:15.1974024Z remote: Compressing objects:  91% (223/245)        
2022-05-22T17:38:15.1974378Z remote: Compressing objects:  92% (226/245)        
2022-05-22T17:38:15.1974741Z remote: Compressing objects:  93% (228/245)        
2022-05-22T17:38:15.1975089Z remote: Compressing objects:  94% (231/245)        
2022-05-22T17:38:15.1975439Z remote: Compressing objects:  95% (233/245)        
2022-05-22T17:38:15.1975944Z remote: Compressing objects:  96% (236/245)        
2022-05-22T17:38:15.1976381Z remote: Compressing objects:  97% (238/245)        
2022-05-22T17:38:15.1976997Z remote: Compressing objects:  98% (241/245)        
2022-05-22T17:38:15.1977465Z remote: Compressing objects:  99% (243/245)        
2022-05-22T17:38:15.1977931Z remote: Compressing objects: 100% (245/245)        
2022-05-22T17:38:15.1978677Z remote: Compressing objects: 100% (245/245), done.        
2022-05-22T17:38:15.1979152Z Receiving objects:   0% (1/1208)
2022-05-22T17:38:15.1979575Z Receiving objects:   1% (13/1208)
2022-05-22T17:38:15.1980106Z Receiving objects:   2% (25/1208)
2022-05-22T17:38:15.1980467Z Receiving objects:   3% (37/1208)
2022-05-22T17:38:15.1980836Z Receiving objects:   4% (49/1208)
2022-05-22T17:38:15.1981208Z Receiving objects:   5% (61/1208)
2022-05-22T17:38:15.1981575Z Receiving objects:   6% (73/1208)
2022-05-22T17:38:15.1981932Z Receiving objects:   7% (85/1208)
2022-05-22T17:38:15.1982326Z Receiving objects:   8% (97/1208)
2022-05-22T17:38:15.1982705Z Receiving objects:   9% (109/1208)
2022-05-22T17:38:15.1983068Z Receiving objects:  10% (121/1208)
2022-05-22T17:38:15.1983421Z Receiving objects:  11% (133/1208)
2022-05-22T17:38:15.1983835Z Receiving objects:  12% (145/1208)
2022-05-22T17:38:15.1984185Z Receiving objects:  13% (158/1208)
2022-05-22T17:38:15.1984535Z Receiving objects:  14% (170/1208)
2022-05-22T17:38:15.1984961Z Receiving objects:  15% (182/1208)
2022-05-22T17:38:15.1985345Z Receiving objects:  16% (194/1208)
2022-05-22T17:38:15.1987316Z Receiving objects:  17% (206/1208)
2022-05-22T17:38:15.1987546Z Receiving objects:  18% (218/1208)
2022-05-22T17:38:15.1987741Z Receiving objects:  19% (230/1208)
2022-05-22T17:38:15.1987930Z Receiving objects:  20% (242/1208)
2022-05-22T17:38:15.1988114Z Receiving objects:  21% (254/1208)
2022-05-22T17:38:15.1988297Z Receiving objects:  22% (266/1208)
2022-05-22T17:38:15.1988478Z Receiving objects:  23% (278/1208)
2022-05-22T17:38:15.1988662Z Receiving objects:  24% (290/1208)
2022-05-22T17:38:15.1988863Z Receiving objects:  25% (302/1208)
2022-05-22T17:38:15.1989050Z Receiving objects:  26% (315/1208)
2022-05-22T17:38:15.1989234Z Receiving objects:  27% (327/1208)
2022-05-22T17:38:15.1989417Z Receiving objects:  28% (339/1208)
2022-05-22T17:38:15.1989597Z Receiving objects:  29% (351/1208)
2022-05-22T17:38:15.1989845Z Receiving objects:  30% (363/1208)
2022-05-22T17:38:15.1990062Z Receiving objects:  31% (375/1208)
2022-05-22T17:38:15.1990251Z Receiving objects:  32% (387/1208)
2022-05-22T17:38:15.1990430Z Receiving objects:  33% (399/1208)
2022-05-22T17:38:15.1990612Z Receiving objects:  34% (411/1208)
2022-05-22T17:38:15.1990792Z Receiving objects:  35% (423/1208)
2022-05-22T17:38:15.1991084Z Receiving objects:  36% (435/1208)
2022-05-22T17:38:15.1991386Z Receiving objects:  37% (447/1208)
2022-05-22T17:38:15.1991650Z Receiving objects:  38% (460/1208)
2022-05-22T17:38:15.1991950Z Receiving objects:  39% (472/1208)
2022-05-22T17:38:15.1992240Z Receiving objects:  40% (484/1208)
2022-05-22T17:38:15.1992713Z Receiving objects:  41% (496/1208)
2022-05-22T17:38:15.1993013Z Receiving objects:  42% (508/1208)
2022-05-22T17:38:15.1993518Z Receiving objects:  43% (520/1208)
2022-05-22T17:38:15.1993891Z Receiving objects:  44% (532/1208)
2022-05-22T17:38:15.1994296Z Receiving objects:  45% (544/1208)
2022-05-22T17:38:15.1994679Z Receiving objects:  46% (556/1208)
2022-05-22T17:38:15.1995057Z Receiving objects:  47% (568/1208)
2022-05-22T17:38:15.1995433Z Receiving objects:  48% (580/1208)
2022-05-22T17:38:15.1995814Z Receiving objects:  49% (592/1208)
2022-05-22T17:38:15.1996228Z Receiving objects:  50% (604/1208)
2022-05-22T17:38:15.1996762Z Receiving objects:  51% (617/1208)
2022-05-22T17:38:15.1997210Z Receiving objects:  52% (629/1208)
2022-05-22T17:38:15.1997624Z Receiving objects:  53% (641/1208)
2022-05-22T17:38:15.1998102Z Receiving objects:  54% (653/1208)
2022-05-22T17:38:15.1998493Z Receiving objects:  55% (665/1208)
2022-05-22T17:38:15.1998961Z Receiving objects:  56% (677/1208)
2022-05-22T17:38:15.1999530Z Receiving objects:  57% (689/1208)
2022-05-22T17:38:15.1999998Z Receiving objects:  58% (701/1208)
2022-05-22T17:38:15.2000440Z Receiving objects:  59% (713/1208)
2022-05-22T17:38:15.2000877Z Receiving objects:  60% (725/1208)
2022-05-22T17:38:15.2001419Z Receiving objects:  61% (737/1208)
2022-05-22T17:38:15.2001955Z Receiving objects:  62% (749/1208)
2022-05-22T17:38:15.2002429Z Receiving objects:  63% (762/1208)
2022-05-22T17:38:15.2002906Z Receiving objects:  64% (774/1208)
2022-05-22T17:38:15.2003342Z Receiving objects:  65% (786/1208)
2022-05-22T17:38:15.2003881Z Receiving objects:  66% (798/1208)
2022-05-22T17:38:15.2004396Z Receiving objects:  67% (810/1208)
2022-05-22T17:38:15.2004887Z Receiving objects:  68% (822/1208)
2022-05-22T17:38:15.2005353Z Receiving objects:  69% (834/1208)
2022-05-22T17:38:15.2005825Z Receiving objects:  70% (846/1208)
2022-05-22T17:38:15.2006302Z Receiving objects:  71% (858/1208)
2022-05-22T17:38:15.2006892Z Receiving objects:  72% (870/1208)
2022-05-22T17:38:15.2007384Z Receiving objects:  73% (882/1208)
2022-05-22T17:38:15.2007881Z Receiving objects:  74% (894/1208)
2022-05-22T17:38:15.2008399Z Receiving objects:  75% (906/1208)
2022-05-22T17:38:15.2008875Z Receiving objects:  76% (919/1208)
2022-05-22T17:38:15.2009349Z Receiving objects:  77% (931/1208)
2022-05-22T17:38:15.2009809Z Receiving objects:  78% (943/1208)
2022-05-22T17:38:15.2010414Z Receiving objects:  79% (955/1208)
2022-05-22T17:38:15.2010869Z Receiving objects:  80% (967/1208)
2022-05-22T17:38:15.2012650Z remote: Total 1208 (delta 259), reused 345 (delta 154), pack-reused 758        
2022-05-22T17:38:15.2013255Z Receiving objects:  81% (979/1208)
2022-05-22T17:38:15.2013832Z Receiving objects:  82% (991/1208)
2022-05-22T17:38:15.2014320Z Receiving objects:  83% (1003/1208)
2022-05-22T17:38:15.2014748Z Receiving objects:  84% (1015/1208)
2022-05-22T17:38:15.2015110Z Receiving objects:  85% (1027/1208)
2022-05-22T17:38:15.2015593Z Receiving objects:  86% (1039/1208)
2022-05-22T17:38:15.2016030Z Receiving objects:  87% (1051/1208)
2022-05-22T17:38:15.2092592Z Receiving objects:  88% (1064/1208)
2022-05-22T17:38:15.2093157Z Receiving objects:  89% (1076/1208)
2022-05-22T17:38:15.2093438Z Receiving objects:  90% (1088/1208)
2022-05-22T17:38:15.2093716Z Receiving objects:  91% (1100/1208)
2022-05-22T17:38:15.2093972Z Receiving objects:  92% (1112/1208)
2022-05-22T17:38:15.2094180Z Receiving objects:  93% (1124/1208)
2022-05-22T17:38:15.2094442Z Receiving objects:  94% (1136/1208)
2022-05-22T17:38:15.2094635Z Receiving objects:  95% (1148/1208)
2022-05-22T17:38:15.2094882Z Receiving objects:  96% (1160/1208)
2022-05-22T17:38:15.2095126Z Receiving objects:  97% (1172/1208)
2022-05-22T17:38:15.2095371Z Receiving objects:  98% (1184/1208)
2022-05-22T17:38:15.2095626Z Receiving objects:  99% (1196/1208)
2022-05-22T17:38:15.2095863Z Receiving objects: 100% (1208/1208)
2022-05-22T17:38:15.2096138Z Receiving objects: 100% (1208/1208), 129.10 KiB | 21.52 MiB/s, done.
2022-05-22T17:38:15.2096424Z Resolving deltas:   0% (0/651)
2022-05-22T17:38:15.2096839Z Resolving deltas:   1% (7/651)
2022-05-22T17:38:15.2097094Z Resolving deltas:   2% (14/651)
2022-05-22T17:38:15.2097339Z Resolving deltas:   3% (20/651)
2022-05-22T17:38:15.2097577Z Resolving deltas:   4% (27/651)
2022-05-22T17:38:15.2097813Z Resolving deltas:   5% (33/651)
2022-05-22T17:38:15.2098046Z Resolving deltas:   6% (40/651)
2022-05-22T17:38:15.2098277Z Resolving deltas:   7% (46/651)
2022-05-22T17:38:15.2098518Z Resolving deltas:   8% (53/651)
2022-05-22T17:38:15.2099050Z Resolving deltas:   9% (60/651)
2022-05-22T17:38:15.2099305Z Resolving deltas:  10% (66/651)
2022-05-22T17:38:15.2099548Z Resolving deltas:  11% (72/651)
2022-05-22T17:38:15.2099808Z Resolving deltas:  12% (79/651)
2022-05-22T17:38:15.2100069Z Resolving deltas:  13% (85/651)
2022-05-22T17:38:15.2100318Z Resolving deltas:  14% (92/651)
2022-05-22T17:38:15.2100557Z Resolving deltas:  15% (98/651)
2022-05-22T17:38:15.2100802Z Resolving deltas:  16% (105/651)
2022-05-22T17:38:15.2101054Z Resolving deltas:  17% (111/651)
2022-05-22T17:38:15.2101260Z Resolving deltas:  18% (119/651)
2022-05-22T17:38:15.2101512Z Resolving deltas:  19% (124/651)
2022-05-22T17:38:15.2101715Z Resolving deltas:  20% (131/651)
2022-05-22T17:38:15.2101911Z Resolving deltas:  21% (137/651)
2022-05-22T17:38:15.2102098Z Resolving deltas:  22% (144/651)
2022-05-22T17:38:15.2102347Z Resolving deltas:  23% (150/651)
2022-05-22T17:38:15.2102590Z Resolving deltas:  24% (157/651)
2022-05-22T17:38:15.2102839Z Resolving deltas:  25% (163/651)
2022-05-22T17:38:15.2103083Z Resolving deltas:  26% (170/651)
2022-05-22T17:38:15.2103418Z Resolving deltas:  27% (176/651)
2022-05-22T17:38:15.2103680Z Resolving deltas:  28% (183/651)
2022-05-22T17:38:15.2103935Z Resolving deltas:  29% (189/651)
2022-05-22T17:38:15.2104190Z Resolving deltas:  30% (196/651)
2022-05-22T17:38:15.2104436Z Resolving deltas:  31% (202/651)
2022-05-22T17:38:15.2104674Z Resolving deltas:  32% (209/651)
2022-05-22T17:38:15.2104914Z Resolving deltas:  33% (215/651)
2022-05-22T17:38:15.2105154Z Resolving deltas:  34% (222/651)
2022-05-22T17:38:15.2105390Z Resolving deltas:  35% (228/651)
2022-05-22T17:38:15.2105635Z Resolving deltas:  36% (235/651)
2022-05-22T17:38:15.2105872Z Resolving deltas:  37% (241/651)
2022-05-22T17:38:15.2106109Z Resolving deltas:  38% (248/651)
2022-05-22T17:38:15.2106345Z Resolving deltas:  39% (254/651)
2022-05-22T17:38:15.2106588Z Resolving deltas:  40% (261/651)
2022-05-22T17:38:15.2106826Z Resolving deltas:  41% (267/651)
2022-05-22T17:38:15.2107199Z Resolving deltas:  42% (274/651)
2022-05-22T17:38:15.2107465Z Resolving deltas:  43% (280/651)
2022-05-22T17:38:15.2107708Z Resolving deltas:  44% (287/651)
2022-05-22T17:38:15.2107951Z Resolving deltas:  45% (293/651)
2022-05-22T17:38:15.2108287Z Resolving deltas:  46% (300/651)
2022-05-22T17:38:15.2108537Z Resolving deltas:  47% (306/651)
2022-05-22T17:38:15.2108837Z Resolving deltas:  48% (313/651)
2022-05-22T17:38:15.2109175Z Resolving deltas:  49% (319/651)
2022-05-22T17:38:15.2109550Z Resolving deltas:  50% (326/651)
2022-05-22T17:38:15.2110582Z Resolving deltas:  51% (333/651)
2022-05-22T17:38:15.2110888Z Resolving deltas:  52% (339/651)
2022-05-22T17:38:15.2111191Z Resolving deltas:  53% (346/651)
2022-05-22T17:38:15.2111480Z Resolving deltas:  54% (352/651)
2022-05-22T17:38:15.2111668Z Resolving deltas:  55% (359/651)
2022-05-22T17:38:15.2111915Z Resolving deltas:  56% (365/651)
2022-05-22T17:38:15.2112108Z Resolving deltas:  57% (372/651)
2022-05-22T17:38:15.2112290Z Resolving deltas:  58% (378/651)
2022-05-22T17:38:15.2112468Z Resolving deltas:  59% (385/651)
2022-05-22T17:38:15.2112745Z Resolving deltas:  60% (391/651)
2022-05-22T17:38:15.2113183Z Resolving deltas:  61% (398/651)
2022-05-22T17:38:15.2113559Z Resolving deltas:  62% (404/651)
2022-05-22T17:38:15.2113918Z Resolving deltas:  63% (412/651)
2022-05-22T17:38:15.2114287Z Resolving deltas:  64% (417/651)
2022-05-22T17:38:15.2114634Z Resolving deltas:  65% (424/651)
2022-05-22T17:38:15.2114965Z Resolving deltas:  66% (430/651)
2022-05-22T17:38:15.2115536Z Resolving deltas:  67% (437/651)
2022-05-22T17:38:15.2115918Z Resolving deltas:  68% (443/651)
2022-05-22T17:38:15.2116335Z Resolving deltas:  69% (450/651)
2022-05-22T17:38:15.2116772Z Resolving deltas:  70% (456/651)
2022-05-22T17:38:15.2117067Z Resolving deltas:  71% (463/651)
2022-05-22T17:38:15.2117339Z Resolving deltas:  72% (470/651)
2022-05-22T17:38:15.2117533Z Resolving deltas:  73% (476/651)
2022-05-22T17:38:15.2117816Z Resolving deltas:  74% (482/651)
2022-05-22T17:38:15.2118165Z Resolving deltas:  75% (489/651)
2022-05-22T17:38:15.2118680Z Resolving deltas:  76% (495/651)
2022-05-22T17:38:15.2119239Z Resolving deltas:  77% (502/651)
2022-05-22T17:38:15.2119501Z Resolving deltas:  78% (508/651)
2022-05-22T17:38:15.2119694Z Resolving deltas:  79% (515/651)
2022-05-22T17:38:15.2119886Z Resolving deltas:  80% (521/651)
2022-05-22T17:38:15.2120132Z Resolving deltas:  81% (528/651)
2022-05-22T17:38:15.2120371Z Resolving deltas:  82% (534/651)
2022-05-22T17:38:15.2120609Z Resolving deltas:  83% (541/651)
2022-05-22T17:38:15.2120854Z Resolving deltas:  84% (547/651)
2022-05-22T17:38:15.2121093Z Resolving deltas:  85% (554/651)
2022-05-22T17:38:15.2121335Z Resolving deltas:  86% (560/651)
2022-05-22T17:38:15.2121572Z Resolving deltas:  87% (567/651)
2022-05-22T17:38:15.2121807Z Resolving deltas:  88% (573/651)
2022-05-22T17:38:15.2122036Z Resolving deltas:  89% (580/651)
2022-05-22T17:38:15.2122267Z Resolving deltas:  90% (586/651)
2022-05-22T17:38:15.2122507Z Resolving deltas:  91% (593/651)
2022-05-22T17:38:15.2122746Z Resolving deltas:  92% (599/651)
2022-05-22T17:38:15.2123078Z Resolving deltas:  93% (606/651)
2022-05-22T17:38:15.2123333Z Resolving deltas:  94% (612/651)
2022-05-22T17:38:15.2123567Z Resolving deltas:  95% (619/651)
2022-05-22T17:38:15.2123796Z Resolving deltas:  96% (625/651)
2022-05-22T17:38:15.2124040Z Resolving deltas:  97% (632/651)
2022-05-22T17:38:15.2124233Z Resolving deltas:  98% (638/651)
2022-05-22T17:38:15.2124415Z Resolving deltas:  99% (645/651)
2022-05-22T17:38:15.2124650Z Resolving deltas: 100% (651/651)
2022-05-22T17:38:15.2124888Z Resolving deltas: 100% (651/651), done.
2022-05-22T17:38:15.2125437Z From https://ghe.coxautoinc.com/Consumer/SEO-AWS-TOOLS
2022-05-22T17:38:15.2125820Z  * [new branch]      develop    -> origin/develop
2022-05-22T17:38:15.2126148Z  * [new branch]      master     -> origin/master
2022-05-22T17:38:15.2148616Z [command]/usr/bin/git branch --list --remote origin/master
2022-05-22T17:38:15.2187409Z   origin/master
2022-05-22T17:38:15.2193701Z [command]/usr/bin/git rev-parse refs/remotes/origin/master
2022-05-22T17:38:15.2222041Z fc59388533b56fa895ac28879556c5aec80b19ea
2022-05-22T17:38:15.2225225Z ##[endgroup]
2022-05-22T17:38:15.2226092Z ##[group]Determining the checkout info
2022-05-22T17:38:15.2227014Z ##[endgroup]
2022-05-22T17:38:15.2227788Z ##[group]Checking out the ref
2022-05-22T17:38:15.2231204Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2022-05-22T17:38:15.2294443Z Reset branch 'master'
2022-05-22T17:38:15.2294916Z branch 'master' set up to track 'origin/master'.
2022-05-22T17:38:15.2297877Z ##[endgroup]
2022-05-22T17:38:15.2298386Z ##[group]Setting up auth for fetching submodules
2022-05-22T17:38:15.2303505Z [command]/usr/bin/git config --global http.https://ghe.coxautoinc.com/.extraheader AUTHORIZATION: basic ***
2022-05-22T17:38:15.2360549Z [command]/usr/bin/git config --global --unset-all url.https://ghe.coxautoinc.com/.insteadOf
2022-05-22T17:38:15.2390371Z [command]/usr/bin/git config --global --add url.https://ghe.coxautoinc.com/.insteadOf git@ghe.coxautoinc.com:
2022-05-22T17:38:15.2424906Z [command]/usr/bin/git config --global --add url.https://ghe.coxautoinc.com/.insteadOf org-8930@github.com:
2022-05-22T17:38:15.2452566Z ##[endgroup]
2022-05-22T17:38:15.2453170Z ##[group]Fetching submodules
2022-05-22T17:38:15.2455446Z [command]/usr/bin/git submodule sync --recursive
2022-05-22T17:38:15.2758911Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive
2022-05-22T17:38:15.3115448Z Submodule 'caiCustomResource' (https://ghe.coxautoinc.com/Consumer/consumer-tools-cfn-custom-resource) registered for path 'caiCustomResource'
2022-05-22T17:38:15.3161476Z Cloning into '/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/caiCustomResource'...
2022-05-22T17:38:15.4708623Z Submodule path 'caiCustomResource': checked out 'fd6d0b28f28a54c3e1643af041b72308165bc6de'
2022-05-22T17:38:15.4783510Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0
2022-05-22T17:38:15.5161108Z Entering 'caiCustomResource'
2022-05-22T17:38:15.5212929Z ##[endgroup]
2022-05-22T17:38:15.5213383Z ##[group]Persisting credentials for submodules
2022-05-22T17:38:15.5218171Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'url\.https\:\/\/ghe\.coxautoinc\.com\/\.insteadOf' && git config --local --unset-all 'url.https://ghe.coxautoinc.com/.insteadOf' || :
2022-05-22T17:38:15.5617528Z Entering 'caiCustomResource'
2022-05-22T17:38:15.5685346Z [command]/usr/bin/git submodule foreach --recursive git config --local 'http.https://ghe.coxautoinc.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url
2022-05-22T17:38:15.6128209Z Entering 'caiCustomResource'
2022-05-22T17:38:15.6174519Z file:/runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS/.git/modules/caiCustomResource/config	remote.origin.url
2022-05-22T17:38:15.6215937Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://ghe.coxautoinc.com/.insteadOf' 'git@ghe.coxautoinc.com:'
2022-05-22T17:38:15.6549565Z Entering 'caiCustomResource'
2022-05-22T17:38:15.6607526Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://ghe.coxautoinc.com/.insteadOf' 'org-8930@github.com:'
2022-05-22T17:38:15.6924025Z Entering 'caiCustomResource'
2022-05-22T17:38:15.6979354Z ##[endgroup]
2022-05-22T17:38:15.7041349Z [command]/usr/bin/git log -1 --format='%H'
2022-05-22T17:38:15.7073997Z 'fc59388533b56fa895ac28879556c5aec80b19ea'
2022-05-22T17:38:15.7417561Z ##[group]Run tj-actions/changed-files@v20.1
2022-05-22T17:38:15.7417839Z with:
2022-05-22T17:38:15.7418047Z   files: ./robots_files/*
2022-05-22T17:38:15.7418282Z   old_new_files_separator: |
2022-05-22T17:38:15.7419113Z   token: ***
2022-05-22T17:38:15.7419335Z   separator:  
2022-05-22T17:38:15.7419553Z   old_new_separator: ,
2022-05-22T17:38:15.7419792Z   files_separator: 

2022-05-22T17:38:15.7420031Z   files_ignore_separator: 

2022-05-22T17:38:15.7420291Z   sha: fc59388533b56fa895ac28879556c5aec80b19ea
2022-05-22T17:38:15.7420548Z   since_last_remote_commit: false
2022-05-22T17:38:15.7420785Z   use_fork_point: false
2022-05-22T17:38:15.7421005Z   quotepath: true
2022-05-22T17:38:15.7421217Z ##[endgroup]
2022-05-22T17:38:15.7699473Z ##[group]Run # "Set base sha..."
2022-05-22T17:38:15.7699776Z �[36;1m# "Set base sha..."�[0m
2022-05-22T17:38:15.7699984Z �[36;1mif [[ -n "" ]]; then�[0m
2022-05-22T17:38:15.7700220Z �[36;1m  echo "::set-output name=base_sha::"�[0m
2022-05-22T17:38:15.7700540Z �[36;1melif [[ "false" == "true" && "" != "0000000000000000000000000000000000000000" ]]; then�[0m
2022-05-22T17:38:15.7700803Z �[36;1m    echo "::set-output name=base_sha::"�[0m
2022-05-22T17:38:15.7701007Z �[36;1mfi�[0m
2022-05-22T17:38:15.7716301Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T17:38:15.7716556Z ##[endgroup]
2022-05-22T17:38:15.7886722Z ##[group]Run # "Calculating the previous and current SHA..."
2022-05-22T17:38:15.7887036Z �[36;1m# "Calculating the previous and current SHA..."�[0m
2022-05-22T17:38:15.7887305Z �[36;1mbash $GITHUB_ACTION_PATH/diff-sha.sh�[0m
2022-05-22T17:38:15.7897583Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T17:38:15.7897836Z env:
2022-05-22T17:38:15.7898068Z   GITHUB_SERVER_URL: https://ghe.coxautoinc.com
2022-05-22T17:38:15.7898332Z   GITHUB_REPOSITORY: Consumer/SEO-AWS-TOOLS
2022-05-22T17:38:15.7898541Z   GITHUB_BASE_REF: 
2022-05-22T17:38:15.7899108Z   GITHUB_HEAD_REF: 
2022-05-22T17:38:15.7899376Z   GITHUB_ACTION_PATH: /runner/_work/_actions/tj-actions/changed-files/v20.1
2022-05-22T17:38:15.7899676Z   INPUT_SHA: fc59388533b56fa895ac28879556c5aec80b19ea
2022-05-22T17:38:15.7899900Z   INPUT_BASE_SHA: 
2022-05-22T17:38:15.7900311Z   INPUT_TOKEN: ***
2022-05-22T17:38:15.7900509Z   INPUT_PATH: 
2022-05-22T17:38:15.7900709Z   INPUT_USE_FORK_POINT: false
2022-05-22T17:38:15.7900917Z ##[endgroup]
2022-05-22T17:38:15.7954082Z ##[group]changed-files-diff-sha
2022-05-22T17:38:15.7954506Z Resolving repository path...
2022-05-22T17:38:15.7954872Z Getting HEAD SHA...
2022-05-22T17:38:15.9620838Z remote: Total 0 (delta 0), reused 0 (delta 0), pack-reused 0        
2022-05-22T17:38:15.9768892Z ##[endgroup]
2022-05-22T17:38:15.9808404Z ##[group]Run tj-actions/glob@v7.20
2022-05-22T17:38:15.9808670Z with:
2022-05-22T17:38:15.9808901Z   files: ./robots_files/*
2022-05-22T17:38:15.9809162Z   files-separator: 

2022-05-22T17:38:15.9809421Z   escape-paths: true
2022-05-22T17:38:15.9809704Z   excluded-files-separator: 

2022-05-22T17:38:15.9810023Z   base-sha: 4a97b781e17fe226716b9a98b2880ee74312c5b6
2022-05-22T17:38:15.9810451Z   sha: fc59388533b56fa895ac28879556c5aec80b19ea
2022-05-22T17:38:15.9810750Z   include-deleted-files: true
2022-05-22T17:38:15.9811010Z   separator: |
2022-05-22T17:38:15.9811289Z   files-from-source-file-separator: 

2022-05-22T17:38:15.9811660Z   excluded-files-from-source-file-separator: 

2022-05-22T17:38:15.9812002Z   follow-symbolic-links: true
2022-05-22T17:38:15.9812287Z   strip-top-level-dir: true
2022-05-22T17:38:15.9812556Z ##[endgroup]
2022-05-22T17:38:16.0523420Z [command]/usr/bin/git rev-parse --show-toplevel
2022-05-22T17:38:16.0566866Z /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T17:38:16.0590792Z [command]/usr/bin/git diff --diff-filter=D --name-only 4a97b781e17fe226716b9a98b2880ee74312c5b6 fc59388533b56fa895ac28879556c5aec80b19ea
2022-05-22T17:38:16.0625180Z 
2022-05-22T17:38:16.0637220Z 
2022-05-22T17:38:16.0641544Z Successfully created paths-output-file: /tmp/bb4e73e4-70d5-4e84-81b8-51fc9f957449.txt
2022-05-22T17:38:16.0693351Z ##[group]Run bash $GITHUB_ACTION_PATH/entrypoint.sh
2022-05-22T17:38:16.0693684Z �[36;1mbash $GITHUB_ACTION_PATH/entrypoint.sh�[0m
2022-05-22T17:38:16.0705263Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T17:38:16.0705521Z env:
2022-05-22T17:38:16.0705786Z   GITHUB_ACTION_PATH: /runner/_work/_actions/tj-actions/changed-files/v20.1
2022-05-22T17:38:16.0706129Z   INPUT_FILES_PATTERN_FILE: /tmp/bb4e73e4-70d5-4e84-81b8-51fc9f957449.txt
2022-05-22T17:38:16.0706403Z   INPUT_SEPARATOR:  
2022-05-22T17:38:16.0706607Z   INPUT_PATH: 
2022-05-22T17:38:16.0706869Z   INPUT_PREVIOUS_SHA: 4a97b781e17fe226716b9a98b2880ee74312c5b6
2022-05-22T17:38:16.0707163Z   INPUT_CURRENT_SHA: fc59388533b56fa895ac28879556c5aec80b19ea
2022-05-22T17:38:16.0707416Z   INPUT_TARGET_BRANCH: master
2022-05-22T17:38:16.0707646Z   INPUT_CURRENT_BRANCH: master
2022-05-22T17:38:16.0707865Z   INPUT_QUOTEPATH: true
2022-05-22T17:38:16.0708091Z   INPUT_OLD_NEW_SEPARATOR: ,
2022-05-22T17:38:16.0708328Z   INPUT_OLD_NEW_FILES_SEPARATOR: |
2022-05-22T17:38:16.0708557Z ##[endgroup]
2022-05-22T17:38:16.0785415Z ##[group]changed-files
2022-05-22T17:38:16.0785680Z Resolving repository path...
2022-05-22T17:38:16.0786508Z Retrieving changes between 4a97b781e17fe226716b9a98b2880ee74312c5b6 (master) → fc59388533b56fa895ac28879556c5aec80b19ea (master)
2022-05-22T17:38:16.0786901Z Getting diff...
2022-05-22T17:38:16.6821837Z Matching changed files: robots_files/robots-kbb-3.txt|robots_files/robots-kbb-4.txt
2022-05-22T17:38:16.6868197Z Non Matching changed files: host-mappings.json
2022-05-22T17:38:16.7311507Z Matching modified files: robots_files/robots-kbb-3.txt|robots_files/robots-kbb-4.txt
2022-05-22T17:38:16.7349275Z Non Matching modified files: host-mappings.json
2022-05-22T17:38:16.8004868Z Added files: 
2022-05-22T17:38:16.8005218Z Copied files: 
2022-05-22T17:38:16.8005429Z Deleted files: 
2022-05-22T17:38:16.8005597Z Modified files: 
2022-05-22T17:38:16.8006592Z Renamed files: robots_files/robots-kbb-3.txt robots_files/robots-kbb-4.txt
2022-05-22T17:38:16.8007010Z Type Changed files: 
2022-05-22T17:38:16.8007292Z Unmerged files: 
2022-05-22T17:38:16.8007553Z Unknown files: 
2022-05-22T17:38:16.8008118Z All changed and modified files: robots_files/robots-kbb-3.txt robots_files/robots-kbb-4.txt
2022-05-22T17:38:16.8008763Z All changed files: robots_files/robots-kbb-3.txt robots_files/robots-kbb-4.txt
2022-05-22T17:38:16.8009157Z All modified files: robots_files/robots-kbb-3.txt robots_files/robots-kbb-4.txt
2022-05-22T17:38:16.8009403Z All old & new renamed files: 
2022-05-22T17:38:16.8012646Z ##[endgroup]
2022-05-22T17:38:16.8102271Z ##[group]Run for file in ; do
2022-05-22T17:38:16.8102635Z �[36;1mfor file in ; do�[0m
2022-05-22T17:38:16.8102866Z �[36;1m  echo $file�[0m
2022-05-22T17:38:16.8103031Z �[36;1mdone�[0m
2022-05-22T17:38:16.8113676Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T17:38:16.8113913Z ##[endgroup]
2022-05-22T17:38:16.8162425Z ##[group]Run git log --name-status --ignore-submodules=all HEAD^..HEAD | grep -E "^R" | awk -F '\t' -v d="," '{print $2d$3}'
2022-05-22T17:38:16.8177635Z �[36;1mgit log --name-status --ignore-submodules=all HEAD^..HEAD | grep -E "^R" | awk -F '\t' -v d="," '{print $2d$3}'�[0m
2022-05-22T17:38:16.8186733Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2022-05-22T17:38:16.8186968Z ##[endgroup]
2022-05-22T17:38:16.8239361Z robots_files/robots-kbb-1.txt,robots_files/robots-kbb-3.txt
2022-05-22T17:38:16.8239970Z robots_files/robots-kbb-2.txt,robots_files/robots-kbb-4.txt
2022-05-22T17:38:16.8334309Z Post job cleanup.
2022-05-22T17:38:16.8362349Z Post job cleanup.
2022-05-22T17:38:16.8754155Z deleted paths-output-file: /tmp/bb4e73e4-70d5-4e84-81b8-51fc9f957449.txt
2022-05-22T17:38:16.8837065Z Post job cleanup.
2022-05-22T17:38:16.9980494Z [command]/usr/bin/git version
2022-05-22T17:38:17.0034705Z git version 2.35.1
2022-05-22T17:38:17.0068646Z Copying '/home/runner/.gitconfig' to '/runner/_work/_temp/ffe4b192-3023-4f09-8570-0bd58672ede8/.gitconfig'
2022-05-22T17:38:17.0080319Z Temporarily overriding HOME='/runner/_work/_temp/ffe4b192-3023-4f09-8570-0bd58672ede8' before making global git config changes
2022-05-22T17:38:17.0081096Z Adding repository directory to the temporary git global config as a safe directory
2022-05-22T17:38:17.0085083Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/SEO-AWS-TOOLS/SEO-AWS-TOOLS
2022-05-22T17:38:17.0124588Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-05-22T17:38:17.0157695Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-05-22T17:38:17.0483191Z Entering 'caiCustomResource'
2022-05-22T17:38:17.0542891Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader
2022-05-22T17:38:17.0576942Z http.https://ghe.coxautoinc.com/.extraheader
2022-05-22T17:38:17.0584601Z [command]/usr/bin/git config --local --unset-all http.https://ghe.coxautoinc.com/.extraheader
2022-05-22T17:38:17.0615267Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/ghe\.coxautoinc\.com\/\.extraheader' && git config --local --unset-all 'http.https://ghe.coxautoinc.com/.extraheader' || :
2022-05-22T17:38:17.1236634Z Entering 'caiCustomResource'
2022-05-22T17:38:17.1263246Z http.https://ghe.coxautoinc.com/.extraheader
2022-05-22T17:38:17.1532992Z Cleaning up orphan processes

@stevegroner
Copy link

Could this be some sort of GIT version mismatch or something....

@jackton1
Copy link
Member

jackton1 commented May 22, 2022

@stevegroner After reviewing your comment again this clearly doesn't seem to be a version mismatch if running the command returns the filenames. I'll suggest using the commit hash to compare.

git log --name-status --ignore-submodules=all 4a97b781e17fe226716b9a98b2880ee74312c5b6..fc59388533b56fa895ac28879556c5aec80b19ea | grep -E "^R" | awk -F '\t' -v d="," '{print $2d$3}' 

@jackton1 jackton1 changed the title [Feature] Provide Original Filename in a Rename [BUG] old_new_renamed_files is empty when providing a glob pattern. May 23, 2022
@jackton1 jackton1 reopened this May 23, 2022
@jackton1 jackton1 added bug Something isn't working and removed documentation Improvements or additions to documentation enhancement New feature or request labels May 23, 2022
@jackton1
Copy link
Member

I was able to replicate the bug here: https://github.com/tj-actions/changed-files/runs/6548790981?check_suite_focus=true

It should be a quick fix.

@Steve-Groner
Copy link
Author

Cool, please let me know when its fix and I will test. I really need this piece ;)

@Steve-Groner
Copy link
Author

@jackton1 Do you know when this might be pushed. Just trying to plan around its release.

@jackton1
Copy link
Member

I would get the fix out late today 10 PM EST so it should be available by tomorrow morning

@jackton1
Copy link
Member

@stevegroner The fix should be available in the latest release v20.2. Thanks for debugging this was really a huge help in narrowing down this bug.

@stevegroner
Copy link

Confirmed. 20.2 works perfectly. Thank you so much for fixing it.

@jackton1 jackton1 changed the title [BUG] old_new_renamed_files is empty when providing a glob pattern. [BUG] all_old_new_renamed_files is empty when providing a glob pattern. May 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
3 participants