Skip to content

Commit

Permalink
Adding Castiel Gitlab push sync github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayarri committed Feb 14, 2024
1 parent 8d85fe4 commit 212a510
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/github-to-gitlab-push-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build

on:
push:
branches:
- 'master'
- 'releases/**'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
sync:
runs-on: ubuntu-latest
name: Git Repo Sync
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: cniethammer/git-repo-sync@main
with:
target-url: 'https://codehub.hlrs.de/coes/bioexcel/biobb/biobb_pmx.git'
target-username: ${{ secrets.ACCESS_TOKEN_NAME }}
target-token: ${{ secrets.ACCESS_TOKEN }}

0 comments on commit 212a510

Please sign in to comment.