chore(deps): bump actions/setup-node from 4 to 6 #8475
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitLab Mirror | |
on: [push, delete] | |
jobs: | |
to_gitlab: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Logging | |
run: | | |
git remote show origin | |
git for-each-ref | |
- name: Mirror to GitLab | |
uses: wearerequired/git-mirror-action@v1 | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.GITLAB_SSH_PRIVATE_KEY }} | |
with: | |
source-repo: "[email protected]:visualize-admin/visualization-tool.git" | |
destination-repo: "[email protected]:interactivethings/visualization-tool.git" |