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] Deleted files are not detected #339

Closed
4 tasks done
shinebayar-g opened this issue Sep 28, 2023 · 3 comments · Fixed by #340 or #342
Closed
4 tasks done

[BUG] Deleted files are not detected #339

shinebayar-g opened this issue Sep 28, 2023 · 3 comments · Fixed by #340 or #342
Labels
bug Something isn't working

Comments

@shinebayar-g
Copy link

shinebayar-g commented Sep 28, 2023

Is there an existing issue for this?

  • I have searched the existing issues

Does this issue exist in the latest version?

  • I'm using the latest release

Describe the bug?

Action doesn't detect deleted files
It's not detecting deleted files. But successfully detected a new file.

image

To Reproduce

Minimal reproducible code:

name: Build

on:
  push:

jobs:
  build:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v3

      - run: |
          rm README.md
          echo "new file" > new-file.txt

      - name: Check changed files
        id: changed-files
        uses: tj-actions/verify-changed-files@v16

      - name: Print changed files
        run: |
          for file in ${{ steps.changed-files.outputs.changed_files }}; do
            echo "file: $file"
            echo "------"
          done

      - run: git status

What OS are you seeing the problem on?

ubuntu-latest or ubuntu-22.04

Expected behavior?

Deleted files are detected and included in outputs.changed_files

Relevant log output

