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] Problems using since_last_remote_commit in new PR #2153

Closed
4 tasks done
wade-dallon opened this issue Jun 20, 2024 · 5 comments · Fixed by #2163
Closed
4 tasks done

[BUG] Problems using since_last_remote_commit in new PR #2153

wade-dallon opened this issue Jun 20, 2024 · 5 comments · Fixed by #2163
Labels
bug Something isn't working

Comments

@wade-dallon
Copy link

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?

using since_last_remote_commit causes an error when opening a new PR.

To Reproduce

  1. Create a branch with a workflow including:
on:
  pull_request:
    branches: [master]

jobs:
  changed-files:
    runs-on: ubuntu-latest
    outputs:
      files: ${{ steps.changed-files.outputs.all_modified_files }}
    steps:
      - uses: actions/checkout@v4
      - name: Changed Files
        uses: tj-actions/[email protected]
        id: changed-files
        with:
          since_last_remote_commit: true
      - run: echo ${{ steps.changed-files.outputs.all_modified_files }}
  1. Make changes
  2. Push changes
  3. Create PR
  4. Get error - "Unable to locate the previous commit in the local history. Please ensure to checkout pull request HEAD commit instead of the merge commit."

What OS are you seeing the problem on?

ubuntu-latest or ubuntu-22.04

Expected behavior?

Maybe I misunderstand, but it seems that if you want to see the changes since the last remote commit and there is no last commit, then it should just return all the files that changed in the current commit.

Relevant log output

Run tj-actions/[email protected]
  with:
    sha: 6cf84ec3c46b632521fa95af90eea42d2143cd8e
    since_last_remote_commit: true
    separator:  
    include_all_old_new_renamed_files: false
    old_new_separator: ,
    old_new_files_separator:  
    files_from_source_file_separator: 
  
    files_separator: 
  
    files_yaml_from_source_file_separator: 
  
    files_ignore_yaml_from_source_file_separator: 
  
    files_ignore_separator: 
  
    files_ignore_from_source_file_separator: 
  
    path: .
    quotepath: true
    diff_relative: true
    dir_names: false
    dir_names_exclude_current_dir: false
    dir_names_include_files_separator: 
  
    dir_names_deleted_files_include_only_deleted_dirs: false
    json: false
    escape_json: true
    safe_output: true
    fetch_depth: 25
    skip_initial_fetch: false
    fetch_additional_submodule_history: false
    write_output_files: false
    output_dir: .github/outputs
    output_renamed_files_as_deleted_and_added: false
    recover_deleted_files: false
    recover_files_separator: 
  
    recover_files_ignore_separator: 
  
    token: ***
    api_url: https://api.github.com
    use_rest_api: false
    fail_on_initial_diff_error: false
    fail_on_submodule_diff_error: false
    negation_patterns_first: false
    matrix: false
    exclude_submodules: false
    fetch_missing_history_max_retries: 20
    use_posix_path_separator: false
    tags_pattern: *

... stuff ...

##[debug]Inputs: {
  ##[debug]  "files": "",
  ##[debug]  "filesSeparator": "\n",
  ##[debug]  "filesFromSourceFile": "",
  ##[debug]  "filesFromSourceFileSeparator": "\n",
  ##[debug]  "filesYaml": "",
  ##[debug]  "filesYamlFromSourceFile": "",
  ##[debug]  "filesYamlFromSourceFileSeparator": "\n",
  ##[debug]  "filesIgnore": "",
  ##[debug]  "filesIgnoreSeparator": "\n",
  ##[debug]  "filesIgnoreFromSourceFile": "",
  ##[debug]  "filesIgnoreFromSourceFileSeparator": "\n",
  ##[debug]  "filesIgnoreYaml": "",
  ##[debug]  "filesIgnoreYamlFromSourceFile": "",
  ##[debug]  "filesIgnoreYamlFromSourceFileSeparator": "\n",
  ##[debug]  "failOnInitialDiffError": false,
  ##[debug]  "failOnSubmoduleDiffError": false,
  ##[debug]  "separator": " ",
  ##[debug]  "sha": "6cf84ec3c46b632521fa95af90eea42d2143cd8e",
  ##[debug]  "baseSha": "",
  ##[debug]  "since": "",
  ##[debug]  "until": "",
  ##[debug]  "path": ".",
  ##[debug]  "quotepath": true,
  ##[debug]  "diffRelative": true,
  ##[debug]  "sinceLastRemoteCommit": true,
  ##[debug]  "recoverDeletedFiles": false,
  ##[debug]  "recoverDeletedFilesToDestination": "",
  ##[debug]  "recoverFiles": "",
  ##[debug]  "recoverFilesSeparator": "\n",
  ##[debug]  "recoverFilesIgnore": "",
  ##[debug]  "recoverFilesIgnoreSeparator": "\n",
  ##[debug]  "includeAllOldNewRenamedFiles": false,
  ##[debug]  "oldNewSeparator": ",",
  ##[debug]  "oldNewFilesSeparator": " ",
  ##[debug]  "skipInitialFetch": false,
  ##[debug]  "fetchAdditionalSubmoduleHistory": false,
  ##[debug]  "dirNamesDeletedFilesIncludeOnlyDeletedDirs": false,
  ##[debug]  "excludeSubmodules": false,
  ##[debug]  "usePosixPathSeparator": false,
  ##[debug]  "tagsPattern": "*",
  ##[debug]  "tagsIgnorePattern": "",
  ##[debug]  "dirNames": false,
  ##[debug]  "dirNamesExcludeCurrentDir": false,
  ##[debug]  "dirNamesIncludeFiles": "",
  ##[debug]  "dirNamesIncludeFilesSeparator": "\n",
  ##[debug]  "json": false,
  ##[debug]  "escapeJson": true,
  ##[debug]  "safeOutput": true,
  ##[debug]  "writeOutputFiles": false,
  ##[debug]  "outputDir": ".github/outputs",
  ##[debug]  "outputRenamedFilesAsDeletedAndAdded": false,
  ##[debug]  "token": "***",
  ##[debug]  "apiUrl": "https://api.github.com",
  ##[debug]  "negationPatternsFirst": false,
  ##[debug]  "useRestApi": false,
  ##[debug]  "fetchDepth": 25,
  ##[debug]  "fetchMissingHistoryMaxRetries": 20

... stuff ...

/usr/bin/git rev-parse --is-inside-work-tree
  true
  ##[debug]Has git directory: true
  ##[debug]Input file patterns: 
  ##[debug]
  ##[debug]File patterns: 
  ##[debug]Yaml file patterns: {}
  Using local .git directory
  /usr/bin/git --version
  git version 2.45.2
  /usr/bin/git config --global core.quotepath on
  /usr/bin/git config --global diff.relative true
  /usr/bin/git rev-parse --is-shallow-repository
  true
  /usr/bin/git submodule status
  Running on a pull_request (opened) event...
  Repository is shallow, fetching more history...
  /usr/bin/git fetch -q --no-tags --prune -u --progress origin pull/576/head:wtracy/test2
  Completed fetching more history.
  /usr/bin/git rev-parse --verify 6cf84ec3c46b632521fa95af90eea42d2143cd8e^{commit}
  6cf84ec3c46b632521fa95af90eea42d2143cd8e
  ##[debug]Getting current SHA...
  /usr/bin/git rev-parse --verify 6cf84ec3c46b632521fa95af90eea42d2143cd8e^{commit}
  6cf84ec3c46b632521fa95af90eea42d2143cd8e
  ##[debug]Current SHA: 6cf84ec3c46b632521fa95af90eea42d2143cd8e
  Unable to locate the previous commit in the local history for pull_request (opened) event. Falling back to the previous commit in the local history.
  /usr/bin/git rev-list -n 1 HEAD^
  fatal: ambiguous argument 'HEAD^': unknown revision or path not in the working tree.
  Use '--' to separate paths from revisions, like this:
  'git <command> [<revision>...] -- [<file>...]'
  Error: Unable to locate the previous commit in the local history. Please ensure to checkout pull request HEAD commit instead of the merge commit. See: https://github.com/actions/checkout/blob/main/README.md#checkout-pull-request-head-commit-instead-of-merge-commit

