From e71f440c8e62aedaff442002ab08675e377cabac Mon Sep 17 00:00:00 2001 From: Glend Maatita Date: Tue, 19 Dec 2023 14:03:52 +0700 Subject: [PATCH] add gitlab actions --- .github/workflows/sync.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/sync.yml diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml new file mode 100644 index 0000000..c94a227 --- /dev/null +++ b/.github/workflows/sync.yml @@ -0,0 +1,19 @@ +name: synchronize develop + +on: + push: + branches: + - develop + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - uses: landx-id/github-repository-sync-action@master + with: + ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} + target_repo_url: git@gitlab.impstudio.id:imp/e-approval-apps.git + source_branch: develop + destination_branch: develop \ No newline at end of file