{"id":31642195,"url":"https://github.com/srz-zumix/unityyamlmerge-gitconfig-action","last_synced_at":"2025-10-07T03:57:18.596Z","repository":{"id":316513022,"uuid":"1061247061","full_name":"srz-zumix/unityyamlmerge-gitconfig-action","owner":"srz-zumix","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-25T02:31:47.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-25T04:18:42.409Z","etag":null,"topics":["actions","github-actions"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/srz-zumix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"srz-zumix"}},"created_at":"2025-09-21T14:40:42.000Z","updated_at":"2025-09-25T02:18:44.000Z","dependencies_parsed_at":"2025-09-25T04:19:04.724Z","dependency_job_id":"a0d39105-9c4e-4416-9d75-99f4be7eafba","html_url":"https://github.com/srz-zumix/unityyamlmerge-gitconfig-action","commit_stats":null,"previous_names":["srz-zumix/unityyamlmerge-gitconfig-action"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/srz-zumix/unityyamlmerge-gitconfig-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srz-zumix%2Funityyamlmerge-gitconfig-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srz-zumix%2Funityyamlmerge-gitconfig-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srz-zumix%2Funityyamlmerge-gitconfig-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srz-zumix%2Funityyamlmerge-gitconfig-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/srz-zumix","download_url":"https://codeload.github.com/srz-zumix/unityyamlmerge-gitconfig-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srz-zumix%2Funityyamlmerge-gitconfig-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278717450,"owners_count":26033542,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","github-actions"],"created_at":"2025-10-07T03:57:07.797Z","updated_at":"2025-10-07T03:57:18.590Z","avatar_url":"https://github.com/srz-zumix.png","language":null,"funding_links":["https://github.com/sponsors/srz-zumix"],"categories":[],"sub_categories":[],"readme":"# Setup Unity YAML Merge Action\n\nThis action configures Git to use Unity's YAML merge tool (`unityyamlmerge`) for merging Unity scene and prefab files. It's a composite action that wraps [`srz-zumix/workspace-git-config-action`](https://github.com/srz-zumix/workspace-git-config-action).\n\n## Inputs\n\n| Name                      | Description                               | Required | Default |\n| ------------------------- | ----------------------------------------- | -------- | ------- |\n| `unity-project-path`      | Path to the Unity project directory.      | `false`  | `.`     |\n| `unity-yaml-merge-path`   | Full path to the `UnityYAMLMerge` executable. | `true`   |         |\n\n## Example Usage\n\nHere is an example of how to use this action in your workflow. You need to provide the path to your `UnityYAMLMerge` tool. The path depends on your operating system and Unity installation location.\n\n### on macOS\n\n```yaml\nname: CI\n\non: [push]\n\njobs:\n  test:\n    runs-on: macos-latest\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: Setup Unity YAML Merge\n        uses: ./ # Uses an action in the root directory\n        with:\n          unity-yaml-merge-path: /Applications/Unity/Hub/Editor/2022.3.10f1/Unity.app/Contents/Tools/UnityYAMLMerge\n\n      # You can now run git commands that might involve merges.\n      # For example, checking out a PR and trying to merge it.\n      - name: Show git config\n        run: git config --local --list\n```\n\n### on Windows\n\n```yaml\nname: CI\n\non: [push]\n\njobs:\n  test:\n    runs-on: windows-latest\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: Setup Unity YAML Merge\n        uses: ./ # Uses an action in the root directory\n        with:\n          unity-yaml-merge-path: 'C:\\Program Files\\Unity\\Hub\\Editor\\2022.3.10f1\\Editor\\Data\\Tools\\UnityYAMLMerge.exe'\n\n      # You can now run git commands that might involve merges.\n      - name: Show git config\n        run: git config --local --list\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrz-zumix%2Funityyamlmerge-gitconfig-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrz-zumix%2Funityyamlmerge-gitconfig-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrz-zumix%2Funityyamlmerge-gitconfig-action/lists"}