Has all relevant logs been included?

  • I've included all relevant logs

Anything else?

I'm just trying to make it so that if a commit occurs on CHANGELOG.md only, that the testing actions are not triggered. This works great if I add it to a PR that has already had commits, but the first commit of a PR always fails--kind of a chicken before the egg kind of thing.

Code of Conduct

  • I agree to follow this project's Code of Conduct
@wade-dallon wade-dallon added the bug Something isn't working label Jun 20, 2024
@tj-actions-bot
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.

@wade-dallon wade-dallon changed the title [BUG] <title> [BUG] Problems using since_last_remote_commit in new PR Jun 20, 2024
@jackton1
Copy link
Member

Hi @wade-dallon can you include the full log with sections to you noted as … stuff …

@wade-dallon
Copy link
Author

okay, here it is with names changed to protect the innocent:

##[debug]Evaluating condition for step: 'Changed Files'
##[debug]Evaluating: success()
##[debug]Evaluating success:
##[debug]=> true
##[debug]Result: true
##[debug]Starting: Changed Files
##[debug]Loading inputs
##[debug]Evaluating: github.event.pull_request.head.sha
##[debug]Evaluating Index:
##[debug]..Evaluating Index:
##[debug]....Evaluating Index:
##[debug]......Evaluating Index:
##[debug]........Evaluating github:
##[debug]........=> Object
##[debug]........Evaluating String:
##[debug]........=> 'event'
##[debug]......=> Object
##[debug]......Evaluating String:
##[debug]......=> 'pull_request'
##[debug]....=> Object
##[debug]....Evaluating String:
##[debug]....=> 'head'
##[debug]..=> Object
##[debug]..Evaluating String:
##[debug]..=> 'sha'
##[debug]=> '6cf84ec3c46b632521fa95af90eea42d2143cd8e'
##[debug]Result: '6cf84ec3c46b632521fa95af90eea42d2143cd8e'
##[debug]Evaluating: github.token
##[debug]Evaluating Index:
##[debug]..Evaluating github:
##[debug]..=> Object
##[debug]..Evaluating String:
##[debug]..=> 'token'
##[debug]=> '***'
##[debug]Result: '***'
##[debug]Evaluating: github.api_url
##[debug]Evaluating Index:
##[debug]..Evaluating github:
##[debug]..=> Object
##[debug]..Evaluating String:
##[debug]..=> 'api_url'
##[debug]=> 'https://api.github.com'
##[debug]Result: 'https://api.github.com'
##[debug]Loading env
Run tj-actions/[email protected]
  with:
    sha: 6cf84ec3c46b632521fa95af90eea42d2143cd8e
    since_last_remote_commit: true
    separator:  
    include_all_old_new_renamed_files: false
    old_new_separator: ,
    old_new_files_separator:  
    files_from_source_file_separator: 
  
    files_separator: 
  
    files_yaml_from_source_file_separator: 
  
    files_ignore_yaml_from_source_file_separator: 
  
    files_ignore_separator: 
  
    files_ignore_from_source_file_separator: 
  
    path: .
    quotepath: true
    diff_relative: true
    dir_names: false
    dir_names_exclude_current_dir: false
    dir_names_include_files_separator: 
  
    dir_names_deleted_files_include_only_deleted_dirs: false
    json: false
    escape_json: true
    safe_output: true
    fetch_depth: 25
    skip_initial_fetch: false
    fetch_additional_submodule_history: false
    write_output_files: false
    output_dir: .github/outputs
    output_renamed_files_as_deleted_and_added: false
    recover_deleted_files: false
    recover_files_separator: 
  
    recover_files_ignore_separator: 
  
    token: ***
    api_url: https://api.github.com
    use_rest_api: false
    fail_on_initial_diff_error: false
    fail_on_submodule_diff_error: false
    negation_patterns_first: false
    matrix: false
    exclude_submodules: false
    fetch_missing_history_max_retries: 20
    use_posix_path_separator: false
    tags_pattern: *
