Skip to content

Commit fc1b22a

Browse files
committed
feat(ci): Enable push mirroring to RWTH GiutLab
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
1 parent 085a764 commit fc1b22a

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/mirror.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# SPDX-FileCopyrightText: 2025 OPAL-RT Germany GmbH
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
---
5+
name: Mirror to RWTH GitLab
6+
7+
on:
8+
push:
9+
delete:
10+
11+
jobs:
12+
mirror:
13+
name: Mirror
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
22+
- uses: yesolutions/mirror-action@master
23+
with:
24+
REMOTE: https://git.rwth-aachen.de/acs/public/villas/node.git
25+
GIT_USERNAME: github
26+
GIT_PASSWORD: ${{ secrets.RWTH_GITLAB_TOKEN }}
27+
PUSH_ALL_REFS: "false"

0 commit comments

Comments
 (0)