Click
2023-09-28T19:41:00.8537674Z Requested labels: ubuntu-22.04
2023-09-28T19:41:00.8537948Z Job defined at: shinebayar-g/github-actions-test/.github/workflows/test.yaml@refs/heads/main
2023-09-28T19:41:00.8538104Z Waiting for a runner to pick up this job...
2023-09-28T19:41:01.5088084Z Job is waiting for a hosted runner to come online.
2023-09-28T19:41:05.6405387Z Job is about to start running on the hosted runner: GitHub Actions 2 (hosted)
2023-09-28T19:41:08.4137320Z ##[debug]Starting: build
2023-09-28T19:41:08.4170510Z ##[debug]Cleaning runner temp folder: /home/runner/work/_temp
2023-09-28T19:41:08.4545837Z ##[debug]Starting: Set up job
2023-09-28T19:41:08.4546323Z Current runner version: '2.309.0'
2023-09-28T19:41:08.4573978Z ##[group]Operating System
2023-09-28T19:41:08.4574593Z Ubuntu
2023-09-28T19:41:08.4574904Z 22.04.3
2023-09-28T19:41:08.4575290Z LTS
2023-09-28T19:41:08.4575814Z ##[endgroup]
2023-09-28T19:41:08.4576163Z ##[group]Runner Image
2023-09-28T19:41:08.4576620Z Image: ubuntu-22.04
2023-09-28T19:41:08.4577038Z Version: 20230924.1.0
2023-09-28T19:41:08.4577648Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20230924.1/images/linux/Ubuntu2204-Readme.md
2023-09-28T19:41:08.4578537Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20230924.1
2023-09-28T19:41:08.4579119Z ##[endgroup]
2023-09-28T19:41:08.4579509Z ##[group]Runner Image Provisioner
2023-09-28T19:41:08.4579941Z 2.0.310.1
2023-09-28T19:41:08.4580910Z ##[endgroup]
2023-09-28T19:41:08.4581736Z ##[group]GITHUB_TOKEN Permissions
2023-09-28T19:41:08.4585176Z Contents: read
2023-09-28T19:41:08.4585696Z Metadata: read
2023-09-28T19:41:08.4586058Z Packages: read
2023-09-28T19:41:08.4586476Z ##[endgroup]
2023-09-28T19:41:08.4590854Z Secret source: Actions
2023-09-28T19:41:08.4591693Z ##[debug]Primary repository: shinebayar-g/github-actions-test
2023-09-28T19:41:08.4592310Z Prepare workflow directory
2023-09-28T19:41:08.4686385Z ##[debug]Creating pipeline directory: '/home/runner/work/github-actions-test'
2023-09-28T19:41:08.4689611Z ##[debug]Creating workspace directory: '/home/runner/work/github-actions-test/github-actions-test'
2023-09-28T19:41:08.4690892Z ##[debug]Update context data
2023-09-28T19:41:08.4694887Z ##[debug]Evaluating job-level environment variables
2023-09-28T19:41:08.5403146Z ##[debug]Evaluating job container
2023-09-28T19:41:08.5408156Z ##[debug]Evaluating job service containers
2023-09-28T19:41:08.5411389Z ##[debug]Evaluating job defaults
2023-09-28T19:41:08.5512194Z Prepare all required actions
2023-09-28T19:41:08.5751106Z Getting action download info
2023-09-28T19:41:08.8845080Z Download action repository 'actions/checkout@v3' (SHA:f43a0e5ff2bd294095638e18286ca9a3d1956744)
2023-09-28T19:41:09.3847505Z ##[debug]Download 'https://api.github.com/repos/actions/checkout/tarball/f43a0e5ff2bd294095638e18286ca9a3d1956744' to '/home/runner/work/_actions/_temp_cd1161ee-0820-48a6-935d-e3b3b822bf84/7d390d3b-7aef-498c-836d-1c8cd5c37552.tar.gz'
2023-09-28T19:41:09.5185951Z ##[debug]Unwrap 'actions-checkout-f43a0e5' to '/home/runner/work/_actions/actions/checkout/v3'
2023-09-28T19:41:09.5379198Z ##[debug]Archive '/home/runner/work/_actions/_temp_cd1161ee-0820-48a6-935d-e3b3b822bf84/7d390d3b-7aef-498c-836d-1c8cd5c37552.tar.gz' has been unzipped into '/home/runner/work/_actions/actions/checkout/v3'.
2023-09-28T19:41:09.5558664Z Download action repository 'tj-actions/verify-changed-files@v16' (SHA:a9b6fd340565065ad293625200630be7fd2b0f13)
2023-09-28T19:41:10.0379294Z ##[debug]Download 'https://api.github.com/repos/tj-actions/verify-changed-files/tarball/a9b6fd340565065ad293625200630be7fd2b0f13' to '/home/runner/work/_actions/_temp_6ffdaace-cdf3-48da-aaf0-6181674dd2f8/1643e547-b341-4d56-958d-e317f43ca34c.tar.gz'
2023-09-28T19:41:10.0545259Z ##[debug]Unwrap 'tj-actions-verify-changed-files-a9b6fd3' to '/home/runner/work/_actions/tj-actions/verify-changed-files/v16'
2023-09-28T19:41:10.0575692Z ##[debug]Archive '/home/runner/work/_actions/_temp_6ffdaace-cdf3-48da-aaf0-6181674dd2f8/1643e547-b341-4d56-958d-e317f43ca34c.tar.gz' has been unzipped into '/home/runner/work/_actions/tj-actions/verify-changed-files/v16'.
2023-09-28T19:41:10.0654853Z ##[debug]action.yml for action: '/home/runner/work/_actions/actions/checkout/v3/action.yml'.
2023-09-28T19:41:10.1952614Z ##[debug]action.yml for action: '/home/runner/work/_actions/tj-actions/verify-changed-files/v16/action.yml'.
2023-09-28T19:41:10.2208375Z Getting action download info
2023-09-28T19:41:10.4178000Z Download action repository 'tj-actions/glob@v17' (SHA:ac7d983dd3677ab0879d703cfdbde78676cdfaad)
2023-09-28T19:41:10.9723354Z ##[debug]Download 'https://api.github.com/repos/tj-actions/glob/tarball/ac7d983dd3677ab0879d703cfdbde78676cdfaad' to '/home/runner/work/_actions/_temp_b510f950-44eb-490c-aa61-44fd85dedc2d/f816cf8e-deb6-4b03-a385-4125d37aeeaf.tar.gz'
2023-09-28T19:41:10.9956995Z ##[debug]Unwrap 'tj-actions-glob-ac7d983' to '/home/runner/work/_actions/tj-actions/glob/v17'
2023-09-28T19:41:11.0012642Z ##[debug]Archive '/home/runner/work/_actions/_temp_b510f950-44eb-490c-aa61-44fd85dedc2d/f816cf8e-deb6-4b03-a385-4125d37aeeaf.tar.gz' has been unzipped into '/home/runner/work/_actions/tj-actions/glob/v17'.
2023-09-28T19:41:11.0033141Z ##[debug]action.yml for action: '/home/runner/work/_actions/tj-actions/glob/v17/action.yml'.
2023-09-28T19:41:11.0391138Z ##[debug]Set step '__actions_checkout' display name to: 'Run actions/checkout@v3'
2023-09-28T19:41:11.0393624Z ##[debug]Set step '__run' display name to: 'Run rm README.md'
2023-09-28T19:41:11.0394924Z ##[debug]Set step 'changed-files' display name to: 'Check changed files'
2023-09-28T19:41:11.0396041Z ##[debug]Set step '__run_2' display name to: 'Print changed files'
2023-09-28T19:41:11.0397059Z ##[debug]Set step '__run_3' display name to: 'Run git status'
2023-09-28T19:41:11.0398070Z Complete job name: build
2023-09-28T19:41:11.0415556Z ##[debug]Collect running processes for tracking orphan processes.
2023-09-28T19:41:11.0710662Z ##[debug]Finishing: Set up job
2023-09-28T19:41:11.0990084Z ##[debug]Evaluating condition for step: 'Run actions/checkout@v3'
2023-09-28T19:41:11.1055165Z ##[debug]Evaluating: success()
2023-09-28T19:41:11.1062528Z ##[debug]Evaluating success:
2023-09-28T19:41:11.1097941Z ##[debug]=> true
2023-09-28T19:41:11.1106885Z ##[debug]Result: true
2023-09-28T19:41:11.1155153Z ##[debug]Starting: Run actions/checkout@v3
2023-09-28T19:41:11.1298493Z ##[debug]Register post job cleanup for action: actions/checkout@v3
2023-09-28T19:41:11.1436493Z ##[debug]Loading inputs
2023-09-28T19:41:11.1447279Z ##[debug]Evaluating: github.repository
2023-09-28T19:41:11.1448904Z ##[debug]Evaluating Index:
2023-09-28T19:41:11.1451580Z ##[debug]..Evaluating github:
2023-09-28T19:41:11.1452802Z ##[debug]..=> Object
2023-09-28T19:41:11.1471499Z ##[debug]..Evaluating String:
2023-09-28T19:41:11.1472360Z ##[debug]..=> 'repository'
2023-09-28T19:41:11.1478943Z ##[debug]=> 'shinebayar-g/github-actions-test'
2023-09-28T19:41:11.1481064Z ##[debug]Result: 'shinebayar-g/github-actions-test'
2023-09-28T19:41:11.1483950Z ##[debug]Evaluating: github.token
2023-09-28T19:41:11.1484308Z ##[debug]Evaluating Index:
2023-09-28T19:41:11.1484619Z ##[debug]..Evaluating github:
2023-09-28T19:41:11.1484929Z ##[debug]..=> Object
2023-09-28T19:41:11.1485286Z ##[debug]..Evaluating String:
2023-09-28T19:41:11.1485576Z ##[debug]..=> 'token'
2023-09-28T19:41:11.1486388Z ##[debug]=> '***'
2023-09-28T19:41:11.1486839Z ##[debug]Result: '***'
2023-09-28T19:41:11.1494881Z ##[debug]Loading env
2023-09-28T19:41:11.1607327Z ##[group]Run actions/checkout@v3
2023-09-28T19:41:11.1607671Z with:
2023-09-28T19:41:11.1607993Z   repository: shinebayar-g/github-actions-test
2023-09-28T19:41:11.1608643Z   token: ***
2023-09-28T19:41:11.1608924Z   ssh-strict: true
2023-09-28T19:41:11.1609489Z   persist-credentials: true
2023-09-28T19:41:11.1609767Z   clean: true
2023-09-28T19:41:11.1610064Z   sparse-checkout-cone-mode: true
2023-09-28T19:41:11.1610376Z   fetch-depth: 1
2023-09-28T19:41:11.1610626Z   fetch-tags: false
2023-09-28T19:41:11.1610923Z   lfs: false
2023-09-28T19:41:11.1611188Z   submodules: false
2023-09-28T19:41:11.1611459Z   set-safe-directory: true
2023-09-28T19:41:11.1611741Z ##[endgroup]
2023-09-28T19:41:11.5376714Z ##[debug]GITHUB_WORKSPACE = '/home/runner/work/github-actions-test/github-actions-test'
2023-09-28T19:41:11.5378008Z ##[debug]qualified repository = 'shinebayar-g/github-actions-test'
2023-09-28T19:41:11.5378659Z ##[debug]ref = 'refs/heads/main'
2023-09-28T19:41:11.5379304Z ##[debug]commit = '1cc64205ac585ae0c2666f57e5253369d81df9a5'
2023-09-28T19:41:11.5380319Z ##[debug]clean = true
2023-09-28T19:41:11.5381117Z ##[debug]fetch depth = 1
2023-09-28T19:41:11.5381598Z ##[debug]fetch tags = false
2023-09-28T19:41:11.5382105Z ##[debug]lfs = false
2023-09-28T19:41:11.5382577Z ##[debug]submodules = false
2023-09-28T19:41:11.5383093Z ##[debug]recursive submodules = false
2023-09-28T19:41:11.5383603Z ##[debug]GitHub Host URL = 
2023-09-28T19:41:11.5385168Z ::add-matcher::/home/runner/work/_actions/actions/checkout/v3/dist/problem-matcher.json
2023-09-28T19:41:11.5509665Z ##[debug]Added matchers: 'checkout-git'. Problem matchers scan action output for known warning or error strings and report these inline.
2023-09-28T19:41:11.5526166Z Syncing repository: shinebayar-g/github-actions-test
2023-09-28T19:41:11.5527421Z ::group::Getting Git version info
2023-09-28T19:41:11.5528867Z ##[group]Getting Git version info
2023-09-28T19:41:11.5529526Z Working directory is '/home/runner/work/github-actions-test/github-actions-test'
2023-09-28T19:41:11.5530276Z ##[debug]Getting git version
2023-09-28T19:41:11.5530592Z [command]/usr/bin/git version
2023-09-28T19:41:11.5640244Z git version 2.42.0
2023-09-28T19:41:12.3538598Z ##[debug]0
2023-09-28T19:41:12.3609671Z ##[debug]git version 2.42.0
2023-09-28T19:41:12.3610261Z ##[debug]
2023-09-28T19:41:12.3614692Z ##[debug]Set git useragent to: git/2.42.0 (github-actions-checkout)
2023-09-28T19:41:12.3615895Z ::endgroup::
2023-09-28T19:41:12.3616220Z ##[endgroup]
2023-09-28T19:41:12.3632431Z ::add-mask::***
2023-09-28T19:41:12.3634126Z Temporarily overriding HOME='/home/runner/work/_temp/dcef1685-a325-46d1-b052-d250392c0ff6' before making global git config changes
2023-09-28T19:41:12.3636048Z Adding repository directory to the temporary git global config as a safe directory
2023-09-28T19:41:12.3637157Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/github-actions-test/github-actions-test
2023-09-28T19:41:12.3637991Z ##[debug]0
2023-09-28T19:41:12.3638549Z ##[debug]
2023-09-28T19:41:12.3639190Z Deleting the contents of '/home/runner/work/github-actions-test/github-actions-test'
2023-09-28T19:41:12.3640070Z ::group::Initializing the repository
2023-09-28T19:41:12.3640460Z ##[group]Initializing the repository
2023-09-28T19:41:12.3641125Z [command]/usr/bin/git init /home/runner/work/github-actions-test/github-actions-test
2023-09-28T19:41:12.3641834Z hint: Using 'master' as the name for the initial branch. This default branch name
2023-09-28T19:41:12.3642467Z hint: is subject to change. To configure the initial branch name to use in all
2023-09-28T19:41:12.3643080Z hint: of your new repositories, which will suppress this warning, call:
2023-09-28T19:41:12.3643522Z hint: 
2023-09-28T19:41:12.3656410Z hint: 	git config --global init.defaultBranch <name>
2023-09-28T19:41:12.3656911Z hint: 
2023-09-28T19:41:12.3657566Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2023-09-28T19:41:12.3658367Z hint: 'development'. The just-created branch can be renamed via this command:
2023-09-28T19:41:12.3658826Z hint: 
2023-09-28T19:41:12.3660140Z hint: 	git branch -m <name>
2023-09-28T19:41:12.3661219Z Initialized empty Git repository in /home/runner/work/github-actions-test/github-actions-test/.git/
2023-09-28T19:41:12.3662059Z ##[debug]0
2023-09-28T19:41:12.3662921Z ##[debug]Initialized empty Git repository in /home/runner/work/github-actions-test/github-actions-test/.git/
2023-09-28T19:41:12.3663345Z ##[debug]
2023-09-28T19:41:12.3664025Z [command]/usr/bin/git remote add origin https://github.com/shinebayar-g/github-actions-test
2023-09-28T19:41:12.3664741Z ##[debug]0
2023-09-28T19:41:12.3665268Z ##[debug]
2023-09-28T19:41:12.3665955Z ::endgroup::
2023-09-28T19:41:12.3666206Z ##[endgroup]
2023-09-28T19:41:12.3666825Z ::group::Disabling automatic garbage collection
2023-09-28T19:41:12.3667196Z ##[group]Disabling automatic garbage collection
2023-09-28T19:41:12.3667748Z [command]/usr/bin/git config --local gc.auto 0
2023-09-28T19:41:12.3668368Z ##[debug]0
2023-09-28T19:41:12.3669219Z ##[debug]
2023-09-28T19:41:12.3669743Z ::endgroup::
2023-09-28T19:41:12.3669970Z ##[endgroup]
2023-09-28T19:41:12.3670519Z ::group::Setting up auth
2023-09-28T19:41:12.3670806Z ##[group]Setting up auth
2023-09-28T19:41:12.3672142Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2023-09-28T19:41:12.3673126Z ##[debug]1
2023-09-28T19:41:12.3673633Z ##[debug]
2023-09-28T19:41:12.3674525Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2023-09-28T19:41:12.3675352Z ##[debug]0
2023-09-28T19:41:12.3675854Z ##[debug]
2023-09-28T19:41:12.3676515Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2023-09-28T19:41:12.3677214Z ##[debug]1
2023-09-28T19:41:12.3677714Z ##[debug]
2023-09-28T19:41:12.3678736Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2023-09-28T19:41:12.3679691Z ##[debug]0
2023-09-28T19:41:12.3680193Z ##[debug]
2023-09-28T19:41:12.3680845Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2023-09-28T19:41:12.3681551Z ##[debug]0
2023-09-28T19:41:12.3682052Z ##[debug]
2023-09-28T19:41:12.3682595Z ::endgroup::
2023-09-28T19:41:12.3683091Z ##[endgroup]
2023-09-28T19:41:12.3683719Z ::group::Fetching the repository
2023-09-28T19:41:12.3684042Z ##[group]Fetching the repository
2023-09-28T19:41:12.3684978Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +1cc64205ac585ae0c2666f57e5253369d81df9a5:refs/remotes/origin/main
2023-09-28T19:41:12.3685688Z remote: Enumerating objects: 6, done.        
2023-09-28T19:41:12.3686313Z remote: Counting objects:  16% (1/6)        
2023-09-28T19:41:12.3687187Z remote: Counting objects:  33% (2/6)        
2023-09-28T19:41:12.3687850Z remote: Counting objects:  50% (3/6)        
2023-09-28T19:41:12.3688440Z remote: Counting objects:  66% (4/6)        
2023-09-28T19:41:12.3689131Z remote: Counting objects:  83% (5/6)        
2023-09-28T19:41:12.3690707Z remote: Counting objects: 100% (6/6)        
2023-09-28T19:41:12.3691182Z remote: Counting objects: 100% (6/6), done.        
2023-09-28T19:41:12.3691780Z remote: Compressing objects:  33% (1/3)        
2023-09-28T19:41:12.3692387Z remote: Compressing objects:  66% (2/3)        
2023-09-28T19:41:12.3692965Z remote: Compressing objects: 100% (3/3)        
2023-09-28T19:41:12.3693649Z remote: Compressing objects: 100% (3/3), done.        
2023-09-28T19:41:12.3694510Z remote: Total 6 (delta 0), reused 5 (delta 0), pack-reused 0        
2023-09-28T19:41:12.3695159Z From https://github.com/shinebayar-g/github-actions-test
2023-09-28T19:41:12.3695830Z  * [new ref]         1cc64205ac585ae0c2666f57e5253369d81df9a5 -> origin/main
2023-09-28T19:41:12.3696519Z ##[debug]0
2023-09-28T19:41:12.3697046Z ##[debug]
2023-09-28T19:41:12.3697568Z ::endgroup::
2023-09-28T19:41:12.3697816Z ##[endgroup]
2023-09-28T19:41:12.3698402Z ::group::Determining the checkout info
2023-09-28T19:41:12.3698735Z ##[group]Determining the checkout info
2023-09-28T19:41:12.3699316Z ::endgroup::
2023-09-28T19:41:12.3699555Z ##[endgroup]
2023-09-28T19:41:12.3700099Z ::group::Checking out the ref
2023-09-28T19:41:12.3700543Z ##[group]Checking out the ref
2023-09-28T19:41:12.3701193Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
2023-09-28T19:41:12.3701752Z Switched to a new branch 'main'
2023-09-28T19:41:12.3702265Z branch 'main' set up to track 'origin/main'.
2023-09-28T19:41:12.3702872Z ##[debug]0
2023-09-28T19:41:12.3703534Z ##[debug]branch 'main' set up to track 'origin/main'.
2023-09-28T19:41:12.3703847Z ##[debug]
2023-09-28T19:41:12.3704371Z ::endgroup::
2023-09-28T19:41:12.3704612Z ##[endgroup]
2023-09-28T19:41:12.3705433Z ##[debug]0
2023-09-28T19:41:12.3706919Z ##[debug]commit 1cc64205ac585ae0c2666f57e5253369d81df9a5
2023-09-28T19:41:12.3707408Z ##[debug]Author: Shinebayar Gansukh <[email protected]>
2023-09-28T19:41:12.3707852Z ##[debug]Date:   Thu Sep 28 11:55:19 2023 -0700
2023-09-28T19:41:12.3708138Z ##[debug]
2023-09-28T19:41:12.3708383Z ##[debug]    test changed files
2023-09-28T19:41:12.3708650Z ##[debug]
2023-09-28T19:41:12.3709164Z [command]/usr/bin/git log -1 --format='%H'
2023-09-28T19:41:12.3709699Z '1cc64205ac585ae0c2666f57e5253369d81df9a5'
2023-09-28T19:41:12.3710356Z ##[debug]0
2023-09-28T19:41:12.3710993Z ##[debug]'1cc64205ac585ae0c2666f57e5253369d81df9a5'
2023-09-28T19:41:12.3711290Z ##[debug]
2023-09-28T19:41:12.3711885Z ##[debug]Unsetting HOME override
2023-09-28T19:41:12.3716599Z ::remove-matcher owner=checkout-git::
2023-09-28T19:41:12.3742651Z ##[debug]Removed matchers: 'checkout-git'
2023-09-28T19:41:12.3750309Z ##[debug]Node Action run completed with exit code 0
2023-09-28T19:41:12.3915541Z ##[debug]Save intra-action state isPost = true
2023-09-28T19:41:12.3916041Z ##[debug]Save intra-action state setSafeDirectory = true
2023-09-28T19:41:12.3916568Z ##[debug]Save intra-action state repositoryPath = /home/runner/work/github-actions-test/github-actions-test
2023-09-28T19:41:12.3931153Z ##[debug]Finishing: Run actions/checkout@v3
2023-09-28T19:41:12.3942223Z ##[debug]Evaluating condition for step: 'Run rm README.md'
2023-09-28T19:41:12.3944497Z ##[debug]Evaluating: success()
2023-09-28T19:41:12.3944942Z ##[debug]Evaluating success:
2023-09-28T19:41:12.3945419Z ##[debug]=> true
2023-09-28T19:41:12.3945880Z ##[debug]Result: true
2023-09-28T19:41:12.3946692Z ##[debug]Starting: Run rm README.md
2023-09-28T19:41:12.3958343Z ##[debug]Loading inputs
2023-09-28T19:41:12.3995382Z ##[debug]Loading env
2023-09-28T19:41:12.4041774Z ##[group]Run rm README.md
2023-09-28T19:41:12.4042125Z �[36;1mrm README.md�[0m
2023-09-28T19:41:12.4042444Z �[36;1mecho "new file" > new-file.txt�[0m
2023-09-28T19:41:12.4111790Z shell: /usr/bin/bash -e {0}
2023-09-28T19:41:12.4112113Z ##[endgroup]
2023-09-28T19:41:12.4338750Z ##[debug]/usr/bin/bash -e /home/runner/work/_temp/03f98b9f-871f-41b8-a3a9-7e093c7a3e96.sh
2023-09-28T19:41:12.4391410Z ##[debug]Finishing: Run rm README.md
2023-09-28T19:41:12.4397098Z ##[debug]Evaluating condition for step: 'Check changed files'
2023-09-28T19:41:12.4398579Z ##[debug]Evaluating: success()
2023-09-28T19:41:12.4399006Z ##[debug]Evaluating success:
2023-09-28T19:41:12.4399491Z ##[debug]=> true
2023-09-28T19:41:12.4399935Z ##[debug]Result: true
2023-09-28T19:41:12.4400575Z ##[debug]Starting: Check changed files
2023-09-28T19:41:12.4461738Z ##[debug]Register post job cleanup for action: tj-actions/verify-changed-files@v16
2023-09-28T19:41:12.4480921Z ##[debug]Loading inputs
2023-09-28T19:41:12.4487669Z ##[debug]Loading env
2023-09-28T19:41:12.4498854Z ##[group]Run tj-actions/verify-changed-files@v16
2023-09-28T19:41:12.4499379Z with:
2023-09-28T19:41:12.4499736Z   files-separator: 

2023-09-28T19:41:12.4500067Z   separator:  
2023-09-28T19:41:12.4500724Z   match-gitignore-files: false
2023-09-28T19:41:12.4501270Z   fail-if-changed: false
2023-09-28T19:41:12.4501615Z   fail-message: Files have changed.
2023-09-28T19:41:12.4501996Z ##[endgroup]
2023-09-28T19:41:12.4754503Z ##[debug]Evaluating condition for step: 'run'
2023-09-28T19:41:12.4756431Z ##[debug]Evaluating: success()
2023-09-28T19:41:12.4757025Z ##[debug]Evaluating success:
2023-09-28T19:41:12.4758153Z ##[debug]=> true
2023-09-28T19:41:12.4758954Z ##[debug]Result: true
2023-09-28T19:41:12.4771626Z ##[debug]Starting: run
2023-09-28T19:41:12.4805413Z ##[debug]Register post job cleanup for action: tj-actions/glob@v17
2023-09-28T19:41:12.4817263Z ##[debug]Loading inputs
2023-09-28T19:41:12.4821450Z ##[debug]Evaluating: inputs.files
2023-09-28T19:41:12.4821919Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.4822358Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.4822778Z ##[debug]..=> Object
2023-09-28T19:41:12.4823294Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.4823954Z ##[debug]..=> 'files'
2023-09-28T19:41:12.4824508Z ##[debug]=> ''
2023-09-28T19:41:12.4824824Z ##[debug]Result: ''
2023-09-28T19:41:12.4825790Z ##[debug]Evaluating: inputs.files-separator
2023-09-28T19:41:12.4826251Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.4826607Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.4827000Z ##[debug]..=> Object
2023-09-28T19:41:12.4827384Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.4827869Z ##[debug]..=> 'files-separator'
2023-09-28T19:41:12.4828251Z ##[debug]=> '
2023-09-28T19:41:12.4828590Z ##[debug]'
2023-09-28T19:41:12.4828946Z ##[debug]Result: '
2023-09-28T19:41:12.4829225Z ##[debug]'
2023-09-28T19:41:12.4830025Z ##[debug]Evaluating: inputs.match-gitignore-files
2023-09-28T19:41:12.4830483Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.4830823Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.4831211Z ##[debug]..=> Object
2023-09-28T19:41:12.4831738Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.4832905Z ##[debug]..=> 'match-gitignore-files'
2023-09-28T19:41:12.4833287Z ##[debug]=> 'false'
2023-09-28T19:41:12.4833692Z ##[debug]Result: 'false'
2023-09-28T19:41:12.4841470Z ##[debug]Evaluating: github.event.pull_request.base.ref
2023-09-28T19:41:12.4841968Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.4842368Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.4842719Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.4843221Z ##[debug]......Evaluating Index:
2023-09-28T19:41:12.4843635Z ##[debug]........Evaluating github:
2023-09-28T19:41:12.4844066Z ##[debug]........=> Object
2023-09-28T19:41:12.4844411Z ##[debug]........Evaluating String:
2023-09-28T19:41:12.4844903Z ##[debug]........=> 'event'
2023-09-28T19:41:12.4845303Z ##[debug]......=> Object
2023-09-28T19:41:12.4845718Z ##[debug]......Evaluating String:
2023-09-28T19:41:12.4846132Z ##[debug]......=> 'pull_request'
2023-09-28T19:41:12.4846652Z ##[debug]....=> null
2023-09-28T19:41:12.4847053Z ##[debug]..=> null
2023-09-28T19:41:12.4847362Z ##[debug]=> null
2023-09-28T19:41:12.4847747Z ##[debug]Result: null
2023-09-28T19:41:12.4850905Z ##[debug]Evaluating: github.event.pull_request.head.repo.fork
2023-09-28T19:41:12.4851401Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.4851812Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.4852500Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.4852955Z ##[debug]......Evaluating Index:
2023-09-28T19:41:12.4853361Z ##[debug]........Evaluating Index:
2023-09-28T19:41:12.4853783Z ##[debug]..........Evaluating github:
2023-09-28T19:41:12.4854141Z ##[debug]..........=> Object
2023-09-28T19:41:12.4854543Z ##[debug]..........Evaluating String:
2023-09-28T19:41:12.4855024Z ##[debug]..........=> 'event'
2023-09-28T19:41:12.4855416Z ##[debug]........=> Object
2023-09-28T19:41:12.4855764Z ##[debug]........Evaluating String:
2023-09-28T19:41:12.4856170Z ##[debug]........=> 'pull_request'
2023-09-28T19:41:12.4856630Z ##[debug]......=> null
2023-09-28T19:41:12.4856992Z ##[debug]....=> null
2023-09-28T19:41:12.4857316Z ##[debug]..=> null
2023-09-28T19:41:12.4857706Z ##[debug]=> null
2023-09-28T19:41:12.4858070Z ##[debug]Result: null
2023-09-28T19:41:12.4859501Z ##[debug]Evaluating: github.sha
2023-09-28T19:41:12.4859912Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.4860261Z ##[debug]..Evaluating github:
2023-09-28T19:41:12.4860965Z ##[debug]..=> Object
2023-09-28T19:41:12.4861398Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.4861778Z ##[debug]..=> 'sha'
2023-09-28T19:41:12.4862214Z ##[debug]=> '1cc64205ac585ae0c2666f57e5253369d81df9a5'
2023-09-28T19:41:12.4862719Z ##[debug]Result: '1cc64205ac585ae0c2666f57e5253369d81df9a5'
2023-09-28T19:41:12.4865359Z ##[debug]Loading env
2023-09-28T19:41:12.4873739Z ##[group]Run tj-actions/glob@v17
2023-09-28T19:41:12.4874113Z with:
2023-09-28T19:41:12.4874410Z   files-separator: 

2023-09-28T19:41:12.4874770Z   separator: |
2023-09-28T19:41:12.4875242Z   match-directories: false
2023-09-28T19:41:12.4875593Z   match-gitignore-files: false
2023-09-28T19:41:12.4876014Z   excluded-files-separator: 

2023-09-28T19:41:12.4876640Z   files-from-source-file-separator: 

2023-09-28T19:41:12.4877117Z   excluded-files-from-source-file-separator: 

2023-09-28T19:41:12.4877686Z   follow-symbolic-links: true
2023-09-28T19:41:12.4878075Z   escape-paths: false
2023-09-28T19:41:12.4878418Z   strip-top-level-dir: true
2023-09-28T19:41:12.4878842Z   include-deleted-files: false
2023-09-28T19:41:12.4879269Z   sha: 1cc64205ac585ae0c2666f57e5253369d81df9a5
2023-09-28T19:41:12.4879751Z   working-directory: .
2023-09-28T19:41:12.4880048Z ##[endgroup]
2023-09-28T19:41:12.5731396Z ##[debug]file patterns: 
2023-09-28T19:41:12.5733618Z ##[debug]file patterns: **
2023-09-28T19:41:12.5734289Z ##[debug]!/home/runner/work/github-actions-test/github-actions-test/.git/**
2023-09-28T19:41:12.5734909Z ##[debug]!/home/runner/work/github-actions-test/github-actions-test/**/node_modules/**
2023-09-28T19:41:12.5735458Z ##[debug]!/home/runner/work/github-actions-test/github-actions-test/node_modules/**
2023-09-28T19:41:12.5736638Z ##[debug]followSymbolicLinks 'true'
2023-09-28T19:41:12.5737781Z ##[debug]matchDirectories 'false'
2023-09-28T19:41:12.5782946Z ##[debug]followSymbolicLinks 'true'
2023-09-28T19:41:12.5784085Z ##[debug]implicitDescendants 'true'
2023-09-28T19:41:12.5938283Z ##[debug]matchDirectories 'false'
2023-09-28T19:41:12.5939467Z ##[debug]omitBrokenSymbolicLinks 'true'
2023-09-28T19:41:12.5940242Z ##[debug]Search path '/home/runner/work/github-actions-test/github-actions-test'
2023-09-28T19:41:12.6221675Z Successfully created paths-output-file: /tmp/21c0b949-288c-4b65-b4e1-9e6141824739.txt
2023-09-28T19:41:12.6276044Z ##[debug]Node Action run completed with exit code 0
2023-09-28T19:41:12.6280135Z ##[debug]Save intra-action state paths-output-file = /tmp/21c0b949-288c-4b65-b4e1-9e6141824739.txt
2023-09-28T19:41:12.6305930Z ##[debug]Set output paths-output-file = /tmp/21c0b949-288c-4b65-b4e1-9e6141824739.txt
2023-09-28T19:41:12.6310050Z ##[debug]Set output paths = .github/workflows/test.yaml|new-file.txt
2023-09-28T19:41:12.6310580Z ##[debug]Set output has-custom-patterns = false
2023-09-28T19:41:12.6315518Z ##[debug]Finished: run
2023-09-28T19:41:12.6325451Z ##[debug]Evaluating: github.server_url
2023-09-28T19:41:12.6325864Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.6326464Z ##[debug]..Evaluating github:
2023-09-28T19:41:12.6326786Z ##[debug]..=> Object
2023-09-28T19:41:12.6327204Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6327498Z ##[debug]..=> 'server_url'
2023-09-28T19:41:12.6327849Z ##[debug]=> 'https://github.com'
2023-09-28T19:41:12.6328196Z ##[debug]Result: 'https://github.com'
2023-09-28T19:41:12.6328835Z ##[debug]Evaluating: github.repository
2023-09-28T19:41:12.6329138Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.6329427Z ##[debug]..Evaluating github:
2023-09-28T19:41:12.6329704Z ##[debug]..=> Object
2023-09-28T19:41:12.6329982Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6330248Z ##[debug]..=> 'repository'
2023-09-28T19:41:12.6330594Z ##[debug]=> 'shinebayar-g/github-actions-test'
2023-09-28T19:41:12.6331003Z ##[debug]Result: 'shinebayar-g/github-actions-test'
2023-09-28T19:41:12.6331611Z ##[debug]Evaluating: steps.glob.outputs.paths-output-file
2023-09-28T19:41:12.6331968Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.6332251Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.6332547Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.6332823Z ##[debug]......Evaluating steps:
2023-09-28T19:41:12.6333113Z ##[debug]......=> Object
2023-09-28T19:41:12.6333396Z ##[debug]......Evaluating String:
2023-09-28T19:41:12.6333674Z ##[debug]......=> 'glob'
2023-09-28T19:41:12.6333923Z ##[debug]....=> Object
2023-09-28T19:41:12.6334382Z ##[debug]....Evaluating String:
2023-09-28T19:41:12.6334689Z ##[debug]....=> 'outputs'
2023-09-28T19:41:12.6335071Z ##[debug]..=> Object
2023-09-28T19:41:12.6335497Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6335820Z ##[debug]..=> 'paths-output-file'
2023-09-28T19:41:12.6336205Z ##[debug]=> '/tmp/21c0b949-288c-4b65-b4e1-9e6141824739.txt'
2023-09-28T19:41:12.6336650Z ##[debug]Result: '/tmp/21c0b949-288c-4b65-b4e1-9e6141824739.txt'
2023-09-28T19:41:12.6337448Z ##[debug]Evaluating: inputs.separator
2023-09-28T19:41:12.6337784Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.6338089Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.6338382Z ##[debug]..=> Object
2023-09-28T19:41:12.6338681Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6338981Z ##[debug]..=> 'separator'
2023-09-28T19:41:12.6339273Z ##[debug]=> ' '
2023-09-28T19:41:12.6339535Z ##[debug]Result: ' '
2023-09-28T19:41:12.6340039Z ##[debug]Evaluating: inputs.match-gitignore-files
2023-09-28T19:41:12.6340551Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.6340859Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.6341213Z ##[debug]..=> Object
2023-09-28T19:41:12.6341507Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6341828Z ##[debug]..=> 'match-gitignore-files'
2023-09-28T19:41:12.6342155Z ##[debug]=> 'false'
2023-09-28T19:41:12.6342441Z ##[debug]Result: 'false'
2023-09-28T19:41:12.6342937Z ##[debug]Evaluating: inputs.fail-if-changed
2023-09-28T19:41:12.6343297Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.6343602Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.6343900Z ##[debug]..=> Object
2023-09-28T19:41:12.6344176Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6344499Z ##[debug]..=> 'fail-if-changed'
2023-09-28T19:41:12.6344803Z ##[debug]=> 'false'
2023-09-28T19:41:12.6345086Z ##[debug]Result: 'false'
2023-09-28T19:41:12.6345605Z ##[debug]Evaluating: inputs.fail-message
2023-09-28T19:41:12.6345941Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.6346230Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.6346528Z ##[debug]..=> Object
2023-09-28T19:41:12.6346820Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6347126Z ##[debug]..=> 'fail-message'
2023-09-28T19:41:12.6347439Z ##[debug]=> 'Files have changed.'
2023-09-28T19:41:12.6347782Z ##[debug]Result: 'Files have changed.'
2023-09-28T19:41:12.6358103Z ##[debug]Evaluating condition for step: 'run'
2023-09-28T19:41:12.6359522Z ##[debug]Evaluating: success()
2023-09-28T19:41:12.6360016Z ##[debug]Evaluating success:
2023-09-28T19:41:12.6360598Z ##[debug]=> true
2023-09-28T19:41:12.6361131Z ##[debug]Result: true
2023-09-28T19:41:12.6361769Z ##[debug]Starting: run
2023-09-28T19:41:12.6370953Z ##[debug]Loading inputs
2023-09-28T19:41:12.6372456Z ##[debug]Loading env
2023-09-28T19:41:12.6378628Z ##[group]Run bash $GITHUB_ACTION_PATH/entrypoint.sh
2023-09-28T19:41:12.6379045Z �[36;1mbash $GITHUB_ACTION_PATH/entrypoint.sh�[0m
2023-09-28T19:41:12.6445942Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2023-09-28T19:41:12.6446321Z env:
2023-09-28T19:41:12.6446632Z   GITHUB_SERVER_URL: https://github.com
2023-09-28T19:41:12.6448334Z   GITHUB_REPOSITORY: shinebayar-g/github-actions-test
2023-09-28T19:41:12.6448782Z   INPUT_FILES_PATTERN_FILE: /tmp/21c0b949-288c-4b65-b4e1-9e6141824739.txt
2023-09-28T19:41:12.6449148Z   INPUT_SEPARATOR:  
2023-09-28T19:41:12.6449442Z   INPUT_MATCH_GITIGNORE_FILES: false
2023-09-28T19:41:12.6449764Z   INPUT_FAIL_IF_CHANGED: false
2023-09-28T19:41:12.6450102Z   INPUT_FAIL_MSG: Files have changed.
2023-09-28T19:41:12.6450397Z ##[endgroup]
2023-09-28T19:41:12.6524579Z ##[debug]/usr/bin/bash --noprofile --norc -e -o pipefail /home/runner/work/_temp/39a51271-2482-466c-a0d6-630d32da244e.sh
2023-09-28T19:41:12.6578535Z ::group::verify-changed-files
2023-09-28T19:41:12.6578895Z ##[group]verify-changed-files
2023-09-28T19:41:12.6579184Z Separator:  
2023-09-28T19:41:12.6758631Z Found uncommited changes
2023-09-28T19:41:12.6797845Z ::endgroup::
2023-09-28T19:41:12.6798153Z ##[endgroup]
2023-09-28T19:41:12.6803670Z ##[debug]Set output files_changed = true
2023-09-28T19:41:12.6804080Z ##[debug]Set output changed_files = new-file.txt
2023-09-28T19:41:12.6804755Z ##[debug]Finished: run
2023-09-28T19:41:12.6895249Z ##[debug]Evaluating: steps.verify-changed-files.outputs.files_changed
2023-09-28T19:41:12.6895755Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.6896070Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.6896386Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.6897096Z ##[debug]......Evaluating steps:
2023-09-28T19:41:12.6897418Z ##[debug]......=> Object
2023-09-28T19:41:12.6897745Z ##[debug]......Evaluating String:
2023-09-28T19:41:12.6898096Z ##[debug]......=> 'verify-changed-files'
2023-09-28T19:41:12.6898491Z ##[debug]....=> Object
2023-09-28T19:41:12.6898783Z ##[debug]....Evaluating String:
2023-09-28T19:41:12.6899088Z ##[debug]....=> 'outputs'
2023-09-28T19:41:12.6899374Z ##[debug]..=> Object
2023-09-28T19:41:12.6899669Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6899959Z ##[debug]..=> 'files_changed'
2023-09-28T19:41:12.6900257Z ##[debug]=> 'true'
2023-09-28T19:41:12.6900740Z ##[debug]Result: 'true'
2023-09-28T19:41:12.6901687Z ##[debug]Evaluating: steps.verify-changed-files.outputs.changed_files
2023-09-28T19:41:12.6902136Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.6902428Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.6902740Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.6903054Z ##[debug]......Evaluating steps:
2023-09-28T19:41:12.6903370Z ##[debug]......=> Object
2023-09-28T19:41:12.6903656Z ##[debug]......Evaluating String:
2023-09-28T19:41:12.6903995Z ##[debug]......=> 'verify-changed-files'
2023-09-28T19:41:12.6904322Z ##[debug]....=> Object
2023-09-28T19:41:12.6904625Z ##[debug]....Evaluating String:
2023-09-28T19:41:12.6904905Z ##[debug]....=> 'outputs'
2023-09-28T19:41:12.6905185Z ##[debug]..=> Object
2023-09-28T19:41:12.6905474Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6905775Z ##[debug]..=> 'changed_files'
2023-09-28T19:41:12.6906810Z ##[debug]=> 'new-file.txt'
2023-09-28T19:41:12.6907165Z ##[debug]Result: 'new-file.txt'
2023-09-28T19:41:12.6934614Z ##[debug]Finishing: Check changed files
2023-09-28T19:41:12.6940944Z ##[debug]Evaluating condition for step: 'Print changed files'
2023-09-28T19:41:12.6942264Z ##[debug]Evaluating: success()
2023-09-28T19:41:12.6942710Z ##[debug]Evaluating success:
2023-09-28T19:41:12.6943153Z ##[debug]=> true
2023-09-28T19:41:12.6943609Z ##[debug]Result: true
2023-09-28T19:41:12.6944238Z ##[debug]Starting: Print changed files
2023-09-28T19:41:12.6952829Z ##[debug]Loading inputs
2023-09-28T19:41:12.6963917Z ##[debug]Evaluating: format('for file in {0}; do
2023-09-28T19:41:12.6964286Z ##[debug]  echo "file: $file"
2023-09-28T19:41:12.6964578Z ##[debug]  echo "------"
2023-09-28T19:41:12.6964839Z ##[debug]done
2023-09-28T19:41:12.6965185Z ##[debug]', steps.changed-files.outputs.changed_files)
2023-09-28T19:41:12.6965590Z ##[debug]Evaluating format:
2023-09-28T19:41:12.6986536Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.6986932Z ##[debug]..=> 'for file in {0}; do
2023-09-28T19:41:12.6987226Z ##[debug]  echo "file: $file"
2023-09-28T19:41:12.6987588Z ##[debug]  echo "------"
2023-09-28T19:41:12.6987836Z ##[debug]done
2023-09-28T19:41:12.6988069Z ##[debug]'
2023-09-28T19:41:12.7019401Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.7019752Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.7020066Z ##[debug]......Evaluating Index:
2023-09-28T19:41:12.7020660Z ##[debug]........Evaluating steps:
2023-09-28T19:41:12.7021018Z ##[debug]........=> Object
2023-09-28T19:41:12.7021346Z ##[debug]........Evaluating String:
2023-09-28T19:41:12.7021665Z ##[debug]........=> 'changed-files'
2023-09-28T19:41:12.7022004Z ##[debug]......=> Object
2023-09-28T19:41:12.7022322Z ##[debug]......Evaluating String:
2023-09-28T19:41:12.7022627Z ##[debug]......=> 'outputs'
2023-09-28T19:41:12.7022902Z ##[debug]....=> Object
2023-09-28T19:41:12.7023206Z ##[debug]....Evaluating String:
2023-09-28T19:41:12.7023514Z ##[debug]....=> 'changed_files'
2023-09-28T19:41:12.7023830Z ##[debug]..=> 'new-file.txt'
2023-09-28T19:41:12.7025441Z ##[debug]=> 'for file in new-file.txt; do
2023-09-28T19:41:12.7025785Z ##[debug]  echo "file: $file"
2023-09-28T19:41:12.7026076Z ##[debug]  echo "------"
2023-09-28T19:41:12.7026336Z ##[debug]done
2023-09-28T19:41:12.7026556Z ##[debug]'
2023-09-28T19:41:12.7026935Z ##[debug]Result: 'for file in new-file.txt; do
2023-09-28T19:41:12.7027266Z ##[debug]  echo "file: $file"
2023-09-28T19:41:12.7027959Z ##[debug]  echo "------"
2023-09-28T19:41:12.7028214Z ##[debug]done
2023-09-28T19:41:12.7028448Z ##[debug]'
2023-09-28T19:41:12.7028874Z ##[debug]Loading env
2023-09-28T19:41:12.7033875Z ##[group]Run for file in new-file.txt; do
2023-09-28T19:41:12.7034221Z �[36;1mfor file in new-file.txt; do�[0m
2023-09-28T19:41:12.7034534Z �[36;1m  echo "file: $file"�[0m
2023-09-28T19:41:12.7034814Z �[36;1m  echo "------"�[0m
2023-09-28T19:41:12.7035056Z �[36;1mdone�[0m
2023-09-28T19:41:12.7099207Z shell: /usr/bin/bash -e {0}
2023-09-28T19:41:12.7099510Z ##[endgroup]
2023-09-28T19:41:12.7162812Z ##[debug]/usr/bin/bash -e /home/runner/work/_temp/cfce8a9f-4610-472a-9744-86de621352c3.sh
2023-09-28T19:41:12.7188273Z file: new-file.txt
2023-09-28T19:41:12.7194371Z ------
2023-09-28T19:41:12.7203804Z ##[debug]Finishing: Print changed files
2023-09-28T19:41:12.7214368Z ##[debug]Evaluating condition for step: 'Run git status'
2023-09-28T19:41:12.7216456Z ##[debug]Evaluating: success()
2023-09-28T19:41:12.7217227Z ##[debug]Evaluating success:
2023-09-28T19:41:12.7217969Z ##[debug]=> true
2023-09-28T19:41:12.7218736Z ##[debug]Result: true
2023-09-28T19:41:12.7221858Z ##[debug]Starting: Run git status
2023-09-28T19:41:12.7231056Z ##[debug]Loading inputs
2023-09-28T19:41:12.7231991Z ##[debug]Loading env
2023-09-28T19:41:12.7266933Z ##[group]Run git status
2023-09-28T19:41:12.7267224Z �[36;1mgit status�[0m
2023-09-28T19:41:12.7329780Z shell: /usr/bin/bash -e {0}
2023-09-28T19:41:12.7330090Z ##[endgroup]
2023-09-28T19:41:12.7392447Z ##[debug]/usr/bin/bash -e /home/runner/work/_temp/03868770-8f5e-48e3-a583-e0c4fe45cdbb.sh
2023-09-28T19:41:12.7460697Z On branch main
2023-09-28T19:41:12.7461349Z Your branch is up to date with 'origin/main'.
2023-09-28T19:41:12.7461673Z 
2023-09-28T19:41:12.7461812Z Changes not staged for commit:
2023-09-28T19:41:12.7462281Z   (use "git add/rm <file>..." to update what will be committed)
2023-09-28T19:41:12.7462734Z   (use "git restore <file>..." to discard changes in working directory)
2023-09-28T19:41:12.7463135Z 	deleted:    README.md
2023-09-28T19:41:12.7463315Z 
2023-09-28T19:41:12.7463425Z Untracked files:
2023-09-28T19:41:12.7463770Z   (use "git add <file>..." to include in what will be committed)
2023-09-28T19:41:12.7464154Z 	new-file.txt
2023-09-28T19:41:12.7464319Z 
2023-09-28T19:41:12.7464615Z no changes added to commit (use "git add" and/or "git commit -a")
2023-09-28T19:41:12.7474438Z ##[debug]Finishing: Run git status
2023-09-28T19:41:12.7480794Z ##[debug]Evaluating condition for step: 'Post Check changed files'
2023-09-28T19:41:12.7483989Z ##[debug]Evaluating: always()
2023-09-28T19:41:12.7484440Z ##[debug]Evaluating always:
2023-09-28T19:41:12.7485606Z ##[debug]=> true
2023-09-28T19:41:12.7486153Z ##[debug]Result: true
2023-09-28T19:41:12.7486889Z ##[debug]Starting: Post Check changed files
2023-09-28T19:41:12.7530356Z ##[debug]Loading inputs
2023-09-28T19:41:12.7534454Z ##[debug]Loading env
2023-09-28T19:41:12.7539993Z Post job cleanup.
2023-09-28T19:41:12.7542873Z ##[debug]Evaluating condition for step: 'run'
2023-09-28T19:41:12.7544025Z ##[debug]Evaluating: always()
2023-09-28T19:41:12.7544444Z ##[debug]Evaluating always:
2023-09-28T19:41:12.7544832Z ##[debug]=> true
2023-09-28T19:41:12.7545372Z ##[debug]Result: true
2023-09-28T19:41:12.7545908Z ##[debug]Starting: run
2023-09-28T19:41:12.7584610Z ##[debug]Loading inputs
2023-09-28T19:41:12.7585777Z ##[debug]Evaluating: inputs.files
2023-09-28T19:41:12.7586173Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.7586703Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.7587029Z ##[debug]..=> Object
2023-09-28T19:41:12.7587336Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.7587639Z ##[debug]..=> 'files'
2023-09-28T19:41:12.7587962Z ##[debug]=> ''
2023-09-28T19:41:12.7588238Z ##[debug]Result: ''
2023-09-28T19:41:12.7588796Z ##[debug]Evaluating: inputs.files-separator
2023-09-28T19:41:12.7589130Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.7589433Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.7589731Z ##[debug]..=> Object
2023-09-28T19:41:12.7590253Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.7590573Z ##[debug]..=> 'files-separator'
2023-09-28T19:41:12.7590906Z ##[debug]=> '
2023-09-28T19:41:12.7591142Z ##[debug]'
2023-09-28T19:41:12.7591389Z ##[debug]Result: '
2023-09-28T19:41:12.7591632Z ##[debug]'
2023-09-28T19:41:12.7592182Z ##[debug]Evaluating: inputs.match-gitignore-files
2023-09-28T19:41:12.7592532Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.7592846Z ##[debug]..Evaluating inputs:
2023-09-28T19:41:12.7593162Z ##[debug]..=> Object
2023-09-28T19:41:12.7593453Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.7593776Z ##[debug]..=> 'match-gitignore-files'
2023-09-28T19:41:12.7594109Z ##[debug]=> 'false'
2023-09-28T19:41:12.7594386Z ##[debug]Result: 'false'
2023-09-28T19:41:12.7600402Z ##[debug]Evaluating: github.event.pull_request.base.ref
2023-09-28T19:41:12.7600786Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.7601115Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.7601428Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.7601752Z ##[debug]......Evaluating Index:
2023-09-28T19:41:12.7602067Z ##[debug]........Evaluating github:
2023-09-28T19:41:12.7602368Z ##[debug]........=> Object
2023-09-28T19:41:12.7602679Z ##[debug]........Evaluating String:
2023-09-28T19:41:12.7602983Z ##[debug]........=> 'event'
2023-09-28T19:41:12.7603313Z ##[debug]......=> Object
2023-09-28T19:41:12.7604001Z ##[debug]......Evaluating String:
2023-09-28T19:41:12.7604369Z ##[debug]......=> 'pull_request'
2023-09-28T19:41:12.7604683Z ##[debug]....=> null
2023-09-28T19:41:12.7604959Z ##[debug]..=> null
2023-09-28T19:41:12.7605214Z ##[debug]=> null
2023-09-28T19:41:12.7605490Z ##[debug]Result: null
2023-09-28T19:41:12.7606797Z ##[debug]Evaluating: github.event.pull_request.head.repo.fork
2023-09-28T19:41:12.7607194Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.7607500Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.7607806Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.7608100Z ##[debug]......Evaluating Index:
2023-09-28T19:41:12.7608423Z ##[debug]........Evaluating Index:
2023-09-28T19:41:12.7608738Z ##[debug]..........Evaluating github:
2023-09-28T19:41:12.7609036Z ##[debug]..........=> Object
2023-09-28T19:41:12.7609341Z ##[debug]..........Evaluating String:
2023-09-28T19:41:12.7609643Z ##[debug]..........=> 'event'
2023-09-28T19:41:12.7609938Z ##[debug]........=> Object
2023-09-28T19:41:12.7610224Z ##[debug]........Evaluating String:
2023-09-28T19:41:12.7610775Z ##[debug]........=> 'pull_request'
2023-09-28T19:41:12.7611082Z ##[debug]......=> null
2023-09-28T19:41:12.7611354Z ##[debug]....=> null
2023-09-28T19:41:12.7611609Z ##[debug]..=> null
2023-09-28T19:41:12.7611870Z ##[debug]=> null
2023-09-28T19:41:12.7612140Z ##[debug]Result: null
2023-09-28T19:41:12.7613994Z ##[debug]Evaluating: github.sha
2023-09-28T19:41:12.7614321Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.7614616Z ##[debug]..Evaluating github:
2023-09-28T19:41:12.7614919Z ##[debug]..=> Object
2023-09-28T19:41:12.7615213Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.7615516Z ##[debug]..=> 'sha'
2023-09-28T19:41:12.7615860Z ##[debug]=> '1cc64205ac585ae0c2666f57e5253369d81df9a5'
2023-09-28T19:41:12.7616294Z ##[debug]Result: '1cc64205ac585ae0c2666f57e5253369d81df9a5'
2023-09-28T19:41:12.7618592Z ##[debug]Loading env
2023-09-28T19:41:12.7624704Z Post job cleanup.
2023-09-28T19:41:12.8362587Z deleted paths-output-file: /tmp/21c0b949-288c-4b65-b4e1-9e6141824739.txt
2023-09-28T19:41:12.8447125Z ##[debug]Node Action run completed with exit code 0
2023-09-28T19:41:12.8449541Z ##[debug]Finished: run
2023-09-28T19:41:12.8452963Z ##[debug]Evaluating: steps.verify-changed-files.outputs.files_changed
2023-09-28T19:41:12.8453448Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.8453773Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.8454067Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.8454385Z ##[debug]......Evaluating steps:
2023-09-28T19:41:12.8454716Z ##[debug]......=> Object
2023-09-28T19:41:12.8455023Z ##[debug]......Evaluating String:
2023-09-28T19:41:12.8455620Z ##[debug]......=> 'verify-changed-files'
2023-09-28T19:41:12.8455974Z ##[debug]....=> null
2023-09-28T19:41:12.8456253Z ##[debug]..=> null
2023-09-28T19:41:12.8456506Z ##[debug]=> null
2023-09-28T19:41:12.8456789Z ##[debug]Result: null
2023-09-28T19:41:12.8457622Z ##[debug]Evaluating: steps.verify-changed-files.outputs.changed_files
2023-09-28T19:41:12.8458065Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.8458372Z ##[debug]..Evaluating Index:
2023-09-28T19:41:12.8458679Z ##[debug]....Evaluating Index:
2023-09-28T19:41:12.8458990Z ##[debug]......Evaluating steps:
2023-09-28T19:41:12.8459314Z ##[debug]......=> Object
2023-09-28T19:41:12.8459618Z ##[debug]......Evaluating String:
2023-09-28T19:41:12.8459945Z ##[debug]......=> 'verify-changed-files'
2023-09-28T19:41:12.8460272Z ##[debug]....=> null
2023-09-28T19:41:12.8460827Z ##[debug]..=> null
2023-09-28T19:41:12.8461096Z ##[debug]=> null
2023-09-28T19:41:12.8461367Z ##[debug]Result: null
2023-09-28T19:41:12.8463665Z ##[debug]Finishing: Post Check changed files
2023-09-28T19:41:12.8469064Z ##[debug]Evaluating condition for step: 'Post Run actions/checkout@v3'
2023-09-28T19:41:12.8470266Z ##[debug]Evaluating: always()
2023-09-28T19:41:12.8470703Z ##[debug]Evaluating always:
2023-09-28T19:41:12.8471074Z ##[debug]=> true
2023-09-28T19:41:12.8471522Z ##[debug]Result: true
2023-09-28T19:41:12.8472159Z ##[debug]Starting: Post Run actions/checkout@v3
2023-09-28T19:41:12.8501593Z ##[debug]Loading inputs
2023-09-28T19:41:12.8502954Z ##[debug]Evaluating: github.repository
2023-09-28T19:41:12.8503313Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.8503612Z ##[debug]..Evaluating github:
2023-09-28T19:41:12.8503928Z ##[debug]..=> Object
2023-09-28T19:41:12.8504229Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.8504528Z ##[debug]..=> 'repository'
2023-09-28T19:41:12.8504926Z ##[debug]=> 'shinebayar-g/github-actions-test'
2023-09-28T19:41:12.8505343Z ##[debug]Result: 'shinebayar-g/github-actions-test'
2023-09-28T19:41:12.8506996Z ##[debug]Evaluating: github.token
2023-09-28T19:41:12.8507378Z ##[debug]Evaluating Index:
2023-09-28T19:41:12.8507673Z ##[debug]..Evaluating github:
2023-09-28T19:41:12.8507973Z ##[debug]..=> Object
2023-09-28T19:41:12.8509255Z ##[debug]..Evaluating String:
2023-09-28T19:41:12.8509559Z ##[debug]..=> 'token'
2023-09-28T19:41:12.8510593Z ##[debug]=> '***'
2023-09-28T19:41:12.8511059Z ##[debug]Result: '***'
2023-09-28T19:41:12.8518155Z ##[debug]Loading env
2023-09-28T19:41:12.8522999Z Post job cleanup.
2023-09-28T19:41:12.9884398Z ##[debug]Getting git version
2023-09-28T19:41:12.9902654Z [command]/usr/bin/git version
2023-09-28T19:41:12.9971696Z git version 2.42.0
2023-09-28T19:41:12.9999123Z ##[debug]0
2023-09-28T19:41:13.0000023Z ##[debug]git version 2.42.0
2023-09-28T19:41:13.0000281Z ##[debug]
2023-09-28T19:41:13.0002550Z ##[debug]Set git useragent to: git/2.42.0 (github-actions-checkout)
2023-09-28T19:41:13.0007207Z ::add-mask::***
2023-09-28T19:41:13.0027225Z Temporarily overriding HOME='/home/runner/work/_temp/ecc05f1a-15af-49cd-b78f-75d84592f116' before making global git config changes
2023-09-28T19:41:13.0028938Z Adding repository directory to the temporary git global config as a safe directory
2023-09-28T19:41:13.0036156Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/github-actions-test/github-actions-test
2023-09-28T19:41:13.0107415Z ##[debug]0
2023-09-28T19:41:13.0108111Z ##[debug]
2023-09-28T19:41:13.0109419Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2023-09-28T19:41:13.0162662Z ##[debug]1
2023-09-28T19:41:13.0163166Z ##[debug]
2023-09-28T19:41:13.0164093Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2023-09-28T19:41:13.0503710Z ##[debug]0
2023-09-28T19:41:13.0521027Z ##[debug]
2023-09-28T19:41:13.0522322Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2023-09-28T19:41:13.0553435Z http.https://github.com/.extraheader
2023-09-28T19:41:13.0577077Z ##[debug]0
2023-09-28T19:41:13.0578133Z ##[debug]http.https://github.com/.extraheader
2023-09-28T19:41:13.0578464Z ##[debug]
2023-09-28T19:41:13.0586975Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2023-09-28T19:41:13.0633070Z ##[debug]0
2023-09-28T19:41:13.0649611Z ##[debug]
2023-09-28T19:41:13.0651042Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2023-09-28T19:41:13.0947849Z ##[debug]0
2023-09-28T19:41:13.0948786Z ##[debug]
2023-09-28T19:41:13.0949568Z ##[debug]Unsetting HOME override
2023-09-28T19:41:13.1045085Z ##[debug]Node Action run completed with exit code 0
2023-09-28T19:41:13.1048472Z ##[debug]Finishing: Post Run actions/checkout@v3
2023-09-28T19:41:13.1261506Z ##[debug]Starting: Complete job
2023-09-28T19:41:13.1264026Z Uploading runner diagnostic logs
2023-09-28T19:41:13.1334605Z ##[debug]Starting diagnostic file upload.
2023-09-28T19:41:13.1335008Z ##[debug]Setting up diagnostic log folders.
2023-09-28T19:41:13.1337492Z ##[debug]Creating diagnostic log files folder.
2023-09-28T19:41:13.1361576Z ##[debug]Copying 2 worker diagnostic logs.
2023-09-28T19:41:13.1389297Z ##[debug]Copying 1 runner diagnostic logs.
2023-09-28T19:41:13.1390926Z ##[debug]Zipping diagnostic files.
2023-09-28T19:41:13.1477914Z ##[debug]Uploading diagnostic metadata file.
2023-09-28T19:41:13.1503779Z ##[debug]Diagnostic file upload complete.
2023-09-28T19:41:13.1504566Z Completed runner diagnostic log upload
2023-09-28T19:41:13.1504912Z Cleaning up orphan processes
2023-09-28T19:41:13.1882114Z ##[debug]Finishing: Complete job
2023-09-28T19:41:13.2050363Z ##[debug]Finishing: build

Has all relevant logs been included?

  • I've included all relevant logs

Anything else?

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct
@shinebayar-g shinebayar-g added the bug Something isn't working label Sep 28, 2023
@github-actions
Copy link
Contributor

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

@jackton1
Copy link
Member

jackton1 commented Oct 1, 2023

Hi @shinebayar-g the fix for this should be available in the latest release

@shinebayar-g
Copy link
Author

Thanks for the fix @jackton1

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
2 participants