Skip to content

Minor fixes

Minor fixes #100

Workflow file for this run

name: Mirror this repo to IGB GitLab
on:
push:
# only on updates to branches, not tags (those fail)
branches: '**'
tags-ignore: '**'
jobs:
github-mirror:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git remote add dest1 https://haukex:${{ secrets.IGBGL_MIRROR_TOKEN }}@gitlab.igb-berlin.de/haukex/pythonutils.git
- run: git fetch dest1
- run: git push dest1