Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

aiming/checkout-with-reference-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Action checkout with reference parameter

Test result

GitHub Actions上でソースコードをcloneします。referenceを指定できるようにしています。

NFS等でリファレンス用のリポジトリを用意しておくと、ネットワーク転送量の低減や時間の短縮を期待できます。 リファレンスリポジトリについては git--reference パラメータや、 https://swet.dena.com/entry/2021/07/12/120000 を参照してください。

Usage

- uses: aiming/checkout-with-reference-action@v1
  with:
    # https://github.com/aiming/checkout-with-reference-action.git の **aiming/checkout-with-reference-action** の部分です。
    # Default: ${{ github.repository }}
    github_repository: ''

    # Private repositoryの時、GitHubActionsより渡されるtokenを渡します
    # Default: ${{ github.token }}
    github_token: ''

    # Private repositoryの時、GitHubActionsより渡されるactorを渡します
    # Default: ${{ github.actor }}
    github_actor: ''

    # cloneするブランチ名を指定します。通常は指定なしです(※origin/develop ではなく develop を渡してください)
    branch_name: ''

    # cloneするcommit shaを指定します。
    # Default: ${{ github.sha }}
    sha: ${{ github.sha }}

    # リファレンス先の clone 済みのディレクトリを指定します。
    reference_dir: '/mnt/shared_dir_like_as_nfs/repository.git'

    # clone時にLFSのデータをfetchするかどうかを指定します
    # 大体のケースで clone後に自前で git lfs pull したほうが早いです
    fetch_lfs: false

    # checkout先のディレクトリ名を指定します
    checkout_dir: .

    # fetch時に発生するdetected dubious ownership in repositoryを抑制する。(git config safe.directoryを設定します)
    # Default: true
    ignore_dubious_ownership: true

Example

リファレンスリポジトリ( /mnt/shared_dir_like_as_nfs/repository.git に存在する)付きで、カレントディレクトリにcheckoutします

- uses: aiming/checkout-with-reference-action@v1
  with:
    reference_dir: '/mnt/shared_dir_like_as_nfs/repository.git'
    checkout_dir: .

プライベートリポジトリをcheckoutします

- uses: aiming/checkout-with-reference-action@v1
  with:
    github_token: ${{ github.token }}
    github_actor: ${{ github.actor }}
    github_repository: ${{ github.repository }}
    reference_dir: '/mnt/shared_dir_like_as_nfs/repository.git'
    checkout_dir: .

ブランチ名指定でcheckoutします

- uses: aiming/checkout-with-reference-action@v1
  with:
    branch_name: 'main'
    reference_dir: '/mnt/shared_dir_like_as_nfs/repository.git'
    checkout_dir: .

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages