项目作者: devatherock

项目描述 :
CI plugin to sync the contents of a git repository with another
高级语言: Groovy
项目地址: git://github.com/devatherock/git-sync.git
创建时间: 2018-08-31T14:19:53Z
项目社区:https://github.com/devatherock/git-sync

开源协议:MIT License

下载


CircleCI
Version
Coverage Status
Codacy Badge
Docker Pulls
Docker Image Size
License: MIT

git-sync

CI plugin to sync the contents of a git repository with another

Usage

Docker

  1. docker run --rm \
  2. -e PLUGIN_DEBUG=true \
  3. -e PLUGIN_START_COMMIT=29186cd \
  4. -e PLUGIN_TARGET_BRANCH=test \
  5. -v path/to/repo:/repo \
  6. -w=/repo \
  7. devatherock/git-sync:2.0.0

CI

Config

The following parameters/secrets can be set to configure the plugin.

Parameters

  • target_repo - Git URI of target repository. If not specified, same as the source repo
  • target_branch - Branch to sync to, in target repository. Optional, defaults to master
  • start_commit - Commit sha of the first commit to sync. All commits after that will be synced. If not specified,
    commit sha of the penultimate tag will be used. And if no tags are present, all commits up to the 100th will be synced
  • debug - Flag to enable debug logs. Optional, by default, debug logs are disabled

Secrets

The following secret values can be set to configure the plugin.

  • GIT_SYNC_TOKEN - Github API token with push access to the repository. Required if HTTP URI of target repository
    is used

drone.io

  1. git-sync:
  2. when:
  3. ref: refs/tags/v*
  4. event: tag
  5. image: devatherock/git-sync:2.0.0
  6. target_branch: prod
  7. secrets: [ git_sync_token ]

vela

  1. steps:
  2. - name: git-sync
  3. ruleset:
  4. tag: refs/tags/v*
  5. event: tag
  6. image: devatherock/git-sync:2.0.0
  7. secrets: [ git_sync_token ]
  8. parameters:
  9. target_branch: prod

CircleCI

To add SSH key with write access to target repository, follow these instructions

  1. version: 2
  2. jobs:
  3. sync:
  4. docker:
  5. - image: devatherock/git-sync:2.0.0
  6. working_directory: ~/my-source-repo
  7. environment:
  8. PLUGIN_TARGET_REPO: "git@bitbucket.org:xyz/my-target-repo.git" # Git URI of target repository. If not specified, same as the source repo
  9. PLUGIN_TARGET_BRANCH: master # Branch to sync to in target repository. Optional, defaults to master
  10. PLUGIN_START_COMMIT: 29186cd # Commit sha of the first commit to sync. All commits after that will be synced. If not specified, commit sha of the penultimate tag will be used. And if no tags are present, all commits up to the 100th will be synced
  11. PLUGIN_DEBUG: false # Flag to enable debug logs. Optional, by default, debug logs are disabled
  12. GIT_SYNC_TOKEN: xyz # Github API token with push access to the repository. Required if HTTP URI of target repository is used
  13. steps:
  14. - checkout
  15. - add_ssh_keys:
  16. fingerprints:
  17. - "ssh key fingerprint" # Fingerprint of SSH key with write access to target repository
  18. - run: sh /scripts/entry-point.sh

Tests

To test the latest plugin image, run the below command

  1. sh functional-tests.sh