::group::changed-files
changed-files
  ##[debug]Env: {
  ##[debug]  "XDG_RUNTIME_DIR": "/run/user/1001",
  ##[debug]  "SWIFT_PATH": "/usr/share/swift/usr/bin",
  ##[debug]  "DOTNET_SKIP_FIRST_TIME_EXPERIENCE": "1",
  ##[debug]  "JAVA_HOME_8_X64": "/usr/lib/jvm/temurin-8-jdk-amd64",
  ##[debug]  "ANDROID_NDK_ROOT": "/usr/local/lib/android/sdk/ndk/25.2.9519653",
  ##[debug]  "AZURE_EXTENSION_DIR": "/opt/az/azcliextensions",
  ##[debug]  "RUNNER_PERFLOG": "/home/runner/perflog",
  ##[debug]  "EDGEWEBDRIVER": "/usr/local/share/edge_driver",
  ##[debug]  "CI": "true",
  ##[debug]  "JAVA_HOME_21_X64": "/usr/lib/jvm/temurin-21-jdk-amd64",
  ##[debug]  "STATS_D_D": "false",
  ##[debug]  "AGENT_TOOLSDIRECTORY": "/opt/hostedtoolcache",
  ##[debug]  "STATS_VMD": "true",
  ##[debug]  "PATH": "/snap/bin:/home/runner/.local/bin:/opt/pipx_bin:/home/runner/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin",
  ##[debug]  "POWERSHELL_DISTRIBUTION_CHANNEL": "GitHub-Actions-ubuntu22",
  ##[debug]  "ANDROID_NDK_LATEST_HOME": "/usr/local/lib/android/sdk/ndk/26.3.11579264",
  ##[debug]  "STATS_TRP": "true",
  ##[debug]  "HOMEBREW_NO_AUTO_UPDATE": "1",
  ##[debug]  "JAVA_HOME_11_X64": "/usr/lib/jvm/temurin-11-jdk-amd64",
  ##[debug]  "STATS_EXTP": "https://provjobdsettingscdn.blob.core.windows.net/settings/provjobdsettings-0.5.181+6/provjobd.data",
  ##[debug]  "DOTNET_MULTILEVEL_LOOKUP": "0",
  ##[debug]  "HOME": "/home/runner",
  ##[debug]  "INVOCATION_ID": "5891f1ee5a9c4040953bbfadd28a1b78",
  ##[debug]  "USER": "runner",
  ##[debug]  "PIPX_HOME": "/opt/pipx",
  ##[debug]  "PIPX_BIN_DIR": "/opt/pipx_bin",
  ##[debug]  "DEPLOYMENT_BASEPATH": "/opt/runner",
  ##[debug]  "ACCEPT_EULA": "Y",
  ##[debug]  "ANDROID_HOME": "/usr/local/lib/android/sdk",
  ##[debug]  "LEIN_JAR": "/usr/local/lib/lein/self-installs/leiningen-2.11.2-standalone.jar",
  ##[debug]  "GITHUB_ACTIONS": "true",
  ##[debug]  "ANDROID_SDK_ROOT": "/usr/local/lib/android/sdk",
  ##[debug]  "RUNNER_USER": "runner",
  ##[debug]  "CHROME_BIN": "/usr/bin/google-chrome",
  ##[debug]  "STATS_TIS": "mining",
  ##[debug]  "GHCUP_INSTALL_BASE_PREFIX": "/usr/local",
  ##[debug]  "GRADLE_HOME": "/usr/share/gradle-8.8",
  ##[debug]  "STATS_UE": "true",
  ##[debug]  "BOOTSTRAP_HASKELL_NONINTERACTIVE": "1",
  ##[debug]  "NVM_DIR": "/home/runner/.nvm",
  ##[debug]  "STATS_V3PS": "true",
  ##[debug]  "DOTNET_NOLOGO": "1",
  ##[debug]  "HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS": "3650",
  ##[debug]  "JAVA_HOME": "/usr/lib/jvm/temurin-11-jdk-amd64",
  ##[debug]  "GOROOT_1_21_X64": "/opt/hostedtoolcache/go/1.21.11/x64",
  ##[debug]  "GECKOWEBDRIVER": "/usr/local/share/gecko_driver",
  ##[debug]  "STATS_EXT": "true",
  ##[debug]  "SELENIUM_JAR_PATH": "/usr/share/java/selenium-server.jar",
  ##[debug]  "CHROMEWEBDRIVER": "/usr/local/share/chromedriver-linux64",
  ##[debug]  "ANDROID_NDK": "/usr/local/lib/android/sdk/ndk/25.2.9519653",
  ##[debug]  "JOURNAL_STREAM": "8:16113",
  ##[debug]  "STATS_D": "false",
  ##[debug]  "XDG_CONFIG_HOME": "/home/runner/.config",
  ##[debug]  "DEBIAN_FRONTEND": "noninteractive",
  ##[debug]  "SGX_AESM_ADDR": "1",
  ##[debug]  "ANDROID_NDK_HOME": "/usr/local/lib/android/sdk/ndk/25.2.9519653",
  ##[debug]  "GOROOT_1_22_X64": "/opt/hostedtoolcache/go/1.22.4/x64",
  ##[debug]  "JAVA_HOME_17_X64": "/usr/lib/jvm/temurin-17-jdk-amd64",
  ##[debug]  "ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE": "/opt/actionarchivecache",
  ##[debug]  "LEIN_HOME": "/usr/local/lib/lein",
  ##[debug]  "RUNNER_TOOL_CACHE": "/opt/hostedtoolcache",
  ##[debug]  "ImageVersion": "20240616.1.0",
  ##[debug]  "RUNNER_TRACKING_ID": "github_ee986f2b-d0ed-4e65-bf92-dc66a12b80ce",
  ##[debug]  "LANG": "C.UTF-8",
  ##[debug]  "SYSTEMD_EXEC_PID": "475",
  ##[debug]  "STATS_VMFE": "true",
  ##[debug]  "ANT_HOME": "/usr/share/ant",
  ##[debug]  "PERFLOG_LOCATION_SETTING": "RUNNER_PERFLOG",
  ##[debug]  "VCPKG_INSTALLATION_ROOT": "/usr/local/share/vcpkg",
  ##[debug]  "CONDA": "/usr/share/miniconda",
  ##[debug]  "GOROOT_1_20_X64": "/opt/hostedtoolcache/go/1.20.14/x64",
  ##[debug]  "STATS_RDCL": "true",
  ##[debug]  "ImageOS": "ubuntu22",
  ##[debug]  "INPUT_SHA": "6cf84ec3c46b632521fa95af90eea42d2143cd8e",
  ##[debug]  "INPUT_SINCE_LAST_REMOTE_COMMIT": "true",
  ##[debug]  "INPUT_SEPARATOR": " ",
  ##[debug]  "INPUT_INCLUDE_ALL_OLD_NEW_RENAMED_FILES": "false",
  ##[debug]  "INPUT_OLD_NEW_SEPARATOR": ",",
  ##[debug]  "INPUT_OLD_NEW_FILES_SEPARATOR": " ",
  ##[debug]  "INPUT_FILES_FROM_SOURCE_FILE": "",
  ##[debug]  "INPUT_FILES_FROM_SOURCE_FILE_SEPARATOR": "\n",
  ##[debug]  "INPUT_FILES": "",
  ##[debug]  "INPUT_FILES_SEPARATOR": "\n",
  ##[debug]  "INPUT_FILES_YAML": "",
  ##[debug]  "INPUT_FILES_YAML_FROM_SOURCE_FILE": "",
  ##[debug]  "INPUT_FILES_YAML_FROM_SOURCE_FILE_SEPARATOR": "\n",
  ##[debug]  "INPUT_FILES_IGNORE_YAML": "",
  ##[debug]  "INPUT_FILES_IGNORE_YAML_FROM_SOURCE_FILE": "",
  ##[debug]  "INPUT_FILES_IGNORE_YAML_FROM_SOURCE_FILE_SEPARATOR": "\n",
  ##[debug]  "INPUT_FILES_IGNORE": "",
  ##[debug]  "INPUT_FILES_IGNORE_SEPARATOR": "\n",
  ##[debug]  "INPUT_FILES_IGNORE_FROM_SOURCE_FILE": "",
  ##[debug]  "INPUT_FILES_IGNORE_FROM_SOURCE_FILE_SEPARATOR": "\n",
  ##[debug]  "INPUT_BASE_SHA": "",
  ##[debug]  "INPUT_SINCE": "",
  ##[debug]  "INPUT_UNTIL": "",
  ##[debug]  "INPUT_PATH": ".",
  ##[debug]  "INPUT_QUOTEPATH": "true",
  ##[debug]  "INPUT_DIFF_RELATIVE": "true",
  ##[debug]  "INPUT_DIR_NAMES": "false",
  ##[debug]  "INPUT_DIR_NAMES_MAX_DEPTH": "",
  ##[debug]  "INPUT_DIR_NAMES_EXCLUDE_CURRENT_DIR": "false",
  ##[debug]  "INPUT_DIR_NAMES_INCLUDE_FILES": "",
  ##[debug]  "INPUT_DIR_NAMES_INCLUDE_FILES_SEPARATOR": "\n",
  ##[debug]  "INPUT_DIR_NAMES_DELETED_FILES_INCLUDE_ONLY_DELETED_DIRS": "false",
  ##[debug]  "INPUT_JSON": "false",
  ##[debug]  "INPUT_ESCAPE_JSON": "true",
  ##[debug]  "INPUT_SAFE_OUTPUT": "true",
  ##[debug]  "INPUT_FETCH_DEPTH": "25",
  ##[debug]  "INPUT_SKIP_INITIAL_FETCH": "false",
  ##[debug]  "INPUT_FETCH_ADDITIONAL_SUBMODULE_HISTORY": "false",
  ##[debug]  "INPUT_WRITE_OUTPUT_FILES": "false",
  ##[debug]  "INPUT_OUTPUT_DIR": ".github/outputs",
  ##[debug]  "INPUT_OUTPUT_RENAMED_FILES_AS_DELETED_AND_ADDED": "false",
  ##[debug]  "INPUT_RECOVER_DELETED_FILES": "false",
  ##[debug]  "INPUT_RECOVER_DELETED_FILES_TO_DESTINATION": "",
  ##[debug]  "INPUT_RECOVER_FILES": "",
  ##[debug]  "INPUT_RECOVER_FILES_SEPARATOR": "\n",
  ##[debug]  "INPUT_RECOVER_FILES_IGNORE": "",
  ##[debug]  "INPUT_RECOVER_FILES_IGNORE_SEPARATOR": "\n",
  ##[debug]  "INPUT_TOKEN": "***",
  ##[debug]  "INPUT_API_URL": "https://api.github.com",
  ##[debug]  "INPUT_USE_REST_API": "false",
  ##[debug]  "INPUT_FAIL_ON_INITIAL_DIFF_ERROR": "false",
  ##[debug]  "INPUT_FAIL_ON_SUBMODULE_DIFF_ERROR": "false",
  ##[debug]  "INPUT_NEGATION_PATTERNS_FIRST": "false",
  ##[debug]  "INPUT_MATRIX": "false",
  ##[debug]  "INPUT_EXCLUDE_SUBMODULES": "false",
  ##[debug]  "INPUT_FETCH_MISSING_HISTORY_MAX_RETRIES": "20",
  ##[debug]  "INPUT_USE_POSIX_PATH_SEPARATOR": "false",
  ##[debug]  "INPUT_TAGS_PATTERN": "*",
  ##[debug]  "INPUT_TAGS_IGNORE_PATTERN": "",
  ##[debug]  "GITHUB_JOB": "changed-files",
  ##[debug]  "GITHUB_REF": "refs/pull/576/merge",
  ##[debug]  "GITHUB_SHA": "701c001210c02d3622bf12ff9812d2cedf268145",
  ##[debug]  "GITHUB_REPOSITORY": "jiggly-puff/jiggly-puff-app",
  ##[debug]  "GITHUB_REPOSITORY_OWNER": "jiggly-puff",
  ##[debug]  "GITHUB_REPOSITORY_OWNER_ID": "68706371",
  ##[debug]  "GITHUB_RUN_ID": "9589369541",
  ##[debug]  "GITHUB_RUN_NUMBER": "1051",
  ##[debug]  "GITHUB_RETENTION_DAYS": "90",
  ##[debug]  "GITHUB_RUN_ATTEMPT": "2",
  ##[debug]  "GITHUB_REPOSITORY_ID": "283298705",
  ##[debug]  "GITHUB_ACTOR_ID": "131477724",
  ##[debug]  "GITHUB_ACTOR": "wade-dallon",
  ##[debug]  "GITHUB_TRIGGERING_ACTOR": "wade-dallon",
  ##[debug]  "GITHUB_WORKFLOW": "Tests",
  ##[debug]  "GITHUB_HEAD_REF": "wtracy/test2",
  ##[debug]  "GITHUB_BASE_REF": "master",
  ##[debug]  "GITHUB_EVENT_NAME": "pull_request",
  ##[debug]  "GITHUB_SERVER_URL": "https://github.com",
  ##[debug]  "GITHUB_API_URL": "https://api.github.com",
  ##[debug]  "GITHUB_GRAPHQL_URL": "https://api.github.com/graphql",
  ##[debug]  "GITHUB_REF_NAME": "576/merge",
  ##[debug]  "GITHUB_REF_PROTECTED": "false",
  ##[debug]  "GITHUB_REF_TYPE": "branch",
  ##[debug]  "GITHUB_WORKFLOW_REF": "jiggly-puff/jiggly-puff-app/.github/workflows/tests.yml@refs/pull/576/merge",
  ##[debug]  "GITHUB_WORKFLOW_SHA": "701c001210c02d3622bf12ff9812d2cedf268145",
  ##[debug]  "GITHUB_WORKSPACE": "/home/runner/work/jiggly-puff-app/jiggly-puff-app",
  ##[debug]  "GITHUB_ACTION": "changed-files",
  ##[debug]  "GITHUB_EVENT_PATH": "/home/runner/work/_temp/_github_workflow/event.json",
  ##[debug]  "GITHUB_ACTION_REPOSITORY": "tj-actions/changed-files",
  ##[debug]  "GITHUB_ACTION_REF": "v44.5.2",
  ##[debug]  "GITHUB_PATH": "/home/runner/work/_temp/_runner_file_commands/add_path_260a628d-2672-4041-8e47-6be7a47b1f7c",
  ##[debug]  "GITHUB_ENV": "/home/runner/work/_temp/_runner_file_commands/set_env_260a628d-2672-4041-8e47-6be7a47b1f7c",
  ##[debug]  "GITHUB_STEP_SUMMARY": "/home/runner/work/_temp/_runner_file_commands/step_summary_260a628d-2672-4041-8e47-6be7a47b1f7c",
  ##[debug]  "GITHUB_STATE": "/home/runner/work/_temp/_runner_file_commands/save_state_260a628d-2672-4041-8e47-6be7a47b1f7c",
  ##[debug]  "GITHUB_OUTPUT": "/home/runner/work/_temp/_runner_file_commands/set_output_260a628d-2672-4041-8e47-6be7a47b1f7c",
  ##[debug]  "RUNNER_DEBUG": "1",
  ##[debug]  "RUNNER_OS": "Linux",
  ##[debug]  "RUNNER_ARCH": "X64",
  ##[debug]  "RUNNER_NAME": "GitHub Actions 9",
  ##[debug]  "RUNNER_ENVIRONMENT": "github-hosted",
  ##[debug]  "RUNNER_TEMP": "/home/runner/work/_temp",
  ##[debug]  "RUNNER_WORKSPACE": "/home/runner/work/jiggly-puff-app",
  ##[debug]  "ACTIONS_RUNTIME_URL": "https://pipelinesghubeus23.actions.githubusercontent.com/sMZIj9ePIi21mVC4psKqPcQlIiwnpw5ZMpPeAw5jOut7OENwfR/",
  ##[debug]  "ACTIONS_RUNTIME_TOKEN": ***,
  ##[debug]  "ACTIONS_CACHE_URL": "https://acghubeus2.actions.githubusercontent.com/sMZIj9ePIi21mVC4psKqPcQlIiwnpw5ZMpPeAw5jOut7OENwfR/",
  ##[debug]  "ACTIONS_RESULTS_URL": "https://results-receiver.actions.githubusercontent.com/"
  ##[debug]}
  ##[debug]Env: {
  ##[debug]  "GITHUB_REF_NAME": "576/merge",
  ##[debug]  "GITHUB_REF": "refs/pull/576/merge",
  ##[debug]  "GITHUB_WORKSPACE": "/home/runner/work/jiggly-puff-app/jiggly-puff-app"
  ##[debug]}
  ##[debug]Inputs: {
  ##[debug]  "files": "",
  ##[debug]  "filesSeparator": "\n",
  ##[debug]  "filesFromSourceFile": "",
  ##[debug]  "filesFromSourceFileSeparator": "\n",
  ##[debug]  "filesYaml": "",
  ##[debug]  "filesYamlFromSourceFile": "",
  ##[debug]  "filesYamlFromSourceFileSeparator": "\n",
  ##[debug]  "filesIgnore": "",
  ##[debug]  "filesIgnoreSeparator": "\n",
  ##[debug]  "filesIgnoreFromSourceFile": "",
  ##[debug]  "filesIgnoreFromSourceFileSeparator": "\n",
  ##[debug]  "filesIgnoreYaml": "",
  ##[debug]  "filesIgnoreYamlFromSourceFile": "",
  ##[debug]  "filesIgnoreYamlFromSourceFileSeparator": "\n",
  ##[debug]  "failOnInitialDiffError": false,
  ##[debug]  "failOnSubmoduleDiffError": false,
  ##[debug]  "separator": " ",
  ##[debug]  "sha": "6cf84ec3c46b632521fa95af90eea42d2143cd8e",
  ##[debug]  "baseSha": "",
  ##[debug]  "since": "",
  ##[debug]  "until": "",
  ##[debug]  "path": ".",
  ##[debug]  "quotepath": true,
  ##[debug]  "diffRelative": true,
  ##[debug]  "sinceLastRemoteCommit": true,
  ##[debug]  "recoverDeletedFiles": false,
  ##[debug]  "recoverDeletedFilesToDestination": "",
  ##[debug]  "recoverFiles": "",
  ##[debug]  "recoverFilesSeparator": "\n",
  ##[debug]  "recoverFilesIgnore": "",
  ##[debug]  "recoverFilesIgnoreSeparator": "\n",
  ##[debug]  "includeAllOldNewRenamedFiles": false,
  ##[debug]  "oldNewSeparator": ",",
  ##[debug]  "oldNewFilesSeparator": " ",
  ##[debug]  "skipInitialFetch": false,
  ##[debug]  "fetchAdditionalSubmoduleHistory": false,
  ##[debug]  "dirNamesDeletedFilesIncludeOnlyDeletedDirs": false,
  ##[debug]  "excludeSubmodules": false,
  ##[debug]  "usePosixPathSeparator": false,
  ##[debug]  "tagsPattern": "*",
  ##[debug]  "tagsIgnorePattern": "",
  ##[debug]  "dirNames": false,
  ##[debug]  "dirNamesExcludeCurrentDir": false,
  ##[debug]  "dirNamesIncludeFiles": "",
  ##[debug]  "dirNamesIncludeFilesSeparator": "\n",
  ##[debug]  "json": false,
  ##[debug]  "escapeJson": true,
  ##[debug]  "safeOutput": true,
  ##[debug]  "writeOutputFiles": false,
  ##[debug]  "outputDir": ".github/outputs",
  ##[debug]  "outputRenamedFilesAsDeletedAndAdded": false,
  ##[debug]  "token": "***",
  ##[debug]  "apiUrl": "https://api.github.com",
  ##[debug]  "negationPatternsFirst": false,
  ##[debug]  "useRestApi": false,
  ##[debug]  "fetchDepth": 25,
  ##[debug]  "fetchMissingHistoryMaxRetries": 20
  ##[debug]}
  ##[debug]Github Context: {
  ##[debug]  "payload": {
  ##[debug]    "action": "opened",
  ##[debug]    "number": 576,
  ##[debug]    "organization": {
  ##[debug]    },
  ##[debug]    "pull_request": {
  ##[debug]      "_links": {
  ##[debug]        "comments": {
  ##[debug]          "href": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/576/comments"
  ##[debug]        },
  ##[debug]        "commits": {
  ##[debug]          "href": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls/576/commits"
  ##[debug]        },
  ##[debug]        "html": {
  ##[debug]          "href": "https://github.com/jiggly-puff/jiggly-puff-app/pull/576"
  ##[debug]        },
  ##[debug]        "issue": {
  ##[debug]          "href": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/576"
  ##[debug]        },
  ##[debug]        "review_comment": {
  ##[debug]          "href": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls/comments{/number}"
  ##[debug]        },
  ##[debug]        "review_comments": {
  ##[debug]          "href": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls/576/comments"
  ##[debug]        },
  ##[debug]        "self": {
  ##[debug]          "href": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls/576"
  ##[debug]        },
  ##[debug]        "statuses": {
  ##[debug]          "href": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/statuses/6cf84ec3c46b632521fa95af90eea42d2143cd8e"
  ##[debug]        }
  ##[debug]      },
  ##[debug]      "active_lock_reason": null,
  ##[debug]      "additions": 280,
  ##[debug]      "assignee": null,
  ##[debug]      "assignees": [],
  ##[debug]      "author_association": "CONTRIBUTOR",
  ##[debug]      "auto_merge": null,
  ##[debug]      "base": {
  ##[debug]        "label": "jiggly-puff:master",
  ##[debug]        "ref": "master",
  ##[debug]        "repo": {
  ##[debug]          "allow_auto_merge": false,
  ##[debug]          "allow_forking": false,
  ##[debug]          "allow_merge_commit": false,
  ##[debug]          "allow_rebase_merge": false,
  ##[debug]          "allow_squash_merge": true,
  ##[debug]          "allow_update_branch": false,
  ##[debug]          "archive_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/{archive_format}{/ref}",
  ##[debug]          "archived": false,
  ##[debug]          "assignees_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/assignees{/user}",
  ##[debug]          "blobs_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/blobs{/sha}",
  ##[debug]          "branches_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/branches{/branch}",
  ##[debug]          "clone_url": "https://github.com/jiggly-puff/jiggly-puff-app.git",
  ##[debug]          "collaborators_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/collaborators{/collaborator}",
  ##[debug]          "comments_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/comments{/number}",
  ##[debug]          "commits_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/commits{/sha}",
  ##[debug]          "compare_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/compare/{base}...{head}",
  ##[debug]          "contents_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/contents/{+path}",
  ##[debug]          "contributors_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/contributors",
  ##[debug]          "created_at": "2020-07-28T18:44:03Z",
  ##[debug]          "default_branch": "master",
  ##[debug]          "delete_branch_on_merge": true,
  ##[debug]          "deployments_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/deployments",
  ##[debug]          "disabled": false,
  ##[debug]          "downloads_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/downloads",
  ##[debug]          "events_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/events",
  ##[debug]          "fork": false,
  ##[debug]          "forks": 0,
  ##[debug]          "forks_count": 0,
  ##[debug]          "forks_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/forks",
  ##[debug]          "full_name": "jiggly-puff/jiggly-puff-app",
  ##[debug]          "git_commits_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/commits{/sha}",
  ##[debug]          "git_refs_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/refs{/sha}",
  ##[debug]          "git_tags_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/tags{/sha}",
  ##[debug]          "git_url": "git://github.com/jiggly-puff/jiggly-puff-app.git",
  ##[debug]          "has_discussions": false,
  ##[debug]          "has_downloads": true,
  ##[debug]          "has_issues": true,
  ##[debug]          "has_pages": false,
  ##[debug]          "has_projects": false,
  ##[debug]          "has_wiki": true,
  ##[debug]          "hooks_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/hooks",
  ##[debug]          "html_url": "https://github.com/jiggly-puff/jiggly-puff-app",
  ##[debug]          "id": 283298705,
  ##[debug]          "is_template": false,
  ##[debug]          "issue_comment_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/comments{/number}",
  ##[debug]          "issue_events_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/events{/number}",
  ##[debug]          "issues_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues{/number}",
  ##[debug]          "keys_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/keys{/key_id}",
  ##[debug]          "labels_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/labels{/name}",
  ##[debug]          "language": "TypeScript",
  ##[debug]          "languages_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/languages",
  ##[debug]          "license": null,
  ##[debug]          "merge_commit_message": "PR_TITLE",
  ##[debug]          "merge_commit_title": "MERGE_MESSAGE",
  ##[debug]          "merges_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/merges",
  ##[debug]          "milestones_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/milestones{/number}",
  ##[debug]          "mirror_url": null,
  ##[debug]          "name": "jiggly-puff-app",
  ##[debug]          "node_id": "MDEwOlJlcG9zaXRvcnkyODMyOTg3MDU=",
  ##[debug]          "notifications_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/notifications{?since,all,participating}",
  ##[debug]          "open_issues": 9,
  ##[debug]          "open_issues_count": 9,
  ##[debug]          "owner": {
  ##[debug]            "avatar_url": "https://avatars.githubusercontent.com/u/68706371?v=4",
  ##[debug]            "events_url": "https://api.github.com/users/jiggly-puff/events{/privacy}",
  ##[debug]            "followers_url": "https://api.github.com/users/jiggly-puff/followers",
  ##[debug]            "following_url": "https://api.github.com/users/jiggly-puff/following{/other_user}",
  ##[debug]            "gists_url": "https://api.github.com/users/jiggly-puff/gists{/gist_id}",
  ##[debug]            "gravatar_id": "",
  ##[debug]            "html_url": "https://github.com/jiggly-puff",
  ##[debug]            "id": 68706371,
  ##[debug]            "login": "jiggly-puff",
  ##[debug]            "node_id": "MDEyOk9yZ2FuaXphdGlvbjY4NzA2Mzcx",
  ##[debug]            "organizations_url": "https://api.github.com/users/jiggly-puff/orgs",
  ##[debug]            "received_events_url": "https://api.github.com/users/jiggly-puff/received_events",
  ##[debug]            "repos_url": "https://api.github.com/users/jiggly-puff/repos",
  ##[debug]            "site_admin": false,
  ##[debug]            "starred_url": "https://api.github.com/users/jiggly-puff/starred{/owner}{/repo}",
  ##[debug]            "subscriptions_url": "https://api.github.com/users/jiggly-puff/subscriptions",
  ##[debug]            "type": "Organization",
  ##[debug]            "url": "https://api.github.com/users/jiggly-puff"
  ##[debug]          },
  ##[debug]          "private": true,
  ##[debug]          "pulls_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls{/number}",
  ##[debug]          "pushed_at": "2024-06-19T23:49:36Z",
  ##[debug]          "releases_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/releases{/id}",
  ##[debug]          "size": 53109,
  ##[debug]          "squash_merge_commit_message": "COMMIT_MESSAGES",
  ##[debug]          "squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
  ##[debug]          "ssh_url": "[email protected]:jiggly-puff/jiggly-puff-app.git",
  ##[debug]          "stargazers_count": 0,
  ##[debug]          "stargazers_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/stargazers",
  ##[debug]          "statuses_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/statuses/{sha}",
  ##[debug]          "subscribers_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/subscribers",
  ##[debug]          "subscription_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/subscription",
  ##[debug]          "svn_url": "https://github.com/jiggly-puff/jiggly-puff-app",
  ##[debug]          "tags_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/tags",
  ##[debug]          "teams_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/teams",
  ##[debug]          "trees_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/trees{/sha}",
  ##[debug]          "updated_at": "2024-06-18T04:30:10Z",
  ##[debug]          "url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app",
  ##[debug]          "use_squash_pr_title_as_default": false,
  ##[debug]          "visibility": "private",
  ##[debug]          "watchers": 0,
  ##[debug]          "watchers_count": 0,
  ##[debug]          "web_commit_signoff_required": false
  ##[debug]        },
  ##[debug]        "sha": "6108e5d2cf6baff08792ce6af39b81ccd7f0bb70",
  ##[debug]        "user": {
  ##[debug]          "avatar_url": "https://avatars.githubusercontent.com/u/68706371?v=4",
  ##[debug]          "events_url": "https://api.github.com/users/jiggly-puff/events{/privacy}",
  ##[debug]          "followers_url": "https://api.github.com/users/jiggly-puff/followers",
  ##[debug]          "following_url": "https://api.github.com/users/jiggly-puff/following{/other_user}",
  ##[debug]          "gists_url": "https://api.github.com/users/jiggly-puff/gists{/gist_id}",
  ##[debug]          "gravatar_id": "",
  ##[debug]          "html_url": "https://github.com/jiggly-puff",
  ##[debug]          "id": 68706371,
  ##[debug]          "login": "jiggly-puff",
  ##[debug]          "node_id": "MDEyOk9yZ2FuaXphdGlvbjY4NzA2Mzcx",
  ##[debug]          "organizations_url": "https://api.github.com/users/jiggly-puff/orgs",
  ##[debug]          "received_events_url": "https://api.github.com/users/jiggly-puff/received_events",
  ##[debug]          "repos_url": "https://api.github.com/users/jiggly-puff/repos",
  ##[debug]          "site_admin": false,
  ##[debug]          "starred_url": "https://api.github.com/users/jiggly-puff/starred{/owner}{/repo}",
  ##[debug]          "subscriptions_url": "https://api.github.com/users/jiggly-puff/subscriptions",
  ##[debug]          "type": "Organization",
  ##[debug]          "url": "https://api.github.com/users/jiggly-puff"
  ##[debug]        }
  ##[debug]      },
  ##[debug]      "body": null,
  ##[debug]      "changed_files": 8,
  ##[debug]      "closed_at": null,
  ##[debug]      "comments": 0,
  ##[debug]      "comments_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/576/comments",
  ##[debug]      "commits": 11,
  ##[debug]      "commits_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls/576/commits",
  ##[debug]      "created_at": "2024-06-19T23:49:36Z",
  ##[debug]      "deletions": 288,
  ##[debug]      "diff_url": "https://github.com/jiggly-puff/jiggly-puff-app/pull/576.diff",
  ##[debug]      "draft": true,
  ##[debug]      "head": {
  ##[debug]        "label": "jiggly-puff:wtracy/test2",
  ##[debug]        "ref": "wtracy/test2",
  ##[debug]        "repo": {
  ##[debug]          "allow_auto_merge": false,
  ##[debug]          "allow_forking": false,
  ##[debug]          "allow_merge_commit": false,
  ##[debug]          "allow_rebase_merge": false,
  ##[debug]          "allow_squash_merge": true,
  ##[debug]          "allow_update_branch": false,
  ##[debug]          "archive_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/{archive_format}{/ref}",
  ##[debug]          "archived": false,
  ##[debug]          "assignees_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/assignees{/user}",
  ##[debug]          "blobs_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/blobs{/sha}",
  ##[debug]          "branches_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/branches{/branch}",
  ##[debug]          "clone_url": "https://github.com/jiggly-puff/jiggly-puff-app.git",
  ##[debug]          "collaborators_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/collaborators{/collaborator}",
  ##[debug]          "comments_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/comments{/number}",
  ##[debug]          "commits_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/commits{/sha}",
  ##[debug]          "compare_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/compare/{base}...{head}",
  ##[debug]          "contents_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/contents/{+path}",
  ##[debug]          "contributors_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/contributors",
  ##[debug]          "created_at": "2020-07-28T18:44:03Z",
  ##[debug]          "default_branch": "master",
  ##[debug]          "delete_branch_on_merge": true,
  ##[debug]          "deployments_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/deployments",
  ##[debug]          "disabled": false,
  ##[debug]          "downloads_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/downloads",
  ##[debug]          "events_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/events",
  ##[debug]          "fork": false,
  ##[debug]          "forks": 0,
  ##[debug]          "forks_count": 0,
  ##[debug]          "forks_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/forks",
  ##[debug]          "full_name": "jiggly-puff/jiggly-puff-app",
  ##[debug]          "git_commits_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/commits{/sha}",
  ##[debug]          "git_refs_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/refs{/sha}",
  ##[debug]          "git_tags_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/tags{/sha}",
  ##[debug]          "git_url": "git://github.com/jiggly-puff/jiggly-puff-app.git",
  ##[debug]          "has_discussions": false,
  ##[debug]          "has_downloads": true,
  ##[debug]          "has_issues": true,
  ##[debug]          "has_pages": false,
  ##[debug]          "has_projects": false,
  ##[debug]          "has_wiki": true,
  ##[debug]          "hooks_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/hooks",
  ##[debug]          "html_url": "https://github.com/jiggly-puff/jiggly-puff-app",
  ##[debug]          "id": 283298705,
  ##[debug]          "is_template": false,
  ##[debug]          "issue_comment_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/comments{/number}",
  ##[debug]          "issue_events_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/events{/number}",
  ##[debug]          "issues_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues{/number}",
  ##[debug]          "keys_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/keys{/key_id}",
  ##[debug]          "labels_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/labels{/name}",
  ##[debug]          "language": "TypeScript",
  ##[debug]          "languages_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/languages",
  ##[debug]          "license": null,
  ##[debug]          "merge_commit_message": "PR_TITLE",
  ##[debug]          "merge_commit_title": "MERGE_MESSAGE",
  ##[debug]          "merges_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/merges",
  ##[debug]          "milestones_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/milestones{/number}",
  ##[debug]          "mirror_url": null,
  ##[debug]          "name": "jiggly-puff-app",
  ##[debug]          "node_id": "MDEwOlJlcG9zaXRvcnkyODMyOTg3MDU=",
  ##[debug]          "notifications_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/notifications{?since,all,participating}",
  ##[debug]          "open_issues": 9,
  ##[debug]          "open_issues_count": 9,
  ##[debug]          "owner": {
  ##[debug]            "avatar_url": "https://avatars.githubusercontent.com/u/68706371?v=4",
  ##[debug]            "events_url": "https://api.github.com/users/jiggly-puff/events{/privacy}",
  ##[debug]            "followers_url": "https://api.github.com/users/jiggly-puff/followers",
  ##[debug]            "following_url": "https://api.github.com/users/jiggly-puff/following{/other_user}",
  ##[debug]            "gists_url": "https://api.github.com/users/jiggly-puff/gists{/gist_id}",
  ##[debug]            "gravatar_id": "",
  ##[debug]            "html_url": "https://github.com/jiggly-puff",
  ##[debug]            "id": 68706371,
  ##[debug]            "login": "jiggly-puff",
  ##[debug]            "node_id": "MDEyOk9yZ2FuaXphdGlvbjY4NzA2Mzcx",
  ##[debug]            "organizations_url": "https://api.github.com/users/jiggly-puff/orgs",
  ##[debug]            "received_events_url": "https://api.github.com/users/jiggly-puff/received_events",
  ##[debug]            "repos_url": "https://api.github.com/users/jiggly-puff/repos",
  ##[debug]            "site_admin": false,
  ##[debug]            "starred_url": "https://api.github.com/users/jiggly-puff/starred{/owner}{/repo}",
  ##[debug]            "subscriptions_url": "https://api.github.com/users/jiggly-puff/subscriptions",
  ##[debug]            "type": "Organization",
  ##[debug]            "url": "https://api.github.com/users/jiggly-puff"
  ##[debug]          },
  ##[debug]          "private": true,
  ##[debug]          "pulls_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls{/number}",
  ##[debug]          "pushed_at": "2024-06-19T23:49:36Z",
  ##[debug]          "releases_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/releases{/id}",
  ##[debug]          "size": 53109,
  ##[debug]          "squash_merge_commit_message": "COMMIT_MESSAGES",
  ##[debug]          "squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
  ##[debug]          "ssh_url": "[email protected]:jiggly-puff/jiggly-puff-app.git",
  ##[debug]          "stargazers_count": 0,
  ##[debug]          "stargazers_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/stargazers",
  ##[debug]          "statuses_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/statuses/{sha}",
  ##[debug]          "subscribers_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/subscribers",
  ##[debug]          "subscription_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/subscription",
  ##[debug]          "svn_url": "https://github.com/jiggly-puff/jiggly-puff-app",
  ##[debug]          "tags_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/tags",
  ##[debug]          "teams_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/teams",
  ##[debug]          "trees_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/trees{/sha}",
  ##[debug]          "updated_at": "2024-06-18T04:30:10Z",
  ##[debug]          "url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app",
  ##[debug]          "use_squash_pr_title_as_default": false,
  ##[debug]          "visibility": "private",
  ##[debug]          "watchers": 0,
  ##[debug]          "watchers_count": 0,
  ##[debug]          "web_commit_signoff_required": false
  ##[debug]        },
  ##[debug]        "sha": "6cf84ec3c46b632521fa95af90eea42d2143cd8e",
  ##[debug]        "user": {
  ##[debug]          "avatar_url": "https://avatars.githubusercontent.com/u/68706371?v=4",
  ##[debug]          "events_url": "https://api.github.com/users/jiggly-puff/events{/privacy}",
  ##[debug]          "followers_url": "https://api.github.com/users/jiggly-puff/followers",
  ##[debug]          "following_url": "https://api.github.com/users/jiggly-puff/following{/other_user}",
  ##[debug]          "gists_url": "https://api.github.com/users/jiggly-puff/gists{/gist_id}",
  ##[debug]          "gravatar_id": "",
  ##[debug]          "html_url": "https://github.com/jiggly-puff",
  ##[debug]          "id": 68706371,
  ##[debug]          "login": "jiggly-puff",
  ##[debug]          "node_id": "MDEyOk9yZ2FuaXphdGlvbjY4NzA2Mzcx",
  ##[debug]          "organizations_url": "https://api.github.com/users/jiggly-puff/orgs",
  ##[debug]          "received_events_url": "https://api.github.com/users/jiggly-puff/received_events",
  ##[debug]          "repos_url": "https://api.github.com/users/jiggly-puff/repos",
  ##[debug]          "site_admin": false,
  ##[debug]          "starred_url": "https://api.github.com/users/jiggly-puff/starred{/owner}{/repo}",
  ##[debug]          "subscriptions_url": "https://api.github.com/users/jiggly-puff/subscriptions",
  ##[debug]          "type": "Organization",
  ##[debug]          "url": "https://api.github.com/users/jiggly-puff"
  ##[debug]        }
  ##[debug]      },
  ##[debug]      "html_url": "https://github.com/jiggly-puff/jiggly-puff-app/pull/576",
  ##[debug]      "id": 1929562238,
  ##[debug]      "issue_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/576",
  ##[debug]      "labels": [],
  ##[debug]      "locked": false,
  ##[debug]      "maintainer_can_modify": false,
  ##[debug]      "merge_commit_sha": null,
  ##[debug]      "mergeable": null,
  ##[debug]      "mergeable_state": "unknown",
  ##[debug]      "merged": false,
  ##[debug]      "merged_at": null,
  ##[debug]      "merged_by": null,
  ##[debug]      "milestone": null,
  ##[debug]      "node_id": "PR_kwDOEOLLkc5zAsh-",
  ##[debug]      "number": 576,
  ##[debug]      "patch_url": "https://github.com/jiggly-puff/jiggly-puff-app/pull/576.patch",
  ##[debug]      "rebaseable": null,
  ##[debug]      "requested_reviewers": [],
  ##[debug]      "requested_teams": [],
  ##[debug]      "review_comment_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls/comments{/number}",
  ##[debug]      "review_comments": 0,
  ##[debug]      "review_comments_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls/576/comments",
  ##[debug]      "state": "open",
  ##[debug]      "statuses_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/statuses/6cf84ec3c46b632521fa95af90eea42d2143cd8e",
  ##[debug]      "title": "Wtracy/test2",
  ##[debug]      "updated_at": "2024-06-19T23:49:36Z",
  ##[debug]      "url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls/576",
  ##[debug]      "user": {
  ##[debug]        "avatar_url": "https://avatars.githubusercontent.com/u/131477724?v=4",
  ##[debug]        "events_url": "https://api.github.com/users/wade-dallon/events{/privacy}",
  ##[debug]        "followers_url": "https://api.github.com/users/wade-dallon/followers",
  ##[debug]        "following_url": "https://api.github.com/users/wade-dallon/following{/other_user}",
  ##[debug]        "gists_url": "https://api.github.com/users/wade-dallon/gists{/gist_id}",
  ##[debug]        "gravatar_id": "",
  ##[debug]        "html_url": "https://github.com/wade-dallon",
  ##[debug]        "id": 131477724,
  ##[debug]        "login": "wade-dallon",
  ##[debug]        "node_id": "U_kgDOB9Yw3A",
  ##[debug]        "organizations_url": "https://api.github.com/users/wade-dallon/orgs",
  ##[debug]        "received_events_url": "https://api.github.com/users/wade-dallon/received_events",
  ##[debug]        "repos_url": "https://api.github.com/users/wade-dallon/repos",
  ##[debug]        "site_admin": false,
  ##[debug]        "starred_url": "https://api.github.com/users/wade-dallon/starred{/owner}{/repo}",
  ##[debug]        "subscriptions_url": "https://api.github.com/users/wade-dallon/subscriptions",
  ##[debug]        "type": "User",
  ##[debug]        "url": "https://api.github.com/users/wade-dallon"
  ##[debug]      }
  ##[debug]    },
  ##[debug]    "repository": {
  ##[debug]      "allow_forking": false,
  ##[debug]      "archive_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/{archive_format}{/ref}",
  ##[debug]      "archived": false,
  ##[debug]      "assignees_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/assignees{/user}",
  ##[debug]      "blobs_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/blobs{/sha}",
  ##[debug]      "branches_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/branches{/branch}",
  ##[debug]      "clone_url": "https://github.com/jiggly-puff/jiggly-puff-app.git",
  ##[debug]      "collaborators_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/collaborators{/collaborator}",
  ##[debug]      "comments_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/comments{/number}",
  ##[debug]      "commits_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/commits{/sha}",
  ##[debug]      "compare_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/compare/{base}...{head}",
  ##[debug]      "contents_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/contents/{+path}",
  ##[debug]      "contributors_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/contributors",
  ##[debug]      "created_at": "2020-07-28T18:44:03Z",
  ##[debug]      "custom_properties": {},
  ##[debug]      "default_branch": "master",
  ##[debug]      "deployments_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/deployments",
  ##[debug]      "disabled": false,
  ##[debug]      "downloads_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/downloads",
  ##[debug]      "events_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/events",
  ##[debug]      "fork": false,
  ##[debug]      "forks": 0,
  ##[debug]      "forks_count": 0,
  ##[debug]      "forks_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/forks",
  ##[debug]      "full_name": "jiggly-puff/jiggly-puff-app",
  ##[debug]      "git_commits_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/commits{/sha}",
  ##[debug]      "git_refs_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/refs{/sha}",
  ##[debug]      "git_tags_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/tags{/sha}",
  ##[debug]      "git_url": "git://github.com/jiggly-puff/jiggly-puff-app.git",
  ##[debug]      "has_discussions": false,
  ##[debug]      "has_downloads": true,
  ##[debug]      "has_issues": true,
  ##[debug]      "has_pages": false,
  ##[debug]      "has_projects": false,
  ##[debug]      "has_wiki": true,
  ##[debug]      "hooks_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/hooks",
  ##[debug]      "html_url": "https://github.com/jiggly-puff/jiggly-puff-app",
  ##[debug]      "id": 283298705,
  ##[debug]      "is_template": false,
  ##[debug]      "issue_comment_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/comments{/number}",
  ##[debug]      "issue_events_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues/events{/number}",
  ##[debug]      "issues_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/issues{/number}",
  ##[debug]      "keys_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/keys{/key_id}",
  ##[debug]      "labels_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/labels{/name}",
  ##[debug]      "language": "TypeScript",
  ##[debug]      "languages_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/languages",
  ##[debug]      "license": null,
  ##[debug]      "merges_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/merges",
  ##[debug]      "milestones_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/milestones{/number}",
  ##[debug]      "mirror_url": null,
  ##[debug]      "name": "jiggly-puff-app",
  ##[debug]      "node_id": "MDEwOlJlcG9zaXRvcnkyODMyOTg3MDU=",
  ##[debug]      "notifications_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/notifications{?since,all,participating}",
  ##[debug]      "open_issues": 9,
  ##[debug]      "open_issues_count": 9,
  ##[debug]      "owner": {
  ##[debug]        "avatar_url": "https://avatars.githubusercontent.com/u/68706371?v=4",
  ##[debug]        "events_url": "https://api.github.com/users/jiggly-puff/events{/privacy}",
  ##[debug]        "followers_url": "https://api.github.com/users/jiggly-puff/followers",
  ##[debug]        "following_url": "https://api.github.com/users/jiggly-puff/following{/other_user}",
  ##[debug]        "gists_url": "https://api.github.com/users/jiggly-puff/gists{/gist_id}",
  ##[debug]        "gravatar_id": "",
  ##[debug]        "html_url": "https://github.com/jiggly-puff",
  ##[debug]        "id": 68706371,
  ##[debug]        "login": "jiggly-puff",
  ##[debug]        "node_id": "MDEyOk9yZ2FuaXphdGlvbjY4NzA2Mzcx",
  ##[debug]        "organizations_url": "https://api.github.com/users/jiggly-puff/orgs",
  ##[debug]        "received_events_url": "https://api.github.com/users/jiggly-puff/received_events",
  ##[debug]        "repos_url": "https://api.github.com/users/jiggly-puff/repos",
  ##[debug]        "site_admin": false,
  ##[debug]        "starred_url": "https://api.github.com/users/jiggly-puff/starred{/owner}{/repo}",
  ##[debug]        "subscriptions_url": "https://api.github.com/users/jiggly-puff/subscriptions",
  ##[debug]        "type": "Organization",
  ##[debug]        "url": "https://api.github.com/users/jiggly-puff"
  ##[debug]      },
  ##[debug]      "private": true,
  ##[debug]      "pulls_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/pulls{/number}",
  ##[debug]      "pushed_at": "2024-06-19T23:49:36Z",
  ##[debug]      "releases_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/releases{/id}",
  ##[debug]      "size": 53109,
  ##[debug]      "ssh_url": "[email protected]:jiggly-puff/jiggly-puff-app.git",
  ##[debug]      "stargazers_count": 0,
  ##[debug]      "stargazers_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/stargazers",
  ##[debug]      "statuses_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/statuses/{sha}",
  ##[debug]      "subscribers_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/subscribers",
  ##[debug]      "subscription_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/subscription",
  ##[debug]      "svn_url": "https://github.com/jiggly-puff/jiggly-puff-app",
  ##[debug]      "tags_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/tags",
  ##[debug]      "teams_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/teams",
  ##[debug]      "trees_url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app/git/trees{/sha}",
  ##[debug]      "updated_at": "2024-06-18T04:30:10Z",
  ##[debug]      "url": "https://api.github.com/repos/jiggly-puff/jiggly-puff-app",
  ##[debug]      "visibility": "private",
  ##[debug]      "watchers": 0,
  ##[debug]      "watchers_count": 0,
  ##[debug]      "web_commit_signoff_required": false
  ##[debug]    },
  ##[debug]    "sender": {
  ##[debug]      "avatar_url": "https://avatars.githubusercontent.com/u/131477724?v=4",
  ##[debug]      "events_url": "https://api.github.com/users/wade-dallon/events{/privacy}",
  ##[debug]      "followers_url": "https://api.github.com/users/wade-dallon/followers",
  ##[debug]      "following_url": "https://api.github.com/users/wade-dallon/following{/other_user}",
  ##[debug]      "gists_url": "https://api.github.com/users/wade-dallon/gists{/gist_id}",
  ##[debug]      "gravatar_id": "",
  ##[debug]      "html_url": "https://github.com/wade-dallon",
  ##[debug]      "id": 131477724,
  ##[debug]      "login": "wade-dallon",
  ##[debug]      "node_id": "U_kgDOB9Yw3A",
  ##[debug]      "organizations_url": "https://api.github.com/users/wade-dallon/orgs",
  ##[debug]      "received_events_url": "https://api.github.com/users/wade-dallon/received_events",
  ##[debug]      "repos_url": "https://api.github.com/users/wade-dallon/repos",
  ##[debug]      "site_admin": false,
  ##[debug]      "starred_url": "https://api.github.com/users/wade-dallon/starred{/owner}{/repo}",
  ##[debug]      "subscriptions_url": "https://api.github.com/users/wade-dallon/subscriptions",
  ##[debug]      "type": "User",
  ##[debug]      "url": "https://api.github.com/users/wade-dallon"
  ##[debug]    }
  ##[debug]  },
  ##[debug]  "eventName": "pull_request",
  ##[debug]  "sha": "701c001210c02d3622bf12ff9812d2cedf268145",
  ##[debug]  "ref": "refs/pull/576/merge",
  ##[debug]  "workflow": "Tests",
  ##[debug]  "action": "changed-files",
  ##[debug]  "actor": "wade-dallon",
  ##[debug]  "job": "changed-files",
  ##[debug]  "runNumber": 1051,
  ##[debug]  "runId": 9589369541,
  ##[debug]  "apiUrl": "https://api.github.com",
  ##[debug]  "serverUrl": "https://github.com",
  ##[debug]  "graphqlUrl": "https://api.github.com/graphql"
  ##[debug]}
  ##[debug]Working directory: /home/runner/work/jiggly-puff-app/jiggly-puff-app
  /usr/bin/git rev-parse --is-inside-work-tree
  true
  ##[debug]Has git directory: true
  ##[debug]Input file patterns: 
  ##[debug]
  ##[debug]File patterns: 
  ##[debug]Yaml file patterns: {}
  Using local .git directory
  /usr/bin/git --version
  git version 2.45.2
  /usr/bin/git config --global core.quotepath on
  /usr/bin/git config --global diff.relative true
  /usr/bin/git rev-parse --is-shallow-repository
  true
  /usr/bin/git submodule status
  Running on a pull_request (opened) event...
  Repository is shallow, fetching more history...
  /usr/bin/git fetch -q --no-tags --prune -u --progress origin pull/576/head:wtracy/test2
  Completed fetching more history.
  /usr/bin/git rev-parse --verify 6cf84ec3c46b632521fa95af90eea42d2143cd8e^{commit}
  6cf84ec3c46b632521fa95af90eea42d2143cd8e
  ##[debug]Getting current SHA...
  /usr/bin/git rev-parse --verify 6cf84ec3c46b632521fa95af90eea42d2143cd8e^{commit}
  6cf84ec3c46b632521fa95af90eea42d2143cd8e
  ##[debug]Current SHA: 6cf84ec3c46b632521fa95af90eea42d2143cd8e
  Unable to locate the previous commit in the local history for pull_request (opened) event. Falling back to the previous commit in the local history.
  /usr/bin/git rev-list -n 1 HEAD^
  fatal: ambiguous argument 'HEAD^': unknown revision or path not in the working tree.
  Use '--' to separate paths from revisions, like this:
  'git <command> [<revision>...] -- [<file>...]'
  Error: Unable to locate the previous commit in the local history. Please ensure to checkout pull request HEAD commit instead of the merge commit. See: https://github.com/actions/checkout/blob/main/README.md#checkout-pull-request-head-commit-instead-of-merge-commit
  ##[debug]Node Action run completed with exit code 1
  ##[debug]Finishing: Changed Files

@jackton1
Copy link
Member

Hi @wade-dallon this should be resolved in the latest release.

@wade-dallon
Copy link
Author

Hi @wade-dallon this should be resolved in the latest release.

Thanks for the quick fix!

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
Development

Successfully merging a pull request may close this issue.

3 participants