Github to SourceCommit Sync
ActionsTags
(1)A GitHub Action for syncing between Github and NCP SourceCommit Using SSH
- Enter remote url
ex:
ssh://devtools.ncloud.com/<givennumber>/<repositoryname>.git - Enter ssh_private_key created on Local Machine
- Enter the ssh_key created in ncloud through the above private_key
- Enter host url
default:
devtools.ncloud.com
name: github-sourcecommit-sync
on:
push:
tags-ignore:
- '*'
branches:
- '*'
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Sync up to SourceCommit
uses: brictoworks/github-sourcecommit-sync-action@master
with:
repository_url: ${{ secrets.TEST_REPOSITORY_URL }}
ssh_private_key: ${{ secrets.TEST_SSH_PRIVATE_KEY }}
ssh_key: ${{ secrets.TEST_SSH_KEY }}
Github to SourceCommit Sync is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.