blob: 46d0ecb87c49adb13668fcaa2dcc44a002ef8722 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
name: mirror to codeberg
on: [push, delete, create]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pixta-dev/repository-mirroring-action@v1
with:
target_repo_url: git@codeberg.org:caley/dotfiles.git
ssh_private_key: ${{ secrets.ssh_private_key }}
ssh_known_hosts: codeberg.